redis安装

1. 获取源码包

[root@localhost ~]# wget http://download.redis.io/releases/redis-5.0.7.tar.gz

2. 解压编译安装

[root@localhost ~]# tar -zxf redis-5.0.7.tar.gz
[root@localhost ~]# cd redis-5.0.7
[root@localhost ~/redis-5.0.7]# make && make install

3. 添加到系统服务

[root@localhost ~/redis-5.0.7]# bash 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] 6379
Please select the redis config file name [/etc/redis/6379.conf] /etc/redis/6379.conf
Please select the redis log file name [/var/log/redis_6379.log] /var/log/redis_6379.log
Please select the data directory for this instance [/var/lib/redis/6379] /var/lib/redis/6379
Please select the redis executable path [/usr/local/bin/redis-server] /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!

4. 开放端口

[root@localhost ~]# firewall-cmd --zone=public --add-port=6379/tcp
[root@localhost ~]# firewall-cmd --zone=public --add-port=6379/tcp --permanent

5. 启动

[root@localhost ~]# systemctl start redis_6379
原文地址:https://www.cnblogs.com/sswind/p/12117962.html