千家信息网

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

发表于:2025-02-13 作者:千家信息网编辑
千家信息网最后更新 2025年02月13日,使用shell 编写快速安装Redis服务#!/bin/bashyum install cpp binutils glibc-kernheaders glibc-common glibc-devel
千家信息网最后更新 2025年02月13日Centos 7 使用shell 实现redis快速安装

使用shell 编写快速安装Redis服务

#!/bin/bashyum install cpp binutils glibc-kernheaders glibc-common glibc-devel gcc make wget    #安装依赖库wget http://download.redis.io/releases/redis-4.0.1.tar.gzif [ -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;fised -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 redisecho "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"
0