安装redis服务端

时间:2021-11-30 02:44:04

1. redis服务端和客户端的安装

[root@xxx ~]# cd /usr/local/src
[root@xxx src]# wget http://download.redis.io/releases/redis-4.0.9.tar.gz
[root@xxx src]# .tar.gz[root@xxx src]# mv redis-4.0.9 /usr/local/redis
[root@xxx src]# cd /usr/local/redis
[root@xxx redis]# make
[root@xxx redis]# make install

2. 修改redis.conf配置文件,使redis以守护进程的方式启动,即将redis.conf文件中 daemonize no 改成 daemonize yes

[root@xxx redis]# vim redis.conf

安装redis服务端

3. 启动服务端(通常redis-server在/usr/local/bin/redis-server),如果不确定,用which命令查找

[root@xxx redis-4.0.9]# which redis-server

4. 启动服务端(命令格式: redis-server的路径  redis配置文件的路径)

[root@xxx redis-4.0.9]# /usr/local/bin/redis-server /data/config/redis/redis.conf

5. 启动客户端(例如: redis-cli -h 127.0.0.1 -p 6379)

[root@xxx redis-]# redis-cli -h