Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
apps /
php82 /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
fpmctl
2.38
KB
-rwxr-xr-x
2025-02-25 04:04
fpmctl82
1.77
KB
-rwxr-xr-x
2024-12-20 10:16
lsphp
36.88
MB
-rwxr-xr-x
2024-12-20 10:16
memcapable
276.02
KB
-rwxr-xr-x
2024-12-20 10:24
memcat
83.51
KB
-rwxr-xr-x
2024-12-20 10:24
memcp
82.75
KB
-rwxr-xr-x
2024-12-20 10:24
memdump
73.44
KB
-rwxr-xr-x
2024-12-20 10:24
memerror
63.76
KB
-rwxr-xr-x
2024-12-20 10:24
memexist
71.78
KB
-rwxr-xr-x
2024-12-20 10:24
memflush
70.82
KB
-rwxr-xr-x
2024-12-20 10:24
memparse
35.4
KB
-rwxr-xr-x
2024-12-20 10:24
memping
76.16
KB
-rwxr-xr-x
2024-12-20 10:24
memrm
72.78
KB
-rwxr-xr-x
2024-12-20 10:24
memslap
121.76
KB
-rwxr-xr-x
2024-12-20 10:24
memstat
92.59
KB
-rwxr-xr-x
2024-12-20 10:24
memtouch
72.16
KB
-rwxr-xr-x
2024-12-20 10:24
pear
872
B
-rwxr-xr-x
2024-12-20 10:16
peardev
893
B
-rwxr-xr-x
2024-12-20 10:16
pecl
806
B
-rwxr-xr-x
2024-12-20 10:16
phar
14.9
KB
-rwxr-xr-x
2024-12-20 10:16
phar.phar
14.9
KB
-rwxr-xr-x
2024-12-20 10:16
php
36.96
MB
-rwxr-xr-x
2024-12-20 10:16
php-cgi
36.84
MB
-rwxr-xr-x
2024-12-20 10:16
php-config
6.35
KB
-rwxr-xr-x
2024-12-20 10:16
phpdbg
37.56
MB
-rwxr-xr-x
2024-12-20 10:16
phpize
4.48
KB
-rwxr-xr-x
2024-12-20 10:16
Save
Rename
#!/bin/sh ### BEGIN INIT INFO # Provides: php-fpm82 # Required-Start: $local_fs $remote_fs $network $syslog # Required-Stop: $local_fs $remote_fs $network $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: starts php-fpm82 daemon # Description: starts php-fpm82 daemon ### END INIT INFO exec="/usr/local/apps/php82/sbin/php-fpm" prog="php-fpm" lockfile=/var/lock/subsys/php-fpm82 pidfile=/var/run/php-fpm.pid OPTIONS="-R --pid /var/run/php-fpm.pid --fpm-config /usr/local/apps/php82/etc/php-fpm.conf -c /usr/local/apps/php82/etc/php.ini" start() { [ -x $exec ] || exit 5 echo -n "Starting $prog: " if [ ! -f $pidfile ]; then #groupadd emps > /dev/null 2>&1 #useradd -r -g emps emps > /dev/null 2>&1 $exec $OPTIONS if [ $? = 0 ]; then if [ -d /var/lock/subsys ] ; then touch $lockfile fi echo "[ OK ]" fi else echo "$prog already running" fi return 0 } stop() { echo -n "Stopping $prog: " if [ -f $pidfile ]; then PID=`cat $pidfile` kill $PID > /dev/null 2>&1 PID=0 if [ -f $lockfile ] ; then rm -rf $lockfile fi sleep 1 rm -rf ${pidfile} echo "[ OK ]" else echo "$prog stopped" fi return 0 } status() { if [ ! -f $pidfile ] ; then echo "$prog stopped" else PID=`cat $pidfile` echo "$prog (pid $PID) is running..." fi } restart() { stop start } reload() { restart } force_reload() { restart } case "$1" in start) $1 ;; stop) $1 ;; restart) $1 ;; reload) $1 ;; status) $1 ;; force-reload) force_reload ;; *) echo "Usage: $0 {start|stop|restart|reload|status|force-reload}" exit 2 esac exit $?