【笔记】太久不用redis忘记怎么后台登陆了

时间:2024-07-09 20:24:03

!首先启动虚拟机linux的centos7

2.启动finalshell 我的redis启动在根目录用

 redis-server redis.conf  --启动
 systemctl status redis  --查看redis状态 是否active

redis-cli -h centos的ip地址 -p 你要用的redis端口号(默认为6379) -a 你的centos7密码
然后会返回

Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
192.168.81.130:6379> ping
PONG

//测试是否连接成功

//一下是redis-cli那一场段的简便法
192.168.81.130:6379> auth centos7的密码
OK
192.168.81.130:6379> ping
PONG

 

打开resp

点击

总结:

在finalshell中进入redis界面

redis-cli -h 虚拟机ip地址 -p 端口号 -a redis密码

在finallshell后台启动 redis

redis-server redis.conf

输入shutdown就是通过finalshell停止你的虚拟机运作