jilh 发表于 2014-2-12 09:52:46

redhat 下Redis安装

Redis 官网:http://redis.io/下载地址: http://redis.io/download

安装方法:



cd opt
wget http://download.redis.io/releases/redis-2.8.5.tar.gz
tar -zxf redis-2.8.5.tar.gz
cd redis-2.8.5
make
sudo make install
可以通过redis源代码里utils/install_server下的脚本简化配置工作

cd utils
sudo ./install_server.sh
install_server.sh在问你几个问题后会把redis安装为开机启动的服务。
相关安装提示信息如下:

# ./install_server.sh
Welcome to the redis service installer
This script will help you easily set up a running redis server

Please select the redis port for this instance:
Selecting default: 6379
Please select the redis config file name
Selected default - /etc/redis/6379.conf
Please select the redis log file name
Selected default - /var/log/redis_6379.log
Please select the data directory for this instance
Selected default - /var/lib/redis/6379
Please select the redis executable path
s#^port {4}$#port 6379#;s#^logfile .+$#logfile /var/log/redis_6379.log#;s#^dir .+$#dir /var/lib/redis/6379#;s#^pidfile .+$#pidfile /var/run/redis_6379.pid#;s#^daemonize no$#daemonize yes#;
Copied /tmp/6379.conf => /etc/init.d/redis_6379
Installing service...
./install_server.sh: line 178: update-rc.d: command not found
exists, process is already running or crashed
Installation successful!



我们对/etc/init.d/redis_6379进行修改,只有要“\n”删除并且输入回车,修改完毕后,保存。

主要是修改下面部分:

#/bin/sh
#Configurations injected by install_server below....

EXEC=/usr/local/bin/redis-server
CLIEXEC=/usr/local/bin/redis-cli
PIDFILE=/var/run/redis_6379.pid
CONF="/etc/redis/6379.conf"

REDISPORT="6379"

###############



启动服务:

service redis_6379 start

参考:

http://www.dzend.com/forum.php?mod=viewthread&tid=19



这里install_server.sh这个脚本, 但是执行的过程中提示“update-rc.d” command not found。

是因为 这个update-rc.d跟redhat系里面的chkconfig作用一样, 把/etc/init.d目录下的某个服务起停脚本加到系统的runlevel中去。

http://blog.chinaunix.net/uid-20788470-id-3086885.html



当然也可以通过下面的命令行来启动/停止服务

sudo /etc/init.d/redis_ start/end
启动redis客户端来验证安装

redis-cli
> keys *

页: [1]
查看完整版本: redhat 下Redis安装