• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • Our UX team believes in the in the power of direct feedback and would like to invite you to participate in interviews, tests, and surveys.
    To stay in the loop and never miss an opportunity to share your thoughts, please subscribe to our UX research program. If you were previously part of the Plesk UX research program, please re-subscribe to continue receiving our invitations.
  • 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.

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