What do i do to check if a mysql server is working?
I've installed webuzo on my unmanaged vps I am not able to install any applications, since it is giving me errors such "unable to connect to mysql server". The status of my mysql is running through the terminal
What's the best way to troubleshoot this problem?
Best Answer
There's many ways to do it in your terminal
sudo service mysql status
or
ps aux | grep mysql
You're probably facing authentication failure or a database misspell
Have you tried logging in via terminal?
mysql -u <username> -p <database-name>
Hope it helps :)