• Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
    Thank you in advance for your patience and understanding on the matter.

Resolved change phpmyadmin direct access URL

Unfortunately you cannot do it, cause phpmyadmin url is hard encoded into the source somewhere.
 
Sure you can:
How to enable direct access to phpMyAdmin in order to skip login to Plesk stage?

  1. Connect to the server via SSH;
  2. Check if /usr/local/psa/admin/conf/panel.ini file exists:
    # ls -l /usr/local/psa/admin/conf/panel.ini

    2.1 If it exists, open it in any text editor for editing, for example, using vi:
    # vi /usr/local/psa/admin/conf/panel.ini

    2.2 If this file does not exist, copy it's configuration from a sample file using this command:
    # cp /usr/local/psa/admin/conf/panel.ini.sample /usr/local/psa/admin/conf/panel.ini

    Then open it with any text editor, for example, vi:
    # vi /usr/local/psa/admin/conf/panel.ini

  3. Add the following lines to it (in any part of the file):
    [databaseManagement]
    features.phpMyAdmin.loginForm.enabled = on

    This makes it possible to access phpMyAdmin by browsing the following URL:

    https://<host-name-or-IP>:8443/phpmyadmin
For Plesk for Windows:

  1. Connect to the server via RDP
  2. Check if file C:\Program Files (x86)\Parallels\Plesk\admin\conf\panel.ini exists.
    2.1 If it exists, open it in any text editor;
    2.2 If it does not exist, copy sample configuration file %plesk_dir%admin\conf\panel.ini.sample to %plesk_dir%admin\conf\panel.ini and open it in any text editor;
  3. Add the following lines to it (in any part of the file):
    [databaseManagement]
    features.phpMyAdmin.loginForm.enabled = on

    This makes it possible to access phpMyAdmin by browsing the following URL:

    https://<host-name-or-IP>:8443/phpmyadmin
 
Back
Top