欢迎投稿

今日深度:

Linux下Redis开机自启(Centos),rediscentos

Linux下Redis开机自启(Centos),rediscentos


转载自 : http://www.cnblogs.com/silent2012/p/4157728.html

1、设置redis.conf中daemonize为yes,确保守护进程开启。

2、编写开机自启动脚本

vi /etc/init.d/redis

脚本内容如下:

复制代码

# chkconfig: 2345 10 90  
# description: Start and Stop redis   

PATH=/usr/local/bin:/sbin:/usr/bin:/bin   
REDISPORT=6379  
# 自己的redis-server路径(需要自己更改)
EXEC=/usr/local/bin/redis-server   
REDIS_CLI=/usr/local/bin/redis-cli   

PIDFILE=/var/run/redis.pid
# 自己的redis.conf 路径(需要自己更改)
CONF="/opt/local/redis/redis.conf"  
AUTH="1234"  

case "$1" in   
        start)   
                if [ -f $PIDFILE ]   
                then   
                        echo "$PIDFILE exists, process is already running or crashed."  
                else  
                        echo "Starting Redis server..."  
                        $EXEC $CONF   
                fi   
                if [ "$?"="0" ]   
                then   
                        echo "Redis is running..."  
                fi   
                ;;   
        stop)   
                if [ ! -f $PIDFILE ]   
                then   
                        echo "$PIDFILE exists, process is not running."  
                else  
                        PID=$(cat $PIDFILE)   
                        echo "Stopping..."  
                       $REDIS_CLI -p $REDISPORT  SHUTDOWN    
                        sleep 2  
                       while [ -x $PIDFILE ]   
                       do  
                                echo "Waiting for Redis to shutdown..."  
                               sleep 1  
                        done   
                        echo "Redis stopped"  
                fi   
                ;;   
        restart|force-reload)   
                ${0} stop   
                ${0} start   
                ;;   
        *)   
               echo "Usage: /etc/init.d/redis {start|stop|restart|force-reload}" >&2  
                exit 1  
esac

复制代码
3、写完后保存退出VI

4、设置权限

cd /etc/init.d/

chmod 755 redis

5、启动测试

/etc/init.d/redis start

启动成功会提示如下信息:

Starting Redis server…
Redis is running…
使用redis-cli测试:

]# ./usr/local/bin/redis-cli
127.0.0.1:6379> ping
PONG
127.0.0.1:6379> ping
PONG
127.0.0.1:6379> exit

6、设置开机自启动

init.d]# chkconfig redis on

7、关机重启测试

init.d]# reboot

然后在用redis-cli测试即可。

转载自 : http://www.cnblogs.com/silent2012/p/4157728.html

www.htsjk.Com true http://www.htsjk.com/redis/35608.html NewsArticle Linux下Redis开机自启(Centos),rediscentos 转载自 : http://www.cnblogs.com/silent2012/p/4157728.html 1、设置redis.conf中daemonize为yes,确保守护进程开启。 2、编写开机自启动脚本 vi /etc/init .d /redis 脚本内...
相关文章
    暂无相关文章
评论暂时关闭