MySQL / MariaDB - Create Database User with Password
This code snippet shows you how to create a database user with password in MySQL or MariaDB.
Code snippet
The following code snippet creates a user named 'hive' with password ('hive') that never expires.
CREATE USER 'hive'@'localhost' IDENTIFIED BY 'hive' password expire never;
Grant permissions
The following SQL statement grants all permission to user 'hive':
GRANT ALL ON *.* TO 'hive'@'localhost';
info Last modified by Raymond 3 years ago
copyright
This page is subject to Site terms.
comment Comments
No comments yet.