• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • 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.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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