• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • 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.

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