January 2018
Intermediate to advanced
446 pages
12h 57m
English
Connect to mysql using the root user and execute CREATE USER command to create new users.
mysql> CREATE USER IF NOT EXISTS 'company_read_only'@'localhost' IDENTIFIED WITH mysql_native_password BY 'company_pass' WITH MAX_QUERIES_PER_HOUR 500 MAX_UPDATES_PER_HOUR 100;
You might get the following error if the password is not strong.
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
The preceding statement will create users with: