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

Apache 2 Test Page after installation

Can you confirm, that your VirtualHost is entered in the main vhost files of Plesk?
And if, if all information are all correct (path, ip, i.e.)
 
Did that, think i tried everything but i just can't spot the issue. When i try to "preview" the site via Plesk Preview i get

Error occured.
couldn't connect to host

Is that something that makes sense to you ?
 
Hi HafsteinnM,

not really. Is there any possibility to get an SSH login via PM? Or Remote Desktop while you are connected?
Then I could have a look at it without changing everything.

Glad to hear from you.
 
After hours and hours of debugging and searching I found the reason and the solution.

Situation:
Domain with hosting created, after reload of http website won't displayed (only the default website from plesk)

Reason:
In Tools > IP Addresses 2 or more IPs were added, but the main IP had an other Netmask.
Moving the page to the first one (internal ip) allowed me to access the page internally.

Solution:
You have to edit the IP(s) or to delete and recreate them so that all IP(s) have the same Netmask.
After that, all were able to access the websites.

If you can't change the IP, you can delete it via mysql (experimental):

mysql -uadmin -p`cat /etc/psa/.psa.shadow`
use psa;
select * from IP_Addresses WHERE ip_address = '<YOUR IP>';

#Write down the ID
DELETE FROM IP_Addresses WHERE id = '<ID>';
DELETE FROM ip_pool WHERE ip_address_id = '<ID>';

Afterwards you can create the IP again with the correct Netmask.

Be sure, that you have moved all connected domains to another IP!
 
Back
Top