Linux系统MySQL开启远程连接Warning: World-writable config file '/etc/my.cnf' is ignored

1.本地登录MySQL授权:

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION;

--给用户root密码123456的账户授权所有电脑都可以连接的权限

2.执行 flush privileges;命令立即生效

3.使用exit命令退出MySQL

然后打开vim  /etc/mysql/my.cnf

将bind-address    = 127.0.0.1       设置成bind-address    = 0.0.0.0(设备地址,仅支持IPv4的TCP/IP的连接)

将bind-address    = 127.0.0.1       设置成bind-address    = ::(同时支持IPv4和IPv6的TCP/IP的连接)

重新启动(命令如下):

/etc/init.d/mysql stop

/etc/init.d/mysql start

注意:如果my.cnf无权限,对my.cnf授权777权限后

          重启mysql报错:Warning: World-writable config file '/etc/my.cnf' is ignored 

原因:权限777,任何一个用户都可以改my.cnf,存在很大的安全隐患.

解决方法:授权644权限 chmod 644 /etc/my.cnf,重启mysql服务

你可能感兴趣的:(MySQL)