Install and configure redis under Linux and set up automatic startup

1. First download redis to the local, unzip it

2. Enter the unzipped folder to install

 

[root@localhost /]# cd redis
[root@localhost /]# make
.................................................( various installation information)
[root@localhost /]# make install
.................................................( various installation information)

 3. Copy the configuration files in the directory to /etc

 

 

[root@localhost /]# cp redis.conf /etc/

 4. Modify the configuration file to set redis to run in the background

 

 

[root@localhost /]# vim /etc/redis.conf

  Set daemonize to yes in the configuration file

 

5. Configure automatic startup

 

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

 Copy the following content in

 

 

#!/bin/sh
# chkconfig:2345 80 90
# Simple Redis init.d script conceived to work on Linux systems
# as it does use of the /proc filesystem.

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

PIDFILE=/var/run/redis_${REDISPORT}.pid
CONF="/etc/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 &
        be
        ;;
    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"
        be
        ;;
    *)
        echo "Please use start or stop as first argument"
        ;;
esac
#Setting permissions
[root@localhost ~]# chmod 777 /etc/init.d/redis
#start redis
[root@localhost ~]# service redis start

 
 

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326186343&siteId=291194637