mysql commands


mysql bootstrap hugo

1. change root password for root@'%'

        mysql -u root -p 
        select user,host,password from mysql.user where user='root' and host='%'; 
        update mysql.user SET Password=PASSWORD('complexpassword') where user='root' and host='%'; 
        select user,host,password from mysql.user where user='root' and host='%';