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 /
php56 /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
fpmctl
2.38
KB
-rwxr-xr-x
2025-02-25 04:06
fpmctl56
1.74
KB
-rwxr-xr-x
2024-10-29 09:22
lsphp
22.63
MB
-rwxr-xr-x
2024-10-29 09:21
memcapable
276.02
KB
-rwxr-xr-x
2024-10-29 09:28
memcat
83.51
KB
-rwxr-xr-x
2024-10-29 09:28
memcp
82.75
KB
-rwxr-xr-x
2024-10-29 09:28
memdump
73.44
KB
-rwxr-xr-x
2024-10-29 09:28
memerror
63.76
KB
-rwxr-xr-x
2024-10-29 09:28
memexist
71.78
KB
-rwxr-xr-x
2024-10-29 09:28
memflush
70.82
KB
-rwxr-xr-x
2024-10-29 09:28
memparse
35.4
KB
-rwxr-xr-x
2024-10-29 09:28
memping
76.16
KB
-rwxr-xr-x
2024-10-29 09:28
memrm
72.78
KB
-rwxr-xr-x
2024-10-29 09:28
memslap
121.76
KB
-rwxr-xr-x
2024-10-29 09:28
memstat
92.59
KB
-rwxr-xr-x
2024-10-29 09:28
memtouch
72.16
KB
-rwxr-xr-x
2024-10-29 09:28
pear
872
B
-rwxr-xr-x
2024-10-29 09:12
peardev
893
B
-rwxr-xr-x
2024-10-29 09:12
pecl
806
B
-rwxr-xr-x
2024-10-29 09:12
phar
14.49
KB
-rwxr-xr-x
2024-10-29 09:22
phar.phar
14.49
KB
-rwxr-xr-x
2024-10-29 09:22
php
22.72
MB
-rwxr-xr-x
2024-10-29 09:21
php-cgi
22.61
MB
-rwxr-xr-x
2024-10-29 09:21
php-config
5.67
KB
-rwxr-xr-x
2024-10-29 09:22
phpize
4.47
KB
-rwxr-xr-x
2024-10-29 09:22
Save
Rename
#!/bin/sh # # php-fpm Start/Stop the php-fpm server # # chkconfig: - 85 15 # description: php56-fpm server ### BEGIN INIT INFO # Provides: php56-fpm Server # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start and Stop php56-fpm Server ### END INIT INFO exec="/usr/local/apps/php56/sbin/php-fpm" prog="php-fpm" lockfile=/var/lock/subsys/php-fpm56 pidfile=/usr/local/apps/php56/var/php-fpm.pid OPTIONS="-R --pid /usr/local/apps/php56/var/php-fpm.pid --fpm-config /usr/local/apps/php56/etc/php-fpm.conf -c /usr/local/apps/php56/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 $?