Mysql5.7的安装
安装步骤
1. 通过官网找到需要安装的mysql版本的下载连接:https://downloads.mysql.com/archives/community/
2. 下载,例如:#wget https://cdn.mysql.com/archives/mysql-5.7/mysql-5.7.30-1.el7.x86_64.rpm-bundle.tar
3. 通过tar命令查看并解压需要的安装包:tar -f mysql-5.7.30-1.el7.x86_64.rpm-bundle.tar -t
4. 安装需要的包:rpm -ivh mysql-community-*
5. 初始化Mysql:mysqld --initialize --user=mysql
6. 通过log日志查看初始密码:cat /var/log/mysqld.log | tail -n 10
7. 开启服务:systemctl start mysqld
8. 查看服务:systemctl status mysqld
9. 登录mysql:mysql -uroot -p
10. 修改密码:ALTER USER 'root'@'localhost' IDENTIFIED BY 'new_password';
11. 修改字符集:vim /etc/my.cnf 加上:
character_set_server=utf8
init_connect=’SET NAMES utf8’
查看:show variables like 'character%';
12. 设置用户表远程连接:update mysql.user set host='%' where user='root';
flush privileges; # 所有通过 user表的修改,必须用该命令才能生效。
参考博客:https://blog.csdn.net/qq_43280818/article/details/115625306