注意:這里的腳本bind修改后為 0.0.0.0
#!/bin/bash #yum源 echo -e "\033[31m =====正在驗(yàn)證當(dāng)前為僅主機(jī)還是NAT模式===== \033[0m" ping -c1 -W1 www.baidu.com > /dev/null if [ $? -eq 0 ];then echo -e "\033[31m 檢測(cè)當(dāng)前為NAT模式,為您配置在線yum源 \033[0m" mkdir -p /etc/yum.repos.d/repo.bak mv -f /etc/yum.repos.d/* /etc/yum.repos.d/repo.bak > /dev/null wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo > /dev/null yum clean all > /dev/null yum list > /dev/null echo -e "\033[31m 在線源已配置完成 \033[0m" else echo -e "\033[31m 檢測(cè)當(dāng)前為僅主機(jī)模式,為您配置本地yum源 \033[0m" mount /dev/sr0 /mnt > /dev/null cd /etc/yum.repos.d/ mkdir -p /etc/yum.repos.d/repo.bak mv -f /etc/yum.repos.d/* /etc/yum.repos.d/repo.bak > /dev/null echo '[local] name=local baseurl=file:///mnt enabled=1 gpgcheck=0' > /etc/yum.repos.d/local.repo yum clean all > /dev/null yum makecache > /dev/null df -h | grep "/mnt" if [ $? -ne 0 ];then echo -e "\033[31m 檢測(cè)當(dāng)前為僅主機(jī)模式,但光盤未連接! \033[0m" else echo -e "\033[31m 本地yum源已配置完成 \033[0m" fi fi #關(guān)閉防火墻 systemctl stop firewalld setenforce 0 yum install -y gcc gcc-c++ make rpm -q expect rpm -q tcl yum -y install expect cd /opt tar zxvf redis-5.0.7.tar.gz -C /opt/ cd /opt/redis-5.0.7/ make make PREFIX=/usr/local/redis install #由于Redis源碼包中直接提供了Makefile 文件,所以在解壓完軟件包后,不用先執(zhí)行./configure進(jìn)行配置,可直接執(zhí)行make與make install 命令進(jìn)行安裝。 #在/utils里執(zhí)行軟件包提供的install_server.sh腳本文件設(shè)置Redis服務(wù)所需要的相關(guān)配置文件 cd /opt/redis-5.0.7/utils #開(kāi)始免交換執(zhí)行 /usr/bin/expect EOF #expect開(kāi)始標(biāo)志 spawn ./install_server.sh #Please select the redis port for this instance: [6379] expect "instance" send "\r" #Please select the redis config file name [/etc/redis/6379.conf] expect "config" send "\r" #Please select the redis log file name [/var/log/redis_6379.log] expect "log" send "\r" #Please select the data directory for this instance [/var/lib/redis/6379] expect "data" send "\r" #Please select the redis executable path [] expect "executable" send "/usr/local/redis/bin/redis-server\r" #Is this ok? Then press ENTER to go on or Ctrl-C to abort. expect "abort" send "\r" expect eof EOF ln -s /usr/local/redis/bin/* /usr/local/bin/ netstat -natp | grep redis /etc/init.d/redis_6379 restart /etc/init.d/redis_6379 status sed -i '/bind 127.0.0.1/c bind 0.0.0.0' /etc/redis/6379.conf sed -i 's/appendonly no/appendonly yes/' /etc/redis/6379.conf /etc/init.d/redis_6379 restart /etc/init.d/redis_6379 status
#!/bin/bash #yum源 echo -e "\033[31m =====正在驗(yàn)證當(dāng)前為僅主機(jī)還是NAT模式===== \033[0m" ping -c1 -W1 www.baidu.com > /dev/null if [ $? -eq 0 ];then echo -e "\033[31m 檢測(cè)當(dāng)前為NAT模式,為您配置在線yum源 \033[0m" mkdir -p /etc/yum.repos.d/repo.bak mv -f /etc/yum.repos.d/* /etc/yum.repos.d/repo.bak > /dev/null wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo > /dev/null yum clean all > /dev/null yum list > /dev/null echo -e "\033[31m 在線源已配置完成 \033[0m" else echo -e "\033[31m 檢測(cè)當(dāng)前為僅主機(jī)模式,為您配置本地yum源 \033[0m" mount /dev/sr0 /mnt > /dev/null cd /etc/yum.repos.d/ mkdir -p /etc/yum.repos.d/repo.bak mv -f /etc/yum.repos.d/* /etc/yum.repos.d/repo.bak > /dev/null echo '[local] name=local baseurl=file:///mnt enabled=1 gpgcheck=0' > /etc/yum.repos.d/local.repo yum clean all > /dev/null yum makecache > /dev/null df -h | grep "/mnt" if [ $? -ne 0 ];then echo -e "\033[31m 檢測(cè)當(dāng)前為僅主機(jī)模式,但光盤未連接! \033[0m" else echo -e "\033[31m 本地yum源已配置完成 \033[0m" fi fi #防火墻關(guān)閉 systemctl stop firewalld setenforce 0 yum install -y gcc gcc-c++ make rpm -q expect rpm -q tcl yum -y install expect cd /opt tar zxvf redis-5.0.7.tar.gz -C /opt/ cd /opt/redis-5.0.7/ make make PREFIX=/usr/local/redis install #由于Redis源碼包中直接提供了Makefile 文件,所以在解壓完軟件包后,不用先執(zhí)行./configure進(jìn)行配置,可直接執(zhí)行make與make install 命令進(jìn)行安裝。 #在/utils里執(zhí)行軟件包提供的install_server.sh腳本文件設(shè)置Redis服務(wù)所需要的相關(guān)配置文件 cd /opt/redis-5.0.7/utils #開(kāi)始免交換執(zhí)行 /usr/bin/expect EOF #expect開(kāi)始標(biāo)志 spawn ./install_server.sh #Please select the redis port for this instance: [6379] expect "instance" send "\r" #Please select the redis config file name [/etc/redis/6379.conf] expect "config" send "\r" #Please select the redis log file name [/var/log/redis_6379.log] expect "log" send "\r" #Please select the data directory for this instance [/var/lib/redis/6379] expect "data" send "\r" #Please select the redis executable path [] expect "executable" send "/usr/local/redis/bin/redis-server\r" #Is this ok? Then press ENTER to go on or Ctrl-C to abort. expect "abort" send "\r" expect eof EOF ln -s /usr/local/redis/bin/* /usr/local/bin/ netstat -natp | grep redis /etc/init.d/redis_6379 restart /etc/init.d/redis_6379 status xyw=$(ip a | grep "ens33" | awk NR==2'{print$2}' |awk -F/ '{print$1}') sed -i "/bind 127.0.0.1/c bind 127.0.0.1 $xyw" /etc/redis/6379.conf sed -i 's/appendonly no/appendonly yes/' /etc/redis/6379.conf /etc/init.d/redis_6379 restart /etc/init.d/redis_6379 status
到此這篇關(guān)于Redis如何一鍵部署腳本的文章就介紹到這了,更多相關(guān)Redis 部署腳本內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
標(biāo)簽:臺(tái)州 江蘇 吉安 楊凌 朝陽(yáng) 北京 果洛 大慶
巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Redis如何一鍵部署腳本》,本文關(guān)鍵詞 Redis,如何,一鍵,部署,腳本,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。上一篇:redis連接被拒絕的解決方案
下一篇:redis配置文件中常用配置詳解