• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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