MySQL Password Allow
From MS Computech
MySQL password&host stuff.
Use this for new password
# mysqladmin -u root password NEWPASSWORD
Use this for change
# mysqladmin -u root -p oldpassword newpass
==============================
Allow Access
mysql -uroot -p
use mysql;
select host, user from user;
update user set host='%' where user='root' and host='ubuntuserv';
flush privileges;
nano /etc/mysql/my.cnf
- bindaddress 127.0.0.1