• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Issue Cant login via hostname:8443, but over ip?

FYI

Basic Pleskian
Hi,

its confusing - i got installed Plesk on my VPS (Its not ne first time at all).

When i got the first login link i got it and filled in a password for the next time to login with "admin". Be safe - i changed it after that again in the web panel.

Now i try to login with admin and password via https://this.is.my.ip/ - working.
But if i try to login on https://domain.tld:8443/ with admin and password its not working cauz my password should be wrong :eek:

Anybody know what to do?
 
First check hostname via ssh
Code:
 hostname

second change the hostname if needed to your FQDN
Code:
 plesk bin server_pref --update -hostname host.example.com

Third
Restart sw-cp-server and sw-engine services:
Code:
service sw-cp-server restart
service sw-engine restart

Fourth If the hostname was not changed, use the native SystemD utility(CentOS7/Debian8+/Ubuntu16):

Code:
 hostnamectl set-hostname host.example.com

This for hostname
you may need to restart your server

Now lets move to login via hostname

Code:
plesk bin admin --enable-access-domain "server.example.com"

In this case, if there is a website with the specified name, it will become inaccessible because Plesk panel will be shown.

Code:
 plesk bin admin --enable-access-domain ""
 
Back
Top