Ubuntu安装Redis7.0.2

1、安装依赖

sudo apt install pkg-config

2、安装Redis(将 redis-7.0.2.tar.gz 放到 /usr/local 下)

sudo tar zxvf redis-7.0.2.tar.gz
mv redis-7.0.2 redis
cd redis
sudo make -j8
sudo make install

3、修改配置文件

sudo vi /usr/local/redis/redis.conf

主要配置修改

bind 0.0.0.0
daemonize yes

4、启动脚本

sudo vi /etc/init.d/redis
#!/bin/sh
#
# Simple Redis init.d script conceived to work on Linux systems
# as it does use of the /proc filesystem.

### BEGIN INIT INFO
# Provides:     redis_6379
# Default-Start:        2 3 4 5
# Default-Stop:         0 1 6
# Short-Description:    Redis data structure server
# Description:          Redis data structure server. See https://redis.io
### END INIT INFO

REDISPORT=6379
EXEC=/usr/local/redis/src/redis-server
CLIEXEC=/usr/local/redis/src/redis-cli

PIDFILE=/var/run/redis_${REDISPORT}.pid
CONF="/usr/local/redis/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

设置可执行权限

sudo chmod +x /etc/init.d/redis

重新加载服务的配置文件

sudo systemctl daemon-reload

启动

sudo systemctl start redis

自启

sudo systemctl enable redis

停止

sudo systemctl stop redis

 

posted @ 2022-06-23 16:19  缤纷世界  阅读(636)  评论(0编辑  收藏  举报