• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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