centos 7.2 mysql 安装

原文地址:http://www.cnblogs.com/bookwed/p/5896619.html


安装环境:系统是 centos7.2

1、下载

    下载地址:http://dev.mysql.com/downloads/mysql/

    下载版本:我这里选择的5.7.17,通用版,linux下64位

2、解压

1
2
3
4
#解压
tar  -zxvf mysql-5.7.18-linux-glibc2.5-x86_64. tar .gz
#复制解压后的mysql目录
cp  -r mysql-5.7.18-linux-glibc2.5-x86_64  /usr/local/mysql

3、添加用户组和用户

1
2
3
4
#添加用户组
groupadd mysql
#添加用户mysql 到用户组mysql
useradd  -g mysql mysql

4、安装

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
cd  /usr/local/mysql/
mkdir  . /data/mysql
chown  -R mysql:mysql ./
. /bin/mysql_install_db  --user=mysql --datadir= /usr/local/mysql/data/mysql
cp  support-files /mysql .server  /etc/init .d /mysqld
chmod  755  /etc/init .d /mysqld
cp  support-files /my-default .cnf  /etc/my .cnf
 
#修改启动脚本
vi  /etc/init .d /mysqld
 
#修改项:
basedir= /usr/local/mysql/
datadir= /usr/local/mysql/data/mysql
 
#启动服务
service mysqld start
 
#测试连接
. /mysql/bin/mysql  -uroot
 
#启动mysql
service mysqld start
#关闭mysql
service mysqld stop
#查看运行状态
service mysqld status

5、错误

Access denied for user 'root'@'localhost'

解决:

1、vi  /etc/my.cnf

                2、在文件末尾加入:skip-grant-tables

3、 保存 my.cnf

4、重启mysql服务;

5、在mysql的bin目录执行:./mysql -uroot

6、成功进入mysql后, 执行命令: use mysql;

7、 update mysql.user set authentication_string=password('123root') where user='root';

8、flush privileges;

9、quit;

10、修改my.cnf文件,去掉前面增加的 skip-grant-tables,重启mysql服务;

11、重新连接

6、开机自启动

chkconfig --add mysql        添加服务

  chkconfig --list             显示服务列表

  如果看到mysql的服务,并且3,4,5都是on的话则成功,如果是off,则键入:chkconfig --level 345 mysql on

reboot重启电脑

netstat -na | grep 3306,如果看到有监听说明服务启动了


你可能感兴趣的:(centos 7.2 mysql 安装)