• 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.

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