(2)编译安装lamp三部曲之mysql-技术流ken

简介

采用yum安装lamp简单,快捷,在工作中也得到了普遍应用。但是如果我们需要某些特定模块功能,以及制定安装位置等,就需要用到编译安装了,接下来将编译安装lamp之mysql. mysql的简介网上已经有很多材料,这里就不再赘述,注重演示如何安装mysql.

系统环境及服务版本

centos7.5

服务器IP:172.20.10.7/28

mysql-5.5.33

上传mysql安装包并解压

[root@ken ~]# rz
[root@ken ~]# ls
mysql-5.5.-linux2.-x86_64.tar.gz
[root@ken ~]# tar xf mysql-5.5.-linux2.-x86_64.tar.gz

移动解压包至/usr/local/目录之下

[root@ken ~]# mv mysql-5.5.-linux2.-x86_64 /usr/local
[root@ken ~]# cd /usr/local
[root@ken local]# ls
bin include libexec share
etc lib mysql-5.5.-linux2.-x86_64 src
games lib64 sbin
[root@ken local]# ln -s mysql-5.5.-linux2.-x86_64 mysql #对这个包做一个软连接名为mysql

创建用户mysql

[root@ken local]# groupadd -r mysql
[root@ken local]# useradd -g mysql -r -s /sbin/nologin mysql
[root@ken local]# cd mysql
[root@ken mysql]# chown -R mysql.mysql ./* #以mysql用户来运行mysql

创建数据库数据目录

[root@ken mysql]# mkdir /ken
[root@ken mysql]# chown -R mysql.mysql /ken

初始化mysql

[root@ken mysql]# cd scripts
[root@ken scripts]# ./mysql_install_db --basedir=/usr/local/mysql --datadir=/ken --user=mysql
Installing MySQL system tables...
OK
Filling help tables...
OK
...

生成mysql的配置文件

[root@ken scripts]# cd ..
[root@ken mysql]# cd support-files/
[root@ken support-files]# cp my-huge.cnf /etc/my.cnf
cp: overwrite ‘/etc/my.cnf’? y
[root@ken support-files]# vim /etc/my.cnf
...
read_buffer_size = 2M
read_rnd_buffer_size = 8M
myisam_sort_buffer_size = 64M
thread_cache_size =
query_cache_size = 32M
# Try number of CPU's*2 for thread_concurrency
thread_concurrency =
datadir=/ken #40行左右添加刚才创建的数据保存路径 # Don't listen on a TCP/IP port at all. This can be a security enhancement,
...

生成mysql的服务管理脚本

[root@ken support-files]# cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld
[root@ken support-files]# chkconfig --add mysqld
[root@ken support-files]# chkconfig mysqld on

启动mysql

[root@ken support-files]# systemctl start mysqld
[root@ken support-files]# ss -tnl
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN *: *:*
LISTEN *: *:*
LISTEN 127.0.0.1: *:*
LISTEN ::: :::*
LISTEN ::: :::*

导出二进制程序

[root@ken support-files]# vim /etc/profile.d/mysql.sh
export PATH=$PATH:/usr/local/mysql/bin
[root@ken support-files]# source /etc/profile

登录mysql

[root@ken support-files]# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is
Server version: 5.5.-log MySQL Community Server (GPL) Copyright (c) , , Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql>

登录成功!

上一篇:Eclipse中常用的操作单词


下一篇:C# 面向对象技术