View Single Post
  #7  
Old 08-05-2004, 04:44 AM
fathernitwit
Developer
 
Join Date: Jul 2004
Posts: 773
Default

a general work-all grant for this would be:
Code:
grant all on eq.* TO username@'%' IDENTIFIED BY 'password';
That will allow any IP to login with that username and password... This is circumventing some of mysql's IP based security, but I assume this is a local, protected server.
Reply With Quote