linux查看redis是否启动,及启动redis服务

1.查看redis进程

ps -aux|grep redis

没有服务启动

[root@iZwz96ociz0latwbibexarZ logs]# ps -aux|grep redis
root      1309  0.0  0.0 112660   976 pts/0    S+   09:28   0:00 grep --color=auto redis

有服务启动

[root@iZwz96ociz0latwbibexarZ redis]# ps -aux|grep redis
root      1313  0.1  0.2 177616 17736 ?        Ssl  09:32   0:00 ./redis-server *:6379
root      1319  0.0  0.0 112660   976 pts/0    S+   09:33   0:00 grep --color=auto redis

 

2.查找redis安装目录

 whereis redis

> whereis redis
redis: /usr/local/redis
我们可以看到redis在该目录下安装,然后找到配置文件redis.conf

 

3.找到redis.conf文件所在目录

[root@iZwz96ociz0latwbibexarZ redis]# find /usr/local/redis/ -name redis.conf
/usr/local/redis/redis.conf

 

4.启动redis服务  

[root@iZwz96ociz0latwbibexarZ redis]# ./redis-server /usr/local/redis/redis.conf

 

其他

5.redis修改密码

修改配置文件:

1. vim redis.conf

2.requirepass 123  //指定密码123

 

6.linux下进入redis

[root@iZwz96ociz0latwbibexarZ redis]# ./redis-cli -h 192.168.102.122 -p 6379 -a //密码

 

7.退出客户端。

quit

 

posted @ 2022-07-18 10:17  tomingto  阅读(21893)  评论(0编辑  收藏  举报