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

httpsd.conf in plesk 9?

J

Jim Leavitt

Guest
Hi All,

Trying to update the hostname on a brand new plesk install. No domains installed on it yet, and I cant login to the panel. I am getting the "cant find localhost.localdomain" error. Was able to modify the httpsd.conf file in previous versions of the system, but in 9 that file doesn't exist?

Where is the file that I need to update to get the panel to redirect properly?

Thanks.
 
httpsd.conf does not exist due plesk doesn't use apache webserver anymore for the admin-panel :'(

ys
manuel
 
try this place /etc/sw-cp-server/applications.d/plesk.conf
 
Thanks guys, for your replys. However I still cant seem to get around this problem. The bizzare part is, the URL I am accessing is correct (https://actualservername:8443). but the error in the window is "Address not found" localhost.localdomain.

Its still trying to redirect me, but I cant find where to change it? Seems a little silly to me that I cant just change it in the CP and it work.

Any other ideas are greatly appreciated.

Thanks.
 
Found it!

For anybody who is having this problem. There are 3 fields within the misc table of the psa database which dont get updated when you update the hostname through the control panel.

Make sure you update

| sso_relay | https://localhost.localdomain:11444 |
| sso_server | https://localhost.localdomain:11443 |
| sso_server_user_url | https://localhost.localdomain:11444 |

to match what your hostname should be, also make sure to include the port numbers as well.

Thanks to all who submitted a reply.
 
Hi,

i have the same Problem.

Editing the /etc/hosts and /etc/sysconfig/network is not enough.

After the clean Installation i have changed the Hostname and i can not connect to the Control Panel under Port 8443.

I have changed the entries of the Table "misc" in the mysql DB "psa".
Befor:
| FullHostName | localhost.localdomain |
...
| sso_relay | https://localhost.localdomain:11444 |
| sso_server | https://localhost.localdomain:11443 |
| sso_server_user_url | https://localhost.localdomain:11444 |

After Editing with the mysql commands:

update psa.misc set val='plesk.domainname.com' where param='FullHostName';

update psa.misc set val='https://plesk.domainame.com:11444' where param='sso_relay';

update psa.misc set val='https://plesk.domainame.com:11443' where param='sso_server';

update psa.misc set val='https://plesk.domainame.com:11444' where param='sso_server_user_url';

I can login again to the control Panel :)
 
Back
Top