Home  >  Article  >  Database  >  What is the correct command to open and close redis under linux?

What is the correct command to open and close redis under linux?

王林
王林forward
2020-12-16 09:33:103867browse

What is the correct command to open and close redis under linux?

First connect to xshell, and then execute the following command:

(Learning video sharing: Programming video)

service network restar         #重启网络
ip addr       #查找ip
[root@localhost ~]# cd /usr/local/redis
[root@localhost redis]# ./bin/redis-server ./redis.conf 
[root@localhost redis]# ./bin/redis-cli 
127.0.0.1:6379> exit
[root@localhost redis]# ./bin/redis-cli shutdown
[root@localhost redis]# ps -ef | grep -i redis

Related recommendations: redis database tutorial

The above is the detailed content of What is the correct command to open and close redis under linux?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete