redis常用命令汇总(新手必读)
2022-06-11
启动
redis-server + 配置文件
$ ./src/redis-server ../redis.conf
后台运行方式启动
命令同上,额外要做的是修改配置文件中的daemonize为yes。
# redis.conf
daemonize yes
停止运行
$ ./redis-cli shutdown
登录
$ ./redis-cli
>keys *
>get xxxxxx
>monitor
- keys * 所有key
- get 键名 获取单一值
- monitor 实时监测变化
配置密码
# redis.conf
requirepass foobared
密码方式登录
$ ./redis-cli -h 127.0.0.1 -p 6379 -a 123456
如果这种密码登录方式提示NOAUTH Authentication required.,那么就换种方式登录,先进入交互界面:
$ ./redis-cli -h 127.0.0.1 -p 6379
然后在交互界面中使用密码,其实就是把密码输入部分放在交互端,相对安全些。
> auth 123456
查看是否启动
$ ps -ef|grep redis
清理所有缓存数据
$ > FLUSHALL
参考资料
Redis官方命令:https://redis.io/commands/
(版权归cpury.com所有,转载请注明出处。)