mysql hints
First steps mysql_secure_installation Passwordpress login mysql create ~/.my.cnf with [client] password=plaintextpassword user=root Create Database long variant ; create database testdb; create user ‘testuser’@’localhost’ identified by ‘password’; grant all on testdb.* to ‘testuser’ identified by ‘password’; short one : create database testdb; grant all on testdb.* to ‘testuser’ identified by ‘password’; Reset the MySQL Root Password …