centos6安装redis-2.8.19
1、检查安装依赖程序
1 2 3
| yum install gcc-c++ yum install -y tcl yum install wget
|
2、获取安装文件
1
| wget http://download.redis.io/releases/redis-2.8.13.tar.gz
|
3、解压文件
1 2
| tar -xzvf redis-2.8.19.tar.gz mv redis-2.8.19 /usr/local/redis
|
4、进入目录
5、编译安装
6、设置配置文件路径
1 2
| mkdir -p /etc/redis cp redis.conf/etc/redis
|
7、修改配置文件
1 2
| vi /etc/redis/redis.conf 仅修改: daemonize yes (no-->yes)
|
8、启动
1
| /usr/local/bin/redis-server /etc/redis/redis.conf
|
9、查看启动
10、使用客户端
1 2 3 4 5
| redis-cli >set name david OK >get name "david"
|
11.关闭客户端
12、开机启动配置
1
| echo "/usr/local/bin/redis-server /etc/redis/redis.conf &" >> /etc/rc.local
|
开机启动要配置在 rc.local
中,而 /etc/profile
文件,要有用户登录了,才会被执行。