c**t 发帖数: 2744 | 1 Behind the router, I have a linux box, and a XP box;
MySQL is running on the linux box; MySQL Administrator 1.0 is running on XP.
But I cann't connect to the linux box from XP with the valid user account.
The account (someuser) was created by:
GRANT USAGE ON myapp.* TO 'someuser'@'192.168.0.xxx' IDENTIFIED BY 'some_pass'
;
FLUSH PRIVILEGES;
Any clue? | D*******I 发帖数: 29 | 2 GRANT USAGE ON myapp.* TO 'someuser'@'192.168.%' IDENTIFIED BY 'some_pass'
or
GRANT USAGE ON myapp.* TO 'someuser'@'%' IDENTIFIED BY 'some_pass'
also make sure port is ok
pass'
【在 c**t 的大作中提到】 : Behind the router, I have a linux box, and a XP box; : MySQL is running on the linux box; MySQL Administrator 1.0 is running on XP. : But I cann't connect to the linux box from XP with the valid user account. : The account (someuser) was created by: : GRANT USAGE ON myapp.* TO 'someuser'@'192.168.0.xxx' IDENTIFIED BY 'some_pass' : ; : FLUSH PRIVILEGES; : Any clue?
|
|