I installed LAMP on Ubuntu 12.04 LTS (Precise Pangolin) and then set root password on phpMyAdmin. I forgot the password and now I am unable to login. When I try to chan
Check the "bind-adress" parameter in my.cnf.
"bind-adress"
Else try with the command:
mysql -h 127.0.0.1 -P 3306 -u root -p
-h for host 127.0.0.1, that is, localhost
127.0.0.1
-P (notice -P as uppercase) for port 3306, that is, the default port for MySQL
3306