解压

tar -zxf redis-5.0.10.tar.gz

进入目录

cd redis-5.0.10

使用make进行安装

make install

创建开机启动脚本

接着使用自带的install_server.sh(在utils目录下)脚本创建开机启动脚本,运行:

./utils/install_server.sh

跟着提示,输入redis的配置文件路径,日志路径,可执行文件路径和持久化保存存储路径:

[root@localhost redis-5.0.10]# ./utils/install_server.sh
Welcome to the redis service installer
This script will help you easily set up a running redis server

Please select the redis port for this instance: [6379]
Selecting default: 6379
Please select the redis config file name [/etc/redis/6379.conf]
Selected default - /etc/redis/6379.conf
Please select the redis log file name [/var/log/redis_6379.log]
Selected default - /var/log/redis_6379.log
Please select the data directory for this instance [/var/lib/redis/6379]
Selected default - /var/lib/redis/6379
Please select the redis executable path [/usr/local/bin/redis-server]
Selected config:
Port : 6379
Config file : /etc/redis/6379.conf
Log file : /var/log/redis_6379.log
Data dir : /var/lib/redis/6379
Executable : /usr/local/bin/redis-server
Cli Executable : /usr/local/bin/redis-cli
Is this ok? Then press ENTER to go on or Ctrl-C to abort.
Copied /tmp/6379.conf => /etc/init.d/redis_6379
Installing service...

Successfully added to chkconfig!
Successfully added to runlevels 345!
Starting Redis server...
Installation successful!

完成后,在/etc/init.d/下会生成redis_端口.conf文件,可以方便的启动和暂停redis服务。

启动命令

/usr/local/bin/redis-server

客户端连接

/usr/local/bin/redis-cli