Difference between revisions of "User Management (MySQL)"

From vwiki
Jump to navigation Jump to search
(Initial creation - content from MySQL page (now category))
 
 
Line 1: Line 1:
== Create Users and Grant/Revoke Privileges ==
== Create Users and Grant/Revoke Privileges ==
After making any changes to user privilages, you need to flush them to ensure they're applied...
To create a new user you need to specify the username, the location/IP address it will be connecting from (use <code>%</code> for any location), and their password
<source lang="mysql"> FLUSH PRIVILEGES; </source>
<source lang="mysql"> CREATE USER '<user>'@'localhost' identified by '<password>';</source>
 
You can then give permissions to that user
<source lang="mysql"> GRANT ALL ON <dayabase>.* TO '<user>'@'localhost';</source>


To give full privileges (including the ability to alter user accounts) to a new user coming from any location use;
Depending on the version of MySQL running you can do this in one command (note that the <code>WITH GRANT OPTION</code> allows the user to create more users and/or grant privileges to users).
<source lang="mysql"> GRANT ALL PRIVILEGES on <database>.* to '<user>'@'%' identified by '<password>' WITH GRANT OPTION; </source>
<source lang="mysql"> GRANT ALL PRIVILEGES on <database>.* to '<user>'@'%' identified by '<password>' WITH GRANT OPTION; </source>


Line 17: Line 20:
To remove/revoke a privilege from an existing user ''web-user'';
To remove/revoke a privilege from an existing user ''web-user'';
<source lang="mysql"> REVOKE SELECT ON webdb.* FROM 'web-user'@'localhost';</source>
<source lang="mysql"> REVOKE SELECT ON webdb.* FROM 'web-user'@'localhost';</source>
After making any changes to user privilages, you need to flush them to ensure they're applied...
<source lang="mysql"> FLUSH PRIVILEGES; </source>


== Delete Users ==
== Delete Users ==

Latest revision as of 08:58, 15 March 2019

Create Users and Grant/Revoke Privileges

To create a new user you need to specify the username, the location/IP address it will be connecting from (use % for any location), and their password

 CREATE USER '<user>'@'localhost' identified by '<password>';

You can then give permissions to that user

 GRANT ALL ON <dayabase>.* TO '<user>'@'localhost';

Depending on the version of MySQL running you can do this in one command (note that the WITH GRANT OPTION allows the user to create more users and/or grant privileges to users).

 GRANT ALL PRIVILEGES on <database>.* to '<user>'@'%' identified by '<password>' WITH GRANT OPTION;

To give no privileges to a new user coming from a specific host;

 GRANT USAGE on <database>.* to '<user>'@'<host>' identified by '<password>';

To give an existing user read-only access;

 GRANT SELECT on <database>.* to '<user>'@'<host>';

To give an existing user web-user, read-only access to local database webdb;

 GRANT SELECT ON webdb.* TO 'web-user'@'localhost';

To remove/revoke a privilege from an existing user web-user;

 REVOKE SELECT ON webdb.* FROM 'web-user'@'localhost';

After making any changes to user privilages, you need to flush them to ensure they're applied...

 FLUSH PRIVILEGES;

Delete Users

To remove an existing user use the following...

 DROP USER '<user>'@'<host>';
  • You need to specify the full user@host entry (or MySQL assumes the wild-card host %)
  • Existing users sessions are not dropped, but will be unable to re-establish

Display Users

To display all configured users;

SELECT CONCAT('SHOW GRANTS FOR \'', user ,'\'@\'', host, '\';') FROM mysql.user;

Then use the displayed lines to see the detail of each user

Change User Password

SET PASSWORD FOR 'user'@'%' = PASSWORD('newpass');