zz``centos暗转redis
https://www.jianshu.com/p/44b6f8126d99
学习文章:CentOS下Redis的安装
上面文章把安装写的很好了,我本来是想用Fabric写一个远程部署脚本,奈何很多命令在系统上直接执行是好的,在脚本里就不能用了,故这里记录下安装过程。
1、安装
- 下载最新的稳定版本,保存到/usr/src/redis/下
shell> sudo wget -P /usr/src/ http://download.redis.io/releases/redis-stable.tar.gz
- 解压 & 删除压缩包
shell> sudo tar -xzf /usr/src/redis-stable.tar.gz -C /usr/src/
shell> sudo rm -f /usr/src/redis-stable.tar.gz
- 编译安装
shell> cd /usr/src/redis-stable/
shell> make && make install
2、配置(下面省略sudo)
- 拷贝服务初始化脚本
shell> cp /usr/src/redis-stable/utils/redis_init_script /etc/init.d/redis
- 修改配置文件(默认监听端口6379)
shell> mkdir /etc/redis/
shell> cp /usr/src/redis-stable/redis.conf /etc/redis/6379.conf
# 开启守护进程选项
shell> sed -i 's/^daemonize no/daemonize yes/' /etc/redis/6379.conf
# 设置持久化路径
shell> sed -i 's/^dir \.\//dir \/var\/redis\//' /etc/redis/6379.conf
# 创建持久化路径
shell> mkdir /var/redis/
3、启动
shell> /etc/init.d/redis start
shell> /etc/init.d/redis stop
如果stop的时候提示.pid文件找不到,可以在启动是使用sudo(找不到是因为没有权限创建pid文件)