• 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.

Where does plesk 7.5 stores data about domains & users

F

FilipB

Guest
Is Plesk 7.5 storing the data concerning users, domains, etc... in a database. If yes how can i access this database ?
Under databases Mysql I see only databases of users who made one, not a general system database.

Because I would like to write my own invoice program.

Anyone ?
 
Plesk uses 2 MySQL servers. One server for admin (Plesk databases) another fo clients databases.
To access to admin MySQL you should use the following string:

cd %plesk_dir%\mysql\bin
mysql -uadmin -p<admin_pass> -P8306 psa
8306 admin mysql port
psa - Plesk database;

To access to clients mysql use the same string except port. Clients mysql uses standard port 3306

mysql -u<admin_user> -p<admin__user_pass>
 
Back
Top