我这里使用mysql -h 192.168.0.108 -u root -p
,-h
后边跟的是ip
,结果发现报错如下:
ERROR 1130 (HY000): Host 'zhaoseaside' is not allowed to connect to this MySQL server
我才知道我没有开远程连接,然后使用mysql -u root -p
本机登录,然后输入grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option;
,需要注意的是identified by 'root'
中的root
是密码。
之后再使用mysql -h 192.168.0.108 -u root -p
,就可以正常登录。