讲述Centos下安装Redis的方法,配置后可以远程访问与scrapy-redies结合
Centos安装redis
目标:在
centos7
上安装redis并完成配置,提供给scrapy-redis
使用
下载安装包
1
2
3$ wget http://download.redis.io/releases/redis-5.0.4.tar.gz
$ tar xzf redis-5.0.4.tar.gz
$ cd redis-5.0.4安装依赖
1
$ yum install gcc
编译安装
1
$ make MALLOC=libc
进入目录安装
1
$ cd src && make install
修改配置
便于scrapy-redis 配置
将redis.conf 拷贝一份备用
1
$ /etc/redis/redis.conf
修改配置
1
2
3
4
5
6'''[终端]cd到目录'''
'''[终端]vi redis.conf 利用vim修改配置'''
【修改内容】
1. bind 127.0.0.1 注释掉(或设为 bind 0.0.0.0) 有的情况下用后者方法
2. protected-mode yes 后台模式
3. 修改密码 取消注释 requirepass 密码
linux 设置存档
编辑 sysctl.conf
配置文件
1 | vi /etc/sysctl.conf |
0系统不允许回写,可将参数vm.overcommit_memory = 1。
(如果没有这个参数,则另起一行增加参数 vm.overcommit_memory 配置,如下)
1 | vm.overcommit_memory = 1 |
生效配置1
sysctl -p
制定配置启动
1 | redis-server /usr/src/redis-5.0.4/redis.conf |