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 /
php80 /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
fpmctl
2.38
KB
-rwxr-xr-x
2025-02-25 04:05
fpmctl80
1.77
KB
-rwxr-xr-x
2024-07-15 07:22
lsphp
30.5
MB
-rwxr-xr-x
2024-07-15 07:22
memcapable
276.02
KB
-rwxr-xr-x
2024-07-15 07:32
memcat
83.51
KB
-rwxr-xr-x
2024-07-15 07:32
memcp
82.75
KB
-rwxr-xr-x
2024-07-15 07:32
memdump
73.44
KB
-rwxr-xr-x
2024-07-15 07:32
memerror
63.76
KB
-rwxr-xr-x
2024-07-15 07:32
memexist
71.78
KB
-rwxr-xr-x
2024-07-15 07:32
memflush
70.82
KB
-rwxr-xr-x
2024-07-15 07:32
memparse
35.4
KB
-rwxr-xr-x
2024-07-15 07:32
memping
76.16
KB
-rwxr-xr-x
2024-07-15 07:32
memrm
72.78
KB
-rwxr-xr-x
2024-07-15 07:32
memslap
121.76
KB
-rwxr-xr-x
2024-07-15 07:32
memstat
92.59
KB
-rwxr-xr-x
2024-07-15 07:32
memtouch
72.16
KB
-rwxr-xr-x
2024-07-15 07:32
pear
872
B
-rwxr-xr-x
2024-07-15 07:22
peardev
893
B
-rwxr-xr-x
2024-07-15 07:22
pecl
806
B
-rwxr-xr-x
2024-07-15 07:22
phar
15.03
KB
-rwxr-xr-x
2024-07-15 07:22
phar.phar
15.03
KB
-rwxr-xr-x
2024-07-15 07:22
php
30.56
MB
-rwxr-xr-x
2024-07-15 07:22
php-cgi
30.46
MB
-rwxr-xr-x
2024-07-15 07:22
php-config
6.13
KB
-rwxr-xr-x
2024-07-15 07:22
phpdbg
31.29
MB
-rwxr-xr-x
2024-07-15 07:22
phpize
4.48
KB
-rwxr-xr-x
2024-07-15 07:22
Save
Rename
#!/bin/sh ### BEGIN INIT INFO # Provides: php-fpm80 # 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-fpm80 daemon # Description: starts php-fpm80 daemon ### END INIT INFO exec="/usr/local/apps/php80/sbin/php-fpm" prog="php-fpm" lockfile=/var/lock/subsys/php-fpm80 pidfile=/var/run/php-fpm.pid OPTIONS="-R --pid /var/run/php-fpm.pid --fpm-config /usr/local/apps/php80/etc/php-fpm.conf -c /usr/local/apps/php80/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 $?