My problem was solved checking if the process was running on Ubuntu 12.04
ps ax | grep mysql
Then the answer was that it wasn’t running, so I did
sudo service mysql start
Or try
sudo /etc/init.d/mysql start
My problem was solved checking if the process was running on Ubuntu 12.04
ps ax | grep mysql
Then the answer was that it wasn’t running, so I did
sudo service mysql start
Or try
sudo /etc/init.d/mysql start