Centos 7 使用shell 实现redis快速安装

使用shell 编写快速安装Redis服务
#!/bin/bash
yum install cpp binutils glibc-kernheaders glibc-common glibc-devel gcc make wget    #安装依赖库
wget http://download.redis.io/releases/redis-4.0.1.tar.gz
if [ -f /root/redis-4.0.1.tar.gz ];then
    tar zxvf redis-4.0.1.tar.gz
    mv redis-4.0.1 /usr/local/redis
    cd /usr/local/redis
    make
    cd src/
    make install 
else
    echo "文件不存在!"
    exit;
fi

sed -i ‘136s/daemonize no/daemonize yes/‘ /usr/local/redis/redis.conf    #(编辑redis服务配置文件,修改其中配置)

sed -i ‘69s/127.0.0.1/0.0.0.0/‘ /usr/local/redis/redis.conf 

sed -i ‘88s/protected-mode yes/protected-mode no/‘ /usr/local/redis/redis.conf
 mkdir -p /etc/redis
 ln -s /usr/local/redis/redis.conf /etc/redis/6379.conf   #(在默认的配置文件路劲中放置配置文件)
 ln -s /usr/local/redis/utils/redis_init_script /etc/init.d/redisd    #(将初始化文件配置到系统自启动的文件夹内,redisd为服务名,可自行修改)
 service redisd start   #(开启redis服务,服务名为:redisd)
 #redis-cli  
netstat -ntpl|grep redis
echo "Redis 部署完成!"
echo " "
echo "如果你的系统是Centos 7在安装完毕后留意防火墙,可执行以下命令来放行redis 外部通信。"
echo "firewall-cmd --zone=public --add-port=6379/tcp --permanent"    
echo "firewall-cmd --reload"
echo "firewall-cmd --zone= public --query-port=6379/tcp"

相关文章

linux下开机自启: 在/etc/init.d目录下新建文件elasticsear...
1、因为在centos7中/etc/rc.d/rc.local的权限被降低了,所以...
最简单的查看方法可以使用ls -ll、ls-lh命令进行查看,当使用...
ASP.NET Core应用程序发布linux在shell中运行是正常的。可一...
设置时区(CentOS 7) 先执行命令timedatectl status|grep &...
vim /etc/sysconfig/network-scripts/ifcfg-eth0 B...