CentOS 7 安装 MySQL 5.7 详细步骤
Posted Erik_ly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7 安装 MySQL 5.7 详细步骤相关的知识,希望对你有一定的参考价值。
文章目录
本文详细介绍了 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
参考资料
-
CentOS 7.2 安装 MySQL 5.7.13_数据库技术_Linux公社-Linux系统门户网站
https://www.linuxidc.com/Linux/2017-03/141300.htm -
Linux下干净卸载mysql - 简书
https://www.jianshu.com/p/3f263c3c3d63 -
centos安装mysql遇到的问题 - 点击领取
https://www.dianjilingqu.com/31015.html
注:本文首发于个人博客网站: http://www.erik-ly.com/
以上是关于CentOS 7 安装 MySQL 5.7 详细步骤的主要内容,如果未能解决你的问题,请参考以下文章