centos7下redis和php-redis安装
Posted 大千世界
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7下redis和php-redis安装相关的知识,希望对你有一定的参考价值。
centos7下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安装的主要内容,如果未能解决你的问题,请参考以下文章