SILENT KILLERPanel

Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > site-packages > lvestats > lib > > commons


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/cloudlinux/venv/lib64/python3.11/site-packages/lvestats/lib//commons

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
__init__.py File 219 bytes May 30 2025 10:30:46.
argparse_utils.py File 11516 bytes May 30 2025 10:30:46.
dateutil.py File 5738 bytes May 30 2025 10:30:46.
decorators.py File 893 bytes May 30 2025 10:30:46.
func.py File 16268 bytes May 30 2025 10:30:46.
htpasswd.py File 2304 bytes May 30 2025 10:30:46.
litespeed.py File 6833 bytes May 30 2025 10:30:46.
logsetup.py File 4610 bytes May 30 2025 10:30:46.
proctitle.py File 2966 bytes May 30 2025 10:30:46.
profiler.py File 575 bytes May 30 2025 10:30:46.
progress.py File 1016 bytes May 30 2025 10:30:46.
sentry.py File 6313 bytes May 30 2025 10:30:46.
server_status.py File 1346 bytes May 30 2025 10:30:46.
sizeutil.py File 2653 bytes May 30 2025 10:30:46.
users_manager.py File 3042 bytes May 30 2025 10:30:46.

Reading File: //opt/cloudlinux/venv/lib64/python3.11/site-packages/lvestats/lib//commons/server_status.py

# coding=utf-8
#
# Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2019 All Rights Reserved
#
# Licensed under CLOUD LINUX LICENSE AGREEMENT
# http://cloudlinux.com/docs/LICENSE.TXT

import os
import errno

PID_FILE = '/var/run/lvestats.pid'
RUNNING = 0
STOPPED = 1
DEAD = 2

status_description = {
    RUNNING: "Server is running",
    STOPPED: "Server is not running, Use 'service lvestats start' command to start it",
    DEAD: "lvestats server is dead but pid file exists. Use 'service lvestats restart' command to restart it"
}


def check_server_status():
    """
    Read pid from file. If file is not exists, then server is stopped
    Send kill signal 0 to check if process exists.
    Return status.

    From http://linux.die.net/man/2/kill :
        "If sig is 0, then no signal is sent, but error checking is still performed;
        this can be used to check for the existence of a process ID or process group ID."

    errno.ESRCH == "No such process"
    :return:
    """
    try:
        with open(PID_FILE, encoding='utf-8') as pid_file:
            pid = pid_file.readline().strip()
    except (IOError, OSError):
        return STOPPED
    else:
        try:
            os.kill(int(pid), 0)
        except OSError as e:
            if e.errno == errno.ESRCH:
                return DEAD
        return RUNNING

SILENT KILLER Tool