错误码1130:
更改mysql数据库里的user
mysql>use mysql;
mysql>select 'host' from user where user='root';
mysql>update user set host = '%' where user ='root';
mysql>flush privileges;
mysql>select 'host' from user where user='root';
错误码2003:
1.mysql -u root -p回车,输入密码回车,登录
2.授权远程用户登录
1.对所有 root 用户授权:
GRANT ALL PRIVILEGES ON . TO 'root'@'%' IDENTIFIED BY '密码' WITH GRANT OPTION;
2.对指定 IP 的 root 用户授权:
GRANT ALL PRIVILEGES ON . TO root@'指定的IP地址' IDENTIFIED BY '密码' WITH GRANT OPTION;
3.重载授权表:FLUSH PRIVILEGES;
4.exit 退出 Mysql
- /etc/mysql/mysql.conf.d/mysqld.cnf 里,在 bind-address= 127.0.0.1 这一句前加 # 将它注释掉,就可以了。
错误码2013:
1.vim /etc/mysql/my.cnf
看看是否有绑定本地回环地址的配置,如果有,注释掉下面这段文字:bind-address = 127.0.0.1(在文字之前加上#号即可)
2.找到[mysqld]部分的参数,在配置后面建立一个新行,添加下面这个参数:
skip-name-resolve
3.保存文件,启动MySQL,重新连接。
参考链接:https://www.jb51.net/article/51480.htm
网友评论