• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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