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

Apache stoped after upgrading to plesk 9.2.1

A

ali sayyed

Guest
Hello,
I have linux redhat 4 enterprise SE.
when I have upgraded the plesk to 9.2.1 the apache stopped and the sites still not activated until now.
ASAP,can any man help me?
Regards.
 
hi,

two options:

i can check your server to find the bug...

or enter

apache2 -k configtest

and post the output

ys
manuel :)
 
Try to suspend all Domains in plesk. Restart or try to start apache2 and after that's working fine. Active all domains.

This help me in many cases, because configfiles are completly new written to harddisk.
 
in my case, port 80 and 443 are already in used (changing the two ports in config makes httpd start)
if i do lsof -i tcp:80, here's what i get:
sshd 14815 root 3u IPv4 66608966 TCP *:http (LISTEN)
sshd 15740 root 3u IPv4 66608966 TCP *:http (LISTEN)
sshd 17405 root 3u IPv4 66608966 TCP *:http (LISTEN)
sshd 17850 root 3u IPv4 66608966 TCP *:http (LISTEN)
sshd 19096 root 3u IPv4 66608966 TCP *:http (LISTEN)
sshd 19126 root 3u IPv4 66608966 TCP *:http (LISTEN)
sshd 19480 root 3u IPv4 66608966 TCP *:http (LISTEN)
sshd 19587 root 3u IPv4 66608966 TCP *:http (LISTEN)
sshd 19719 root 3u IPv4 66608966 TCP *:http (LISTEN)
sshd 23283 root 3u IPv4 66608966 TCP *:http (LISTEN)

restarting sshd does not change anything
 
SELinux rules could be preventing Apache from startup:

Try this command:

# getenforce
Enforcing

If the response is "Enforcing" temporally disable it with the following command:

# setenforce 0

Try starting Apache:

# /etc/init.d/httpd start
Starting httpd: [ OK ]

Check status:

# /etc/init.d/httpd status
httpd (pid 11557 11556 11555 11554 11553 11552 11551 11550 11549 11548 11540) is running...
 
Back
Top