xml代码:
[[email protected] src]# wget -c http://redis.googlecode.com/files/redis-2.4.7.tar.gz [[email protected] src]# tar -zxv -f redis-2.4.7.tar.gz [[email protected] src]# cd /usr/local/src/redis-2.4.7 [[email protected] redis-2.4.7]# make #编译,编译完成后就可以测试使用了,但是为了做成后台服务,最好把它安装到系统上 [[email protected] redis-2.4.7]# make install #安装会把redis的命令被拷贝到/usr/local/bin下面
配置redis.conf
[[email protected] redis-2.4.7]# cp ./redis.conf /etc/redis.conf 把daemonize no 改成 daemonize yes,这样启动redis时就会成会后台服务 useradd redis mkdir -p /var/lib/redis mkdir -p /var/log/redis chown redis.redis /var/lib/redis #db文件放在这里,要修改redis.conf的dir属性
时间: 2024-11-04 23:34:37