• The new Python extension is now available. It allows customers to deploy and manage WSGI-based Python applications on their websites directly from Plesk.
  • Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is 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 Is Down. >:(

dopeboy

Basic Pleskian
I Don't Know Why but apache2 is down all websites are down!
Code:
root@panel:/etc/network# ps aux | grep apache2
root       3802  0.0  0.0 148428 14284 ?        Ss   20:59   0:00 /usr/sbin/apache2 -k start
www-data   3805  0.0  0.0 144440  5056 ?        S    20:59   0:00 /usr/sbin/apache2 -k start
www-data   3806  0.0  0.0 445708 11840 ?        Sl   20:59   0:00 /usr/sbin/apache2 -k start
www-data   3807  0.0  0.0 445708 11840 ?        Sl   20:59   0:00 /usr/sbin/apache2 -k start
root       5640  0.0  0.0  14280   972 pts/1    S+   21:15   0:00 grep --color=auto apache2

iiFO6En.png



Code:
root@panel:/etc/network# netstat -anp | grep apache
tcp6       0      0 :::7080                 :::*                    LISTEN      3802/apache2
tcp6       0      0 :::7081                 :::*                    LISTEN      3802/apache2

Code:
netstat -tulpn

tcp6       0      0 :::7080                 :::*                    LISTEN      3802/apache2
tcp6       0      0 :::7081                 :::*                    LISTEN      3802/apache2
I'm not too good with "network" so for this i'm asking here.
Thanks for help.

and some time when i make an reboot i i'll view this
FFGJ7Rd.png

is an problem ? or is good ?
 
so my apache is running on port 7080, how i can reconfigure apache for plesk ?

Normally Plesk runs in reverse proxy mode with nginx running on port 80 and 443 and apache running on port 7080 and 7081 . Check and see that your nginx is running. If not try and restart it with:
service nginx restart. Check your log files to see what is going on with Nginx and Apache.

Some helpful commands:

1. To rebuild all Nginx / Apache configuration files:
Code:
/usr/local/psa/admin/bin/httpdmng --reconfigure-all

2. To enable or disable Nginx:
Code:
/usr/local/psa/admin/sbin/nginxmng --help
 
Normally Plesk runs in reverse proxy mode with nginx running on port 80 and 443 and apache running on port 7080 and 7081 . Check and see that your nginx is running. If not try and restart it with:
service nginx restart. Check your log files to see what is going on with Nginx and Apache.

Some helpful commands:

1. To rebuild all Nginx / Apache configuration files:
Code:
/usr/local/psa/admin/bin/httpdmng --reconfigure-all

2. To enable or disable Nginx:
Code:
/usr/local/psa/admin/sbin/nginxmng --help
thank you
 
Back
Top