Host 'xxx' is not allowed to connect to this MySQL server 解決方法
Host 'xxx' is not allowed to connect to this MySQL server 解決方法
在 Windows 伺服器點選開始選單->執行->輸入“cmd”->進入控制檯,然後cd 進入MySQL 的 bin 目錄下,然後輸入下面的命令:
> MySQL -uroot -p123456
(123456 為 root 使用者的密碼。)
如何開啟MySQL的遠端帳號-2)建立遠端登陸使用者並授權
> grant all PRIVILEGES on testdb.* to root@'192.168.1.1' identified by '123456';上面的語句表示將 test_db 資料庫的所有許可權授權給 root 這個使用者,允許 root 使用者在 192.168.1.101 這個 IP 進行遠端登陸,並設定 root 使用者的密碼為 123456 。
下面引數說明:
all PRIVILEGES 表示賦予所有的許可權給指定使用者,這裡也可以替換為賦予某一具體的許可權,例如select,insert,update,delete,create,drop 等,具體許可權間用“,”半形逗號分隔。
testdb.* 表示上面的許可權是針對於哪個表的,testdb指的是資料庫,後面的 * 表示對於所有的表,由此可以推理出:對於全部資料庫的全部表授權為“*.*”,對於某一資料庫的全部表授權為“資料庫名.*”,對於某一資料庫的某一表授權為“資料庫名.表名”。
root 表示你要給哪個使用者授權,這個使用者可以是存在的使用者,也可以是不存在的使用者。
192.168.1.1 表示允許遠端連線的 IP 地址,如果想不限制連結的 IP 則設定為“%”即可。
123456 為使用者的密碼。
如何開啟MySQL的遠端帳號-3)執行了上面的語句後,再執行下面的語句,方可立即生效。
> flush privileges;
效果如下:
執行成功,則在伺服器的mysql管理工具會出現剛新增的對應IP的遠端訪問使用者。
PS:如果安裝了mysql客戶端管理工具,也可以用工具直接新增新使用者:
然後輸入對應的新使用者資訊即可:
由請喊我大龍哥最後編輯於:3年前
內容均為作者獨立觀點,不代表八零IT人立場,如涉及侵權,請及時告知。
相關文章
- 解決MySql報錯:1130 - Host ‘xxx‘ is not allowed to connect to this MySQL server的方法MySqlServer
- Host 'xxx' is not allowed to connect to this MySQL server.MySqlServer
- Host 'localhost' is not allowed to connect to this MySQL serverlocalhostMySqlServer
- “Host ‘xxxx‘ is not allowed to connect to this MySQL server“MySqlServer
- MySQL-1130-host ... is not allowed to connect to this MySql serverMySqlServer
- 上手MySQL之解決問題:not allowed to connect to this MySQL serverMySqlServer
- Navicat連線centos裡mysql報錯Host is not allowed to connect to this MySQL serverCentOSMySqlServer
- 關於對連線資料庫時出現1130-host “**” is not allowed to connect to this MySql/mariadb server 的錯誤解決方法資料庫MySqlServer
- 虛擬機器NAT模式下連線mysql報錯:Host '192.168.30.1' is not allowed to connect to this MySQL server虛擬機模式MySqlServer
- navicat無法連線遠端的mysql--Host ‘xx.xx.xx.xx‘ is not allowed to connect to this MySQL server“MySqlServer
- 【問題解決】java.sql.SQLException: null, message from server: “Host ‘xxx.xx.xx.xxx‘ is blocked because ofJavaSQLExceptionNullServerBloC
- Can't Connect to MySQL Server on IP Address (10061) 錯誤的解決方案MySqlServer
- Mysql host is blocked because of many connection errors;unblock解決方法MySqlBloCError
- 異常解決——GitLab : ssh: connect to host port 22: Connection refusedGitlab
- 連線mysql時提示is not allowed to connect不允許連線MySql
- MySQL 2003 - Can’t connect to MySQL server on (10060)MySqlServer
- could not connect to redis Instance at xxx.xxx.xxx.xxx:6379Redis
- Mysql mysql lost connection to server during query 問題解決方法MySqlServer
- Navicat 連線 MySQL 失敗:2002-can‘t connect to server on localhost(10061)問題解決MySqlServerlocalhost
- MySQL 中出現報錯提示: ‘Variable ‘XXX‘ is a read only variable‘的解決方法MySql
- sudo 出現unable to resolve host 解決方法
- 搭建 docker registry 私有倉庫並解決報錯Get https://xxx.xxx.xxx.xxx:5000/v1/_ping: http: server gave HTTP respDockerHTTPServer
- sudo時出現unable to resolve host 的解決方法
- 連線mysql報錯lost connect to sever during query解決MySql
- ssh: connect to host localhost port 22: Connection refusedlocalhost
- Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock錯誤MySqlServer
- 解決MySQL server has gone away錯誤的解決方案MySqlServerGo
- unable to access ‘https://gitee.com/XXX/XXX.git/‘: Failed to connect to 127.0.0.1 portHTTPGiteeAI127.0.0.1
- mysql 啟動報錯Can't connect to local MySQL server through socket '/data/mysql/mysql/mysql.sock'(111)MySqlServer
- 帝國CMS更新時提示Fatal error: Allowed memory size of的解決方法Error
- Mysql資料庫的max_allowed_packet設定方法MySql資料庫
- 坑:ssh: connect to host github.com port 22: Connection refusedGithub
- Centos 6 DNS 配置 解決 Unknown hostCentOSDNS
- 【解決方案】- phpmyadmin連線mysql時登入不了,提示mysqli_real_connect()PHPMySql
- psql: error: could not connect to server: No such file or directorySQLErrorServer
- 圖解Eclipse中找不到Server選項的解決方法圖解EclipseServer
- 成功解決PyCharm 彈出 Server‘s certificate is not trusted 的簡單解決方法PyCharmServerRust
- -bash: XXX: command not found解決辦法