Either your mysql server is not running or not listening on localhost.
To make it listen, open /etc/mysql/my.conf
search:
bind-address = 127.0.0.1
and change it to:
#bind-address = 127.0.0.1
To verify, use:
netstat -tap
then, restart the mysql server:
Ubuntu:
sudo service mysql reload
sudo service mysql restart