Method 1: Try to use MySQLAdminstratorGUITool to log on to MySQLServer, the Server returns the error message: Host60-248-32-13.HINET-IP.hinet.netisnotallowedtoconnecttothisMySQLserver this is because of permission problems, the processing method is as follows: shellmysql -- userroot-p input password
Method 1: Try to log on to MySQL Server using MySQL Adminstrator GUI Tool, but the Server returns the error message Host '60-248-32-13.hinet-ip.hinet.net 'is not allowed to connect to this MySQL server. this is because of permission issues, the solution is as follows: shell> mysql -- user = root-p input password
Method 1:
Log on to the MySQL Server using the MySQL Adminstrator GUI Tool, but the Server returns the error message Host '60-248-32-13.hinet-ip.hinet.net 'is not allowed to connect to this
MySQL server
This is because of permission issues. The solution is as follows:
Shell> mysql -- user = root-p
Enter Password
Mysql> use mysql Mysql> grant select, INSERT, UPDATE, delete on [db_name]. * TO [username] @ [ipadd] Identified by '[password]'; [Username]: User code for remote login [Db_name]: indicates the name of the database to be opened to the user. [Password]: User password for remote login [Ipadd]: The DNS Name after IP address or IP address lookup, In this example, enter '60 -248-32-13.HINET-IP.hinet.net 'and enclose the quotation marks (') (In fact, it is executed on the remote server. Fill in the IP address of the local host .)
|
If you want to open all permissions, execute:
mysql>update user set select_priv='Y' , Insert_priv='Y', Update_priv='Y', delete_priv='Y', Create_priv='Y', Drop_priv='Y',Reload_priv='Y', shutdown_priv='Y', Process_priv='Y', File_priv='Y', Grant_priv='Y', references_priv='Y', Index_priv='Y', Alter_priv='Y', Show_db_priv='Y', Super_priv='Y', Create_tmp_table_priv='Y',Lock_tables_priv='Y', Execute_priv='Y', Repl_slave_priv='Y',Repl_client_priv='Y' where user='[username]';
|
Method 2:
How to solve the connection between the client and the server (mysql): xxx. xxx is not allowed to connect to this mysql serv
1. Go to mysql and create a new user named xuys.
Format: grant permission on database name. Table name user @ login host identified by "User Password ";
grant select,update,insert,delete on *.* to xuys@192.168.88.234 identified by "xuys1234";
|
2. view the result and execute
use mysql; select host,user,password from user; |
You can see that the created xuys user already exists in the user table. The host field indicates the host to be logged on. The value can be an IP address or a host name. Changing the value of the host field to % indicates that the host can be logged on to the mysql server as an xuys user on any client, we recommend that you set it to % during development.
3../mysqld_safe -- user-root &
Remember: Any modification to the authorization table must be reload again, that is, step 1.
If you still cannot connect from the client after the above three steps, perform the following operations to insert a record in the db table of the mysql database:
use mysql; insert into db values('192.168.88.234','%', 'xuys','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'); update db set host = '%' where user = 'xuys';
|
Repeat steps 2nd and 3 above.
Method 3:
Add fbysss to connect phpMyAdmin to a remote user:
1. log on to the remote Mysql server with the root account
grant select,update,insert,delete on *.* to sss@192.168.0.114 identified by "sss"; update user set host = '%' where user = 'sss';
|
Exit mysql and run the command in shell.
#mysqladmin -u root -p [password] reload #mysqladmin -u root -p [password] shutdown #/etc/rc.d/init.d/mysqld start |
2. Modify the config. inc. php file in the phpMyAdmin directory and find
$ Cfg ['servers'] [$ I] ['host'] to the remote server address
$ Cfg ['servers'] [$ I] ['user'] To sss
$ Cfg ['servers'] [$ I] ['Password'] change to sss password
Note that grant all privilege cannot grant the "grant" permission to the user. To add the permission, you can directly use mysql in mysql; update user set Grant_priv = 'y' to meet the requirements.
[Related articles]
- Analyze MySQL Data Types and database creation policies
- Use the ODBC interface to access MySQL
- MySQL announces Cluster database Benchmark Test Results