• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

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