遠端登入mysql

2022-04-08 10:52:22 字數 411 閱讀 8933

1130 - host'clientip' is not allowed to connect to this mysql server。

解決方法:

使用root 使用者登陸linux,登陸mysql的root使用者,更改容許登陸的ip位址範圍。

[root@bugzilla ~]# mysql -u root -p  

mysql>grant all privileges on *.* to 'root'@'%' identified by '密碼' with grant option;

這段指令容許所有用root使用者輸入密碼登陸該mysql server,如果將'%' 換成'192.168.1.100' ,那麼只有'192.168.1.100'的主機可以登陸。

遠端登入mysql

1 遠端登入win7下的mysql 1.1 開啟防火牆,開放mysql使用的埠,如3306埠。1.2 授權。使用如下語句進行授權,使得root使用者使用root密碼從任何主機連線到mysql伺服器。語句 grant all privileges on to root identified by ro...

Mysql 遠端登入

ubuntu系統 my.cnf 在 etc mysql 目錄下 注釋bind address 127.0.0.1 或者 改為你希望的ip,0.0.0.0 表示所有ip 如果不注釋 bind address 會出現 error 2003 hy000 can t connect to mysql ser...

mysql遠端登入

準備 兩台電腦,一台osx 64,一台windows7 32,將win7 32作為主機,osx 64遠端訪問win7 32的mysql。第一步 ping下ip windows命令 ipconfig all 兩台電腦都放在同乙個區域網中,因此能夠ping通 第二步 修改win7 32中的mysql,使...