首页 > 其他 > 详细

redis的启动脚本

时间:2018-12-02 14:19:19      阅读:155      评论:0      收藏:0      [点我收藏+]
#!/bin/sh #user wyyue #date 2018-12-02 #version redis:4.0.11 V1 . /etc/init.d/functions port=6380 ipaddr=10.0.0.98 server=/usr/local/redis6380/redis-server conf=/usr/local/redis6380/redis.conf custom=/usr/local/redis-4.0.11/src/redis-cli pidfile=/var/run/redis_6380.pid public(){ while [ -x /proc/$pid ] do echo "redis is stopping..." sleep 1 done action "redis stopped" /bin/true } start_redis(){ if [ -f $pidfile ];then action "redis is already running" /bin/true else $server $conf if [ $? -eq 0 ];then action "redis start success" /bin/true else action "redis start fail" /bin/false fi fi } stop_redis(){ if [ ! -f $pidfile ];then action "redis is already stoped" /bin/true else pid=$(cat $pidfile) passwd=`grep ‘requirepass‘ /usr/local/redis6380/redis.conf|awk ‘{print $2}‘|sed ‘s#"##g‘` if [ -z $passwd ];then $custom -h $ipaddr -p $port shutdown public else $custom -h $ipaddr -p $port -a $passwd shutdown public fi fi } status_redis(){ if [ -f $pidfile ];then action "redis is running " /bin/true else action "redis is stopped" /bin/false fi } restart_redis(){ stop_redis sleep 3 start_redis } case "$1" in start) start_redis ;; stop) stop_redis ;; restart) restart_redis ;; status) status_redis ;; *) echo "USAGE:$0{start|stop|status|restart}" ;; esac

redis的启动脚本

原文:http://blog.51cto.com/13754781/2324903

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!