centos7下redis和php-redis安装
2021-05-10 17:27
标签:conf 开放 prot mod cli config whereis ted 配置 centos7下redis和php-redis安装 标签:conf 开放 prot mod cli config whereis ted 配置 原文地址:https://www.cnblogs.com/L-ran/p/12059528.htmlcentos7下redis安装和php-redis扩展安装
//一直yes就可以了
yum install redis
//配置
whereis redis.conf
vi /etc/redis.conf /搜索 n下一个
bind 127.0.0.1 //远程开放
protected-mode no
requirepass 123456
//redis重启
systemctl restart redis
redis-cli
auth 123456
//临时配置
config get protected-mode
config set protected-mode no
//安装扩展 一直yes
yum install -y php72w-pecl-redis
//php重启
systemctl restart php-fpm
文章标题:centos7下redis和php-redis安装
文章链接:http://soscw.com/index.php/essay/84177.html