OS: CentOS6.4(x64)
参考网址:
http://www.cnblogs.com/haoxinyue/p/3620648.html
http://www.codeceo.com/article/centos-redis-setup.html
1、yum install tcl
2、下载(http://download.redis.io/releases/redis-3.2.3.tar.gz)
ZC: 官网上说,这是稳定版(Stable)。
ZC: 在 下载的页面 的下方,也有给出安装的步骤
3、安装
tar xzf redis-3.2.3.tar.gz
cd redis-3.2.3
make
4、具体其他配置看 README.md
ZC: 基本过程为:make -->make test-->make install (我在VMWare中安装32位的CentOS6.4时,执行"make test"的时候 出现关于tcl的错误信息,网上说不要去管它... 我还是重装了 改成VMWare中64位的英文版CentOS6.4)
4.1、"make install" --> just 把Redis的二进制文件 安装到目录"/usr/local/bin"中(默认路径,也可以带参数指定路径)
4.2、执行 utils目录下的install_server.sh脚本,可以通过向导的方式 指引你设置Redis。然后它就可以开机启动并且后台运行。下面是执行的过程:
[root@localhost utils]# ./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: [6379] #ZC: 我使用默认的端口
Selecting default: 6379
Please select the redis config file name [/etc/redis/6379.conf] #ZC: 我使用默认的配置文件(在运行本脚本时该目录该文件还不存在)
Selected default - /etc/redis/6379.conf
Please select the redis log file name [/var/log/redis_6379.log] #ZC: 我使用默认的日志文件(在运行本脚本时该目录该文件还不存在)
Selected default - /var/log/redis_6379.log
Please select the data directory for this instance [/var/lib/redis/6379] #ZC: #ZC: 我使用默认的数据文件(在运行本脚本时该目录该文件还不存在)
Selected default - /var/lib/redis/6379
Please select the redis executable path [/usr/local/bin/redis-server] #ZC: 如果没有执行"make install"的话,这里需要自己手动选择,执行过的话 这里显示的值就是默认值 直接回车即可
Selected config:
Port : 6379
Config file : /etc/redis/6379.conf
Log file : /var/log/redis_6379.log
Data dir : /var/lib/redis/6379
Executable : /usr/local/bin/redis-server
Cli Executable : /usr/local/bin/redis-cli
Is this ok? Then press ENTER to go on or Ctrl-C to abort. #ZC: 上面显示了一系列配置的信息,问你是否接受
Copied /tmp/6379.conf => /etc/init.d/redis_6379
Installing service...
Successfully added to chkconfig!
Successfully added to runlevels 345!
Starting Redis server...
Installation successful!
[root@localhost utils]#
5、
6、
7、
8、