您当前的位置:首页 > 计算机 > 系统应用 > Linux

CentOS 7 安装 MySQL 5.7 详细步骤

时间:06-07来源:作者:点击数:

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

查看当前安装 MySQL 情况

rpm -qa|grep -i mysql

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

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

安装MySQL

  • 下载mysql的repo源
    wget http://repo.mysql.com/mysql57-community-release-el7-8.noarch.rpm
    
  • 升级 GPG
    rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022
    
  • 安装rpm包
    rpm -ivh mysql57-community-release-el7-8.noarch.rpm  --nodeps --force
    
  • 安装mysql
    yum install mysql-server
    
  • 启动服务
    systemctl start mysqld
    
  • 查看状态
    service mysqld status
    

重置root密码

查看默认密码

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新密码登录:

mysql -u root -pRoot-123

开启远程访问

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

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

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

firewall-cmd --zone=public --add-port=3306/tcp --permanent
firewall-cmd --reload
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门