Linux下Reids的安装和使用
Posted 一心行走
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下Reids的安装和使用相关的知识,希望对你有一定的参考价值。
简单记录一下
redis的官网:https://redis.io/
官网介绍:
Installation
Download, extract and compile Redis with:
$ wget http://download.redis.io/releases/redis-3.2.9.tar.gz
$ tar xzf redis-3.2.9.tar.gz
$ cd redis-3.2.9
$ make
The binaries that are now compiled are available in the src
directory. Run Redis with:
$ src/redis-server
You can interact with Redis using the built-in client:
$ src/redis-cli redis> set foo bar OK redis> get foo "bar"
报错问题如下:
修改redis.conf
注释掉bind IP
将protected-mode 设置为no
服务端启动:redis-server redis.conf
客户端连接: redis-cli -h pid -p 6379
以上是关于Linux下Reids的安装和使用的主要内容,如果未能解决你的问题,请参考以下文章