> CentOS > CentOS教程 >

centos 6.x 设置redis启动

[root@localhost]# vim /etc/rc.d/init.d/redis

把如下内容放入

restart()
{
    echo -e "Restarting $DESC: $PROGNAME"
    stop
         start
}

list()
{
         ps aux | grep $PROGNAME
}

case $1 in
         start)
                   start
        ;;
         stop)
        stop
        ;;
         restart)
        restart
        ;;
         list)
        list
        ;;

         *)
        echo "Usage: $SCRIPTNAME {start|stop|restart|list}" >&2
        exit 1
        ;;
esac
exit 0

之后可以向服务一样去操作

service redis restart


 

(责任编辑:IT)