Redis启动的时候就是通过redis.config启动的
#配置文件对大小写不敏感
#单位 unit
#包含 include 可以包含其他文件
#网络 network
bind 127.0.0.1 00 --绑定ip
protected-mode yes --保护模式
port 6379 --端口
#通用 general
deamonize yes --以守护进程方式开启,默认是no
pidfile /var/run/redis_6379.pid
Redis启动的时候就是通过redis.config启动的
#配置文件对大小写不敏感
#单位 unit
#包含 include 可以包含其他文件
#网络 network
bind 127.0.0.1 00 --绑定ip
protected-mode yes --保护模式
port 6379 --端口
#通用 general
deamonize yes --以守护进程方式开启,默认是no
pidfile /var/run/redis_6379.pid