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
I solved this by killing the mysql process:
mysql
ps -ef | grep mysql kill [the id]
And then I started the server again with:
sudo /etc/init.d/mysql restart
But start works as well:
start
sudo /etc/init.d/mysql start
Then I logged in as admin, and I was done.
admin