centeros7远程访问mysql5.7
Posted 山上小和尚
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centeros7远程访问mysql5.7相关的知识,希望对你有一定的参考价值。
先启动firewall防火墙:
service firewalld start
打开3306端口:
firewall-cmd --add-port=3306/tcp --permanent
mysql授权root账户远程访问:
update mysql.user set Host=‘%‘ where HOST=‘localhost‘ and User=‘root‘;
flush privileges;
重启mysql服务器:
service mysqld restart
搞定收工!!!!
抱怨一句,今天上海好热啊
以上是关于centeros7远程访问mysql5.7的主要内容,如果未能解决你的问题,请参考以下文章
Centos8安装mysql5.7,修改mysql初始密码,使root可以访问远程主机. install mysql5.7 in Centos8, and change mysql initial p