Centos7 Redis 3.2.0 开机启动

来源:互联网 发布:人机交互 知乎 编辑:程序博客网 时间:2024/05/21 17:28

开机自启动脚本

vi /etc/init.d/redis

脚本内容:

#!/bin/bash#chkconfig: 2345 80 90# Simple Redis init.d script conceived to work on Linux systems# as it does use of the /proc filesystem.REDISPORT=6379EXEC=/home/redis-3.2.0/src/redis-serverCLIEXEC=/home/redis-3.2.0/src/redis-cliPIDFILE=/var/run/redis.pidCONF="/home/redis-3.2.0/redis.conf"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        ;;    stop)        if [ ! -f $PIDFILE ]        then                echo "$PIDFILE does not exist, process is not running"        else                PID=$(cat $PIDFILE)                echo "Stopping ..."                $CLIEXEC -p $REDISPORT shutdown                while [ -x /proc/${PID} ]                do                    echo "Waiting for Redis to shutdown ..."                    sleep 1                done                echo "Redis stopped"        fi        ;;    *)        echo "Please use start or stop as first argument"        ;;esac


设置权限:

chmod 755 redis

测试是否正常:

/etc/init.d/redis start

使用redis-cli测试:

$ /home/redis-3.2.0/src/redis-cli -h 127.0.0.1 -p 6379 -a foobared  127.0.0.1:6379> set testname zhangsan  OK  127.0.0.1:6379> get testname  "zhangsan"    $ quit; 


设置开机自启动

chkconfig redis on

重启测试

reboot


0 0
原创粉丝点击