CentOS 7 yum 安裝與配置 Redis
CentOS 7 通過
yum
直接安裝Redis
失敗,提示No package redis available
CentOS預設的安裝源在官方的centos.org
上,而redis
在第三方的yum源裡,因此無法安裝
接下來,我們要解決無法安裝問題:
1、新增安裝源
- 非官方的
yum
推薦用fedora
的epel
倉庫,執行如下命令
yum install epel-release
2、安裝Redis
yum install -y redis
安裝最新的
Redis
請執行如下命令
需要安裝Remi的軟體源,請點選官網地址yum install -y http://rpms.famillecollet.com/enterprise/remi-release-7.rpm yum --enablerepo=remi install redis
3、啟動Redis
服務
systemctl start redis.service
4、檢測Redis
伺服器是否開啟
ps -ef | grep redis
5、Rdis
設定為開啟啟動
chkconfig redis on
# 或者
systemctl enable redis.service
6、修改Redis
配置
-
開啟遠端連線,redis預設只能localhost訪問,修改
/etc/redis.conf
配置檔案
bind 127.0.0.1
修改為bind 0.0.0.0
protected-mode yes
修改為protected-mode no
否則提示:redis.clients.jedis.exceptions.JedisDataException: DENIED Redis is running in protected mode
-
設定密碼
/etc/redis.conf
檔案中
在requirepass foobared
前面去掉註釋,將foobared
改為自己的密碼,我在這裡改為requirepass myPass
執行systemctl restart redis
重啟Redis
即生效
- 開啟客戶端命令
redis-cli
- 關閉
redis-cli
服務
redis-cli shutdown
7、開放埠6379、6380的防火牆
- 開啟6379
/sbin/iptables -I INPUT -p tcp --dport 6379 -j ACCEPT
- 開放6380
/sbin/iptables -I INPUT -p tcp --dport 6380 -j ACCEPT
相關文章
- CentOS 7 yum 安裝與配置 JDKCentOSJDK
- CentOS 7 yum安裝與配置 TomcatCentOSTomcat
- CentOS7下MySQL5.7安裝與配置(YUM)CentOSMySql
- CentOS安裝配置yumCentOS
- Centos安裝與配置RedisCentOSRedis
- CentOS 7 yum 安裝 MySQLCentOSMySql
- CentOS 7 yum 安裝 NGINXCentOSNginx
- Centos 7 yum 安裝nginxCentOSNginx
- CentOS7+Redis Live安裝配置CentOSRedis
- CentOS7 64位下MySQL5.7安裝與配置(YUM)CentOSMySql
- centos 7中 yum安裝jdkCentOSJDK
- CentOS 7 用yum安裝 MySQLCentOSMySql
- Centos7 yum安裝 DockerCentOSDocker
- 【redis】centOS安裝配置redisRedisCentOS
- CentOS 7安裝RedisCentOSRedis
- CentOS 7 安裝redisCentOSRedis
- CentOS redis安裝配置CentOSRedis
- CentOS 7 yum 安裝 PHP7.3CentOSPHP
- centos7 yum 安裝mariadbCentOS
- CentOS7 sudo 安裝與配置CentOS
- CentOS7安裝RedisCentOSRedis
- centos7通過yum安裝nginxCentOSNginx
- CentOS7下yum安裝MySQL 5.7CentOSMySql
- CentOS7 yum安裝MySQL5.7CentOSMySql
- yum的安裝與配置
- Centos-redis安裝配置CentOSRedis
- centos7中使用yum安裝NGINX安裝CentOSNginx
- Centos7-VMware+Centos7安裝配置CentOS
- CentOS配置Nginx官方的Yum源及yum安裝phpCentOSNginxPHP
- centos7 解除安裝和重新安裝yumCentOS
- CentOS7 安裝 Mysql 8:0 的yum安裝方式CentOSMySql
- CentOS 7 安裝配置 NFSCentOSNFS
- centos7使用yum安裝lnmp環境CentOSLNMP
- centos7安裝mysql5.7 使用yumCentOSMySql
- Linux – CentOS 7 yum方式快速安裝MongoDBLinuxCentOSMongoDB
- 在CentOS7中,使用yum安裝NginxCentOSNginx
- centos7中使用yum安裝OpenJDKCentOSJDK
- CentOS yum安裝mcryptCentOS