Phpmyadmin
Posted: Wed Dec 31, 2014 10:30 pm
What is the default password for phpmyadmin upon install?
Allan wrote:What is the default password for phpmyadmin upon install?
Code: Select all
nano /usr/local/vesta/conf/mysql.conf
You asked for the password not how to change it. To change it,Allan wrote:I changed the password and still can't access phpmyadmin.
Make sure you update the password in this file,
mysql
UPDATE mysql.user SET Password=PASSWORD('NewPass') WHERE User='root';
FLUSH PRIVILEGES;
exit
Code: Select all
nano /usr/local/vesta/conf/mysql.conf
Post all the code from my post above into putty one line at a time.Allan wrote:Thank you for trying to help, but new to VPS commands so was wanting to know what I should put into putty.