Redis Self-starter script

Source: Internet
Author: User

#!/bin/bash

# author

#date 2014-03-12

#chkconfig:-90 23

Pidfile= "/var/run/redis.pid"

#config/etc/redis/redis.conf


#source function Library.

. /etc/rc.d/init.d/functions


#defualt files

redis_conf=${redis_conf:-"/etc/redis/redis.conf"}

redis=${redis_bin:-"/usr/local/bin/redis-server"}

lockfile=${lockifle:-"/var/lock/subsys/redis"}


Start () {

# echo-n "Starting Redis:"

$redis $redis _conf 2>&1

Retval=$?

Echo $retval

[$retval-eq 0] && touch $lockfile $pidfile

Return $retval


}


Stop () {

Echo-n "Stopping Redis:"

Killproc $lockfile $redis #killporc function is defined in/etc/rc.d/init.d/functions, which is the closing process,

Retval=$?


Echo $retval

[$retval-eq 0] && rm-f $lockfile

Return $retval

}


Restart () {

Stop

Start

}



Case $ in

Start

Start

;;


Stop

Stop

;;


Restart

Restart

;;


Status

Status Redis

;;

*)

echo $ "Usage: $ {Start|stop|status|restart}"

Exit 2


Esac


Exit $?


Redis Self-starter script

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.