先创建个redis的包,进入里面
wget https://download.redis.io/releases/redis-5.0.14.tar.gz
make &&make install
安装成功之后查看redis在哪里安装
which redis-server
进入安装目录(/usr/redis)的 bin 下面,并启动 redis
出现以下即为成功
redis.conf (136行)文件将里面的 daemonize no 改成 yes #设置后台启动
启动查看一下进程
启动 redis? ? ? ? ./redis-server ./redis.conf?
在配置文件redis.conf 507行的位置,需要客户端连接的话需要设置密码,需要设置密码的把注释取消修改后面密码即可
requirepass 密码? ?
?bind 127.0.0.1? #注释掉绑定本机,才可以远程连接访问
auth 密码,这里需要登录
或者
直接可以使用密码进行连接
./redis-cli shutdown
./redis-cli -p 6379 -a yyl -h 127.0.0.1 shutdown
服务启动的时候 daemonize 改为 no
vim /lib/systemd/system/redis.service
里面写入(路径和密码要注意)
[Unit]
Description=redis
After=network.target
[Service]
ExecStart=/usr/local/bin/redis-server /usr/local/bin/redis.conf
ExecStop=/usr/local/bin/redis-cli -h 127.0.0.1 -p 6379 -a root shutdown
[Install]
WantedBy=multi-user.target
刚刚配置的服务需要让 systemctl 能识别,就必须刷新配置
systemctl daemon-reload 刷新配置
systemctl enable redis 开机自启
systemctl status redis redis 状态
systemctl start redis 开启 redis
systemctl stop redis 关闭 redis
systemctl disable redis 禁止开机自启
默认 16 个数据库,类似数组下标从 0 开始,初始默认使用 0 号库
dbsize 查看当前数据库的 key 的数量
flushdb 清空当前库
flushall 通杀全部库
keys * 获取当前库中的所有key
select 0 选择第一个库
move key 1 将当前的数据库 key 移动到某个数据库,目标库有,则不能移动
randomkey 从当前数据库中随机返回
type key 类型
del key 删除 key
exists key 判断是否存在 key
expire key 10 为给定的key设置过期时间 单位是秒
pexpire key 1000 给定的key设置过期时间 单位:毫秒
persist key 删除key的过期时间
ttl key 查看还有多少秒过期,-1 表示永不过期,-2 表示已过期