Assigning Account Passwords


Required credentials for clients that connect to the MariaDB server can include a password. This section describes how to assign passwords for MariaDB accounts. In MariaDB 5.6, it is also possible for clients to authenticate using plugins. For information, see , "Pluggable Authentication".

To assign a password when you create a new account with CREATE USER, include an IDENTIFIED BY clause:

mysql> CREATE USER 'jeffrey'@'localhost'
 -> IDENTIFIED BY 'mypass';

To assign or change a password for an existing account, one way is to issue a SET PASSWORD statement:

mysql> SET PASSWORD FOR
 -> 'jeffrey'@'localhost' = PASSWORD('mypass');

MySQL stores passwords in the user table in the MariaDB database. Only users such as root that have update access to the MariaDB database can change the password for other users. If you are not connected as an anonymous user, you can change your own password by omitting the FOR clause:

mysql> SET PASSWORD = PASSWORD('mypass');

You can also use a GRANT USAGE statement at the global level (ON *.*) to assign a password to an account without affecting the account's current privileges:

mysql> GRANT USAGE ON *.* TO 'jeffrey'@'localhost'
 -> IDENTIFIED BY 'mypass';

To assign a password from the command line, use the mysqladmin command:

shell> mysqladmin -u user_name -h host_name password 'newpwd'

The account for which this command sets the password is the one with a user table row that matches user_name in the User column and the client host from which you connect in the Host column.

It is preferable to assign passwords using one of the preceding methods, but it is also possible to modify the user table directly. In this case, you must also use FLUSH PRIVILEGES to cause the server to reread the grant tables. Otherwise, the change remains unnoticed by the server until you restart it.

During authentication when a client connects to the server, MariaDB treats the password in the user table as an encrypted hash value (the value that PASSWORD() would return for the password). When assigning a password to an account, it is important to store an encrypted value, not the plaintext password. Use the following guidelines:

In MariaDB 5.6, enabling the read-only system variable prevents the use of the SET PASSWORD statement by any user not having the SUPER privilege.Note

PASSWORD() encryption differs from Unix password encryption. See , "User Names and Passwords".

Retornar