error 1130 : Host xxx.xxx.xxx.xxx not allowed to connect this server ?

2003-07-09 Thread fatih olcer
*This message was transferred with a trial version of CommuniGate(tm) Pro* i got an error when i try to connect mysql server with mysqlcc : error 1130 : Host xxx.xxx.xxx.xxx not allowed to connect this server . does anyone know any solution ? thanX. -- MySQL General Mailing List For list

Re: error 1130 : Host xxx.xxx.xxx.xxx not allowed to connect this server ?

2003-07-09 Thread Joseph Bueno
fatih olcer wrote: *This message was transferred with a trial version of CommuniGate(tm) Pro* i got an error when i try to connect mysql server with mysqlcc : error 1130 : Host xxx.xxx.xxx.xxx not allowed to connect this server . does anyone know any solution ? thanX. Have you looked at the

Re: error 1130 : Host xxx.xxx.xxx.xxx not allowed to connect this server ?

2003-07-09 Thread Nils Valentin
Hi Faith, You will have to check your user account privileges. Make sure that the Host you are connecting from is entitled to connect to the server. Login to the mysql server with the command line tool mysql and do this: mysql show grants for user;

Re: error 1130 : Host xxx.xxx.xxx.xxx not allowed to connect this server ?

2003-07-09 Thread Nils Valentin
Hi Faith, Damn, did I post a stupid GRANT command !! Doesn't seem to be my day today ;-) Don't use the GRANT command from the previous e-mail, use the one below. GRANT ALL ON *.* TO 'root'@'%' IDENTIFIED BY PASSWORD 'xxx' WITH GRANT OPTION; Sorry I must have been completely out of my mind for