Redis
Posted hi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Redis相关的知识,希望对你有一定的参考价值。
- 官网下载:https://redis.io/download
- sudo tar -zxvf redis-3.2.7.tar.gz
- mv redis-3.2.7 /usr/local/redis/
- cd redis-3.2.7
- sudo make
- cd src
- sudo make install
- 会安装到目录/usr/local/bin下:ls-l
-
redis-server /etc/redis/redis.conf redis-cli -p 6379
- 然后执行命令ping,若输出为pong,则证明服务成功启动。
-
PONG
- 执行命令:
-
set k1 helloworld get ki
-
127.0.0.1:6379> get k1 "helloworld" 127.0.0.1:6379> quit
-
ps -ef|grep redis
-
zhaoyun 73073 1502 0 18:41 ? 00:00:25 redis-server *:6379 zhaoyun 77403 73204 0 22:14 pts/4 00:00:00 grep --color=auto redis
转:http://blog.csdn.net/xiangwanpeng/article/details/54586087
:https://www.cnblogs.com/wangchunniu1314/p/6339416.html
以上是关于Redis的主要内容,如果未能解决你的问题,请参考以下文章