• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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