0%

CentOS 7 安装 MySQL 5.7 详细步骤

本文详细介绍了 CentOS 7 系统中安装 MySQL 5.7 的详细步骤,并配置远程连接。

查看当前安装 MySQL 情况

1
rpm -qa|grep -i mysql

如果有,全部删除所列的内容,直至rpm -qa|grep -i mysql时没有内容

1
rpm -ev mysql-community-libs-5.6.37-2.el7.x86_64

安装MySQL

  • 下载mysql的repo源

    1
    wget http://repo.mysql.com/mysql57-community-release-el7-8.noarch.rpm
  • 升级 GPG

    1
    rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022
  • 安装rpm包

    1
    rpm -ivh mysql57-community-release-el7-8.noarch.rpm  --nodeps --force
  • 安装mysql

    1
    yum install mysql-server
  • 启动服务

    1
    systemctl start mysqld
  • 查看状态

    1
    service mysqld status

重置root密码

查看默认密码

1
2
3
4
5
grep 'temporary password' /var/log/mysqld.log
mysql -u root -p
mysql> Enter password: (输入刚才查询到的随机密码)
mysql> SET PASSWORD FOR 'root'@'localhost'= "Root-123";
mysql> exit;

用root新密码登录:

1
mysql -u root -pRoot-123

开启远程访问

允许使用用户名root密码Root-123456从任何主机连接到mysql服务器

1
2
3
mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'Root-123456' WITH GRANT OPTION;
mysql>FLUSH PRIVILEGES;
mysql>exit;

开启防火墙 MySQL 3306 端口的外部访问

1
2
firewall-cmd --zone=public --add-port=3306/tcp --permanent
firewall-cmd --reload

参考资料