Maison > Article > base de données > centos6 Linux安装redis 2.6.14
1、获取安装文件 wget http://download.redis.io/redis-stable.tar.gz 2、解压文件 tar xzvf redis-stable.tar.gz 3、进入目录 cd redis-stable 4、编译 make 5、安装 make install 6、设置配置文件路径 mkdir -p /etc/redis cp redis.conf /etc/redis 7、修
1、获取安装文件
wget http://download.redis.io/redis-stable.tar.gz
2、解压文件
tar xzvf redis-stable.tar.gz
3、进入目录
cd redis-stable
4、编译
make
5、安装
make install
6、设置配置文件路径
mkdir -p /etc/rediscp redis.conf /etc/redis
7、修改配置文件
vi /etc/redis/redis.conf8、启动
9、查看启动
10、使用客户端
redis-cli
>set name david
OK
>get name
"david"
转发:http://blog.csdn.net/teamlet/article/details/9456243
原文地址:centos6 Linux安装redis 2.6.14, 感谢原作者分享。