Skip to main content

Plesk Web Server Status Check

Checking the Status of Web Server Services in Plesk

Learn how to check if Apache and Nginx are running on your Plesk server. This guide provides troubleshooting steps and commands to restart web server services and resolve website accessibility issues effectively.
 |  XooNET  |  The Web
Checking Apache and Nginx Status in Plesk

When websites hosted on your Plesk server become inaccessible, one of the first troubleshooting steps is to check whether the web server services (Apache and Nginx) are running.

In Plesk, both Apache (httpd) and Nginx can be used together or separately to serve web pages. You can check their status using the following commands:

Checking Apache Status

To check whether Apache (httpd) is running, use the following command:

service httpd status

Possible Output:

  1. Apache is running:

    httpd.service - The Apache HTTP Server
    Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
    Active: active (running) since Fri 2025-03-30 10:15:42 UTC; 1h 30min ago

    This means Apache is up and running.

  2. Apache is stopped or not running:

    httpd.service - The Apache HTTP Server
    Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
    Active: inactive (dead)

    If Apache is inactive or dead, restart it using:

    service httpd start

    Or restart it using:

    service httpd restart

Checking Nginx Status

If Nginx is enabled in Plesk, you should also check its status using:

service nginx status

Possible Output:

  1. Nginx is running:

    nginx.service - nginx - high-performance web server
    Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled)
    Active: active (running) since Fri 2025-03-30 10:15:42 UTC; 1h 30min ago

    This means Nginx is operational.

  2. Nginx is stopped or not running:

    nginx.service - nginx - high-performance web server
    Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled)
    Active: inactive (dead)

    If Nginx is not running, properly restart it by disabling and re-enabling it:

    1. Connect to the server via SSH.

    2. Disable Nginx:

      plesk sbin nginxmng -d
    3. Enable Nginx:

      plesk sbin nginxmng -e

Additional Troubleshooting Steps

If restarting the web server services does not resolve the issue, try the following:

  • Check for Errors in Logs:

    • Apache logs: /var/log/httpd/error_log

    • Nginx logs: /var/log/nginx/error.log

  • Verify That Ports 80 and 443 Are Open:

    netstat -tulnp | grep -E "(80|443)"
  • Check Firewall Settings:

    iptables -L -n

    or for firewalld:

    firewall-cmd --list-all

By checking the status of Apache and Nginx, along with reviewing logs and firewall settings, you can quickly diagnose and resolve web server issues in Plesk.


More Coverage

Resetting article hits in Joomla ensures accurate tracking of engagement. This guide provides simple steps to reset article hit counts using phpMyAdmin, helping you maintain precise visitor data for better content performance and website monitoring.
If your Smart Search submenu items disappear after upgrading Joomla, you can restore them by executing SQL queries in phpMyAdmin. Follow these steps to safely modify your database and recover missing admin menu entries.
If your WordPress site isn't loading properly or images aren't showing up in Plesk, the issue may lie with your ModSecurity configuration. This step-by-step guide helps you switch the firewall settings to fix the problem and get your WordPress site working smoothly again.