How does one create a privileged user in MySQL( not root ) for the sole purpose of creating other users?
However, this user can only grant access to one database at a time.
Is it possible to give limited GRANT permissions to a user?
How does one create a privileged user in MySQL( not root ) for the sole purpose of creating other users?
However, this user can only grant access to one database at a time.
Is it possible to give limited GRANT permissions to a user?
yes you can create mysql user and grant limited permissions using phpmyadmin
interface and also by command
use following command for creating user and grant permissions
CREATE USER 'monty'@'localhost' IDENTIFIED BY 'some_pass';
GRANT SELECT ON database.* TO 'user'@'localhost';
you can further explore on
http://dev.mysql.com/doc/refman/5.1/en/adding-users.html http://dev.mysql.com/doc/refman/5.1/en/grant.html