今天在上传一个小项目的时候数据库连接出错,弄得我头大一开始是出现这种错误
2003 cannot connect mysql on( 10060)
网上很多方法都试过就是不行,最后通过设置端口的防火墙成功连接
先设置端口的防火墙
/sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT/
之后测试连接的时候又出现了
1045 password …yes 这种错误
出现这种错误有可以这样:
1先登录mysql
mysql -uroot -p
password:
mysql
use mysql
select host,user from user wg=here user='root';
update user set host = '%' where user ='root';
flush privileges;
这样就行了
还有一种是直接授予用户权限
grant all on *.* to 用户名@"%" identified by "密码";