Centos7下安裝redis並能使得外網訪問

1、安裝腳本

#!/bin/bash

#FileName: install_redis_centos7.sh
#Date: 20190523
#Author: LiLe
#Contact: 836217653@qq.com
#Version: V1.0
#Description: centos7下安裝redis


install_env(){
    wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
    sed -i  's/$releasever/7/g' /etc/yum.repos.d/CentOS-Base.repo
    yum repolist 
}


download(){
    wget http://download.redis.io/releases/redis-5.0.5.tar.gz
    tar xzf redis-5.0.5.tar.gz
    cd redis-5.0.5
    make
}

install_env
download

 

2、修改配置文件

bind需註釋掉,其他兩項參數設置爲no
#bind 127.0.0.1
protected-mode no
daemonize no

 

3、啓動

nohup redis-5.0.5/src/redis-server redis-5.0.5/redis.conf

 

注:
1)這裏啓動的時候必定要指定配置文件,他默認並不會加載
2)外網訪問要注意網絡以及安全組是否將端口開放
相關文章
相關標籤/搜索