I'm new to MySQL administration. I want to create a new user in MySQL and give it full access only to 1 database, say dbTest, that I create. What would be the MySQL commands to do that?
|
Try this:
If you are running the code/site accessing MySQL on the same machine, hostname would be localhost. Now, the break down.
|
|||||||||||||||
|
|
You can create new users using the CREATE USER statement, and give rights to them using GRANT. |
|||
|
|
|
You can use MySQL commands for that kind of actions or you can use some softwares like HeidiSQL or, Toad for MySQL. I suggest you to use that kind of softwares to manage your MySQL. |
|||
|
|
protected by Gilbert Le Blanc Feb 25 at 17:10
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.