欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mysql开启远程连接(mysql开启远程访问)

程序员文章站 2024-02-25 21:09:51
复制代码 代码如下://建议设置固定ipmysql> grant all privileges on *.* to root@"8.8.8.8" identified...

复制代码 代码如下:

//建议设置固定ip
mysql> grant all privileges on *.* to root@"8.8.8.8" identified by "root";
mysql> flush privileges;
//修改防火墙
iptables -i input -p tcp --dport 3306 -j accept