首页  >  文章  >  数据库  >  linux下正确开启关闭redis的命令是什么

linux下正确开启关闭redis的命令是什么

王林
王林转载
2020-12-16 09:33:103867浏览

linux下正确开启关闭redis的命令是什么

首先连接xshell,然后执行如下命令即可:

(学习视频分享:编程视频

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

相关推荐:redis数据库教程

以上是linux下正确开启关闭redis的命令是什么的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:csdn.net。如有侵权,请联系admin@php.cn删除