16 lines
423 B
Plaintext
16 lines
423 B
Plaintext
|
|
MYSQL SET UP
|
|
SET GLOBAL validate_password.length = 8;
|
|
SET GLOBAL validate_password.policy=LOW;
|
|
|
|
CREATE DATABASE site_mermsemr_com;
|
|
CREATE USER 'mermsemr'@'192.168.%' IDENTIFIED BY 'may12002';
|
|
GRANT ALL PRIVILEGES ON site_mermsemr_com.* TO 'mermsemr'@'192.168.%';
|
|
|
|
https://www.digitalocean.com/community/tutorials/how-to-create-a-new-user-and-grant-permissions-in-mysql
|
|
|
|
|
|
|
|
SELECT User, Host, plugin FROM mysql.user;
|
|
|