[root@server1 ~]# tar zxf redis-5.0.3.tar.gz [root@server1 ~]# ls redis-5.0.3 redis-5.0.3.tar.gz [root@server1 ~]#
2.下载安装编译所需gcc
yum install -y gcc
3.make && make install
[root@server1 ~]# cd redis-5.0.3/ [root@server1 redis-5.0.3]# ls 00-RELEASENOTES INSTALL runtest tests BUGS Makefile runtest-cluster utils CONTRIBUTING MANIFESTO runtest-sentinel COPYING README.md sentinel.conf deps redis.conf src [root@server1 redis-5.0.3]# make [root@server1 ~]# cd src/ [root@server1 src]# make install
4.安装
[root@server1 redis-5.0.3]# cd utils/ [root@server1 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!