when i am trying to log on mysql using my ip address i am getting error 1130 qht can i do for this
相关问题
- sqlyog export query result as csv
- NOT DISTINCT query in mySQL
- MySQL: conduct a basic search
- Why sometimes there is one of more gap(s) in the v
- mySQL alter table on update, current timestamp
Your client IP is not allowed to connect to this server, you must add it to allowed client account For exemple, assuming you add an user account having all rights in one database :
Where db is database name, username the username , and your clients IP is 192.168.0.1
See docs for details of user account creation
On your server run mysql from command line:
mysql -u root -p -h localhost -P 3306 Then run this command in mysql shell:
Perfect! great steps and resolve the error Failure loading users data from backend [xx.xx.xx.x:3306] for service [Write Failover]. MySQL error 1130, Host
'xx.xx.xx.x' is not allowed to connect to this MariaDB server
On your server run mysql from command line:
Then run this command in mysql shell:
Have a nice time.