CentOS 7 安装 Redis 5 (单机 6379)
自己准备好 Redis 5 的安装包并上传至 /opt/ 下的 redis 文件夹下:
shell
cd /opt
mkdir redis
cd redis
准备好 Redis 所需的编译环境:
shell
yum -y install gcc
yum -y install gcc-c++
解压上传的 Redis 压缩包:
shell
tar -zxvf redis-5.0.3.tar.gz
解压后进入 Redis 解压目录执行安装:
shell
cd /opt/redis/redis-5.0.3
# 我们指定安装在 /usr/local/redis/ 下
# 如果不指定则会默认安装在 CentOS 7 的 /usr/local/bin 下
make && make install PREFIX=/usr/local/redis
安装完成后会在 /usr/local/redis/ 下生成一个 bin 目录(这是 Redis 的安装目录)
我们需要将Redis 的解压目录下的配置文件 redis.conf 复制到安装目录下
shell
cd /opt/redis/redis-5.0.3
cp redis.conf /usr/local/redis/bin/
进入 Redis 安装目录下修改 redis.conf :
shell
cd /usr/local/redis/bin/
vim redis.conf
修改内容如下:
bind 注释掉
protected-mode yes 修改为no
daemonize no 修改成 yes
appendonly no 修改成 yes
如果要配置集群可以开启 # cluster-enabled yes,不配置集群不用开启
进入 /usr/local/redis/bin/ 启动服务:
shell
./redis-server ./redis.conf
查看进程来确定 Redis 是否启动成功:
shell
ps -aux | grep redis
进入客户端:
shell
redis-cli -h 192.168.25.201 -p 6379
# 带上 -c 是表示启动的是 redis 集群
redis-cli -c -h 192.168.25.201 -p 6380
停止 Redis 服务:
shell
redis-cli -h 192.168.25.100 -p 6379 shutdown
强制关闭 Redis (开发中用的多):
shell
# 查端口号
ps -aux | grep redis
# 杀端口号
sudo kill -9 端口号