标签: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。
$ 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
$ netstat -nlt|grep 6379 tcp 0 0 127.0.0.1:6379 0.0.0.0:* LISTEN
$ sudo /etc/init.d/redis-server status redis-server is running
卸载redis
$ sudo apt-get purge --auto-remove redis-server
标签:style auto stat 服务器 系统安装 remove 本机 命令 通过
原文地址:https://www.cnblogs.com/dotnet-core/p/9051445.html