Deploy the MySQL environment locally (192.168.1.152), authorize the remote client 192.168.1.% to connect to the local MySQL, and open port 3306 in the iptables firewall. as follows: mysql> select host,user,password from mysql.user; question: Remotely connect to mysql on the 192.168.1.152 machine above on the client (for example, 192.168.1.20), the connection fails! [root@huanqiu ~]# mysql -udb_ro_hqsb -h 192.168.1.152 -pmhxzkhl0802xqsjdb ERROR 1130 (HY000): Host '192.168.1.20' is not allowed to connect to this MySQL server solve: This is caused by the statement "host is localhost, user and password are empty" in the mysql of 192.168.1.152. Deleting this statement can solve the problem! mysql> delete from mysql.user where host="localhost" and user=""; In this way, the client computer authorized to connect can successfully connect! [root@huanqiu ~]# mysql -uxqsj_db_ro_user -h 192.168.1.152 -pmhxzkhl0802xqsjdb Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 28 Server version: 5.1.73 Source distribution Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> The above article perfectly solves the problem of connection failure after MySQL client authorization. This is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Native JavaScript to achieve skinning
>>: VMware vSphere 6.7 (ESXI 6.7) graphic installation steps
Unicode Signature BOM - What is the BOM? BOM is th...
Table of contents cache Cache location classifica...
1. Install JDK Check the computer's operating...
Table of contents 1. Drag effect example 2. CSS I...
Just as the title says. The question is very stran...
1. Usage scenarios There is such a requirement, s...
This article shares the specific code for the js ...
I am happy that some bloggers marked my article. ...
1. Send effect HTML <div id="send-btn&quo...
1. Make sure the system has the required libaio s...
This article example shares the specific code of ...
Table of contents 1. Vue2 syntax 2. Use of Vue3 1...
1. Overview Zabbix is a very powerful and most ...
Portainer Introduction Portainer is a graphical m...
Hyperf official website Hyperf official documenta...