#!/bin/bash
# **********************************************************
#Author: ZhangPengfei
#QQ: 735975422
#Date: 2021-12-26 23:29
#Filename: install_http.sh
#Description:
# **********************************************************
#设置变量
version=2.4.37
src_dir=/usr/local/src
install_dir=/apps/httpd
#cpu核心数,后面编译使用
cpu=`lscpu | sed -rn '/^CPU\(s\)/s/.* ([0-9]+)/\1/p'`
wget -P /usr/local/src https://mirrors.tuna.tsinghua.edu.cn/apache//httpd/httpd-$version.tar.bz2 &> /dev/null || { echo download faild ; exit; }
cd $src_dir
tar xvf httpd-$version.tar.bz2
#安装编译、安装需要的包
yum -y install gcc apr-devel apr-util-devel pcre-devel openssl-devel redhat-rpm-config-123-1.el8.noarch
cd httpd-$version/
#配置
./configure --prefix=$install_dir --sysconfdir=/etc/httpd --enable-ssl
#编译成功后安装
make -j $cpu && make install
#添加环境变量
echo 'PATH=/apps/httpd/bin/:$PATH' > /etc/profile.d/httpd.sh
. /etc/profile.d/httpd.sh
#添加运行服务的用户组和用户
groupadd -r -g 88 apache
useradd -r -u 88 -g apache -s /sbin/nologin -d $install_dir apache
sed -i -e '/^User/c User apache' -e '/^Group/c Group apache' /etc/httpd/httpd.conf
apachectl -k start
脚本编译安装httpd服务
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 1、APR APR(Apache portable Run-time libraries,Apache可移植运行库...
- 安装httpd-2.4依赖于apr-1.4+, apr-util-1.4+,apr: apache portabl...