• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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