解决阿里云MySQL远程连接不上的问题:step1:1.修改user表:MySQL>update user set host = '%' where user = 'root'; 2.授权主机访问:MySQL>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '你的密码' WITH GRANT OPTION; 3.刷新权限:MySQL>FLUSH PRIVILEGES;4.退出:MySQL>EXIT; step2:查看端…
iptables-centos: vi /etc/sysconfig/iptables service iptables restart ====================== mysql navicat登陆不上:grant all privileges on *.* to 'root'@'%' identified by '密码' with grant option…