在Linux下安装Redis
Posted 孤丨焰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Linux下安装Redis相关的知识,希望对你有一定的参考价值。
1.将redis放在/opt目录下解压
tar -zxvf redis-6.2.3.tar.gz
2.安装gcc-c++编译环境
yum -y install gcc-c++
3.make命令编辑(在/opt/redis-6.2.3目录下执行)
make
make install
4.将redis.conf目录拷贝至/usr/local/bin/自定义目录下
cp /opt/redis-6.2.3/redis.conf gconfig
5.修改redis.conf文件配置
daemonize yes # 将daemonize修改为yes
6.启动服务
通过配置文件启动服务:
redis-server gconfig/redis.conf
使用客户端进行连接:
redis-cli -p 6379
7.关闭redis
127.0.0.1:6379> shutdown
not connected> exit
以上是关于在Linux下安装Redis的主要内容,如果未能解决你的问题,请参考以下文章