Sep 23, 2003 #1 tempsup MIS Sep 10, 2003 26 GB Hi, can i add more host to mysql other than the default local host, or i can only add additional users??? PLease help. Thanx a lot.
Hi, can i add more host to mysql other than the default local host, or i can only add additional users??? PLease help. Thanx a lot.
Sep 24, 2003 #2 QatQat IS-IT--Management Nov 16, 2001 1,031 IT use the GRANT command example GRANT ALL ' ALL stands for all privileges ON dbname.* '* stands for all tables to user@'hostname' IDENTIFIED BY "password" if the username does not exist in the user table MySQL will create a new user. The hostname can also be an IP address. I recommend you read this http://www.mysql.com/doc/en/GRANT.html Bye QatQat Life is what happens when you are making other plans. Upvote 0 Downvote
use the GRANT command example GRANT ALL ' ALL stands for all privileges ON dbname.* '* stands for all tables to user@'hostname' IDENTIFIED BY "password" if the username does not exist in the user table MySQL will create a new user. The hostname can also be an IP address. I recommend you read this http://www.mysql.com/doc/en/GRANT.html Bye QatQat Life is what happens when you are making other plans.