Skip to content

redis安装-centos

  • 解压文件
shell
tar -xzf redis-6.2.3.tar.gz
  • 编译文件
shell
cd redis-6.2.3
make
  • 编译完成后将Redis安装到指定目录
shell
make PREFIX=/usr/local/redis install
  • 将redis编译目录中的redis.conf文件copy到安装的目录中
shell
cp redis.conf /usr/local/redis/
  • 后台启动、关闭保护模式、设置密码、关闭绑定ip(修改安装目录的redis.conf)
plain
daemonize yes
protected-mode no
requirepass 450103jzjJ
# bind 127.0.0.1
  • 启动关闭服务
shell
# 启动redis
./bin/redis-server ./redis.conf

# 关闭redis
./bin/redis-cli shutdown

# 查看redis服务进程
ps aux | grep redis

常用命令

# 输入密码
auth password
# 查看所有的key
keys * 
# 查看key过期时间
ttl key
# 根据key删除
del key
# 保存
set key value
# 获取值
get key
# 删除当前数据库中的所有Key
flushdb
# 删除所有数据库中的key
flushall

其他功能