• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

default mysql password

S

sagelike

Guest
Hi there

I just completed a fresh install of Plesk 8.3 on Centos 5. I let Plesk install mysql and during the installation process, I don't recall setting a root mysql password though one has apparently been created.

Is there a default password that plesk creates when it installs mysql?

thanks for your help!!
 
Hello,

the password for mysql is the same of Plesk password
 
Plesk removes the MySQL root account and creates an account called 'admin'. Its password is the same as the password for the admin account you use to login to Plesk (which is also stored in /etc/psa/.psa.shadow).

If you want to access MySQL from the commandline as the admin user you can do this:

Code:
# mysql -uadmin -p`cat /etc/psa/.psa.shadow`
mysql>
 
Back
Top