• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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