# tar -zxvf mysql-5.7.21-linux-glibc2.12-x86_64.tar.gz 解压
# mv mysql-5.7.21-linux-glibc2.12-x86_64 mysql 重命名
# cat /etc/group | grep mysql 查看有没有mysql组
# cat /etc/passwd |grep mysql 查看有没有mysql用户
更改mysql目录下所有的目录及文件夹所属组合用户
# chown -R mysql mysql
# chgrp -R mysql mysql
# cd mysql
# ls -l
安装和初始化mysql数据库
# cd bin/
# bin/mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data
从上图中看出生成的临时密码是 g%GgeAw5GdQ9
# bin/mysql_ssl_rsa_setup --datadir=/usr/local/mysql/data
配置my.cnf
# cd support-files
#ls 查看my-default.cnf 是否存在 如果存在直接复制到/etc/my.cnf
# cp -a ./support-files/my-default.cnf /etc/my.cnf
下面这是不存在的话
# touch /etc/my.cnf
# vim /etc/my.cnf
# basedir=/usr/local/mysql/
# datadir=/usr/local/mysql/data/
# ./mysqld_safe --user=mysql & 启动mysql
把mysql添加到后台运行成为服务
# cp mysql.server /etc/init.d/mysql
# chmod +x /etc/init.d/mysql
# chkconfig --add mysql //把mysql注册为开启启动项
# chkconfig --list mysql 查看是否添加成功
修改mysql登陆的密码
# cd bin
# ./mysql -uroot -p
密码上面生成的临时密码
mysql> set password=password("root");
修改mysql远程登陆
use mysql;
update user set host='%' where user='root';
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypwd' WITH GRANT OPTION;
FLUSH PRIVILEGES;
exit;
service mysql restart;
就可以实现了
如图
到此mysql5.7.21 就算安装完成了。