码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu 安装&卸载 redis

时间:2018-05-17 16:01:28      阅读:582      评论:0      收藏:0      [点我收藏+]

标签:style   auto   stat   服务器   系统安装   remove   本机   命令   通过   

在 Ubuntu 系统安装 Redis 可以使用以下命令:

$ sudo apt-get update 
$ sudo apt-get install redis-server

启动 Redis

$ redis-server

查看 redis 是否启动?

$ redis-cli

以上命令将打开以下终端:

redis 127.0.0.1:6379>

127.0.0.1 是本机 IP ,6379 是 redis 服务端口。现在我们输入 PING 命令。

redis 127.0.0.1:6379> ping PONG

以上说明我们已经成功安装了redis。

检查Redis服务器系统进程

$ ps -aux|grep redis
redis 4162 0.1 0.0 10676 1420 ? Ss 23:24 0:00 /usr/bin/

$ redis-server /etc/redis/redis.conf
conan 4172 0.0 0.0 11064 924 pts/0 S+ 23:26 0:00 grep —color=auto redis

通过启动命令检查Redis服务器状态

$ netstat -nlt|grep 6379
tcp 0 0 127.0.0.1:6379 0.0.0.0:* LISTEN

通过启动命令检查Redis服务器状态

$ sudo /etc/init.d/redis-server status
redis-server is running

卸载redis

$ sudo apt-get purge --auto-remove redis-server

Ubuntu 安装&卸载 redis

标签:style   auto   stat   服务器   系统安装   remove   本机   命令   通过   

原文地址:https://www.cnblogs.com/dotnet-core/p/9051445.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!