源碼安裝apache腳本部署過程詳解
源碼安裝apache腳本部署
[root@localhost ~]# ls
anaconda-ks.cfg httpd.tar.xz
[root@localhost ~]# tar xf httpd.tar.xz 解壓存放腳本的壓縮包
[root@localhost ~]# ls
anaconda-ks.cfg httpd httpd.tar.xz
[root@localhost ~]# cd httpd/
[root@localhost httpd]# ls
apache_lnh.sh(編譯安裝apache腳本) config.sh(附屬腳本) files
[root@localhost httpd]# ls files/ //存放安裝包的目錄
apr-1.7.0.tar.gz apr-util-1.6.1.tar.gz httpd-2.4.53.tar.gz httpd-2.4.54.tar.gz zhuawawa(源碼包的目錄)
[root@localhost httpd]# cat apache_lnh.sh
#/bin/bash
#列出httpd版本號(hào)進(jìn)行選擇
cat > /tmp/xbz.txt <<EOF
請(qǐng)輸入要安裝的版本序號(hào):
1. 2.4.54
2. 2.4.53
q. 退出
EOF
cat /tmp/xbz.txt
read -p "選擇版本號(hào)" apache_version
case $apache_version in
1)
apache_version=$(awk 'NR==2{print $2}' /tmp/xbz.txt)
echo $apache_version
;;
2)
apache_version=$(awk 'NR==3{print $2}' /tmp/xbz.txt)
echo $apache_version
;;
q)
apache_version=$(awk 'NR==4{print $2}' /tmp/xbz.txt)
echo $apache_version
exit
;;
*)
echo "錯(cuò)誤輸入"
exit
esac
#設(shè)置執(zhí)行權(quán)限
if [ $UID -ne 0 ];then
echo "請(qǐng)以管理員用戶進(jìn)行執(zhí)行"
exit
fi
#定義變量
install_dir=/usr/local/apache
#創(chuàng)建用戶
id apache &> /dev/null
if [ $? -ne 0 ];then
useradd -r -M -s /sbin/nologin apache
else
echo "用戶已存在"
fi
#安裝依賴包
dnf -y install openssl-devel pcre-devel expat-devel libtool gcc gcc-c++ wget make vim zip --allowerasing
#解壓源碼包
rm -rf /tmp/*
tar xf files/apr-1.7.0.tar.gz -C /tmp/
tar xf files/apr-util-1.6.1.tar.gz -C /tmp/
tar xf files/httpd-$apache_version.tar.gz -C /tmp/
#編譯安裝apr
cd /tmp/apr-1.7.0
if [ ! -d /usr/local/apr ];then
sed -i '/$RM "$cfgfile"/d' configure
./configure --prefix=/usr/local/apr && \
make && make install
else
ls /usr/local
echo "apr 編譯安裝完成"
fi
#編譯安裝apr-util
cd ../apr-util-1.6.1/
if [ ! -d /usr/local/apr-util ];then
./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr && \
make && make install
else
ls /usr/local/
echo "apr-util 編譯安裝完成"
fi
#編譯安裝httpd
cd ../httpd-$apache_version/
if [ ! -d ${install_dir} ];then
./configure --prefix=${install_dir} \
--enable-so \
--enable-ssl \
--enable-cgi \
--enable-rewrite \
--with-zlib \
--with-pcre \
--with-apr=/usr/local/apr \
--with-apr-util=/usr/local/apr-util/ \
--enable-modules=most \
--enable-mpms-shared=all \
--with-mpm=prefork
make && make install
else
ls ${install_dir}
echo "httpd 編譯安裝完成"
fi
#設(shè)置環(huán)境變量,man文檔,頭文件
echo "export PATH=${install_dir}/bin:\$PATH" > /etc/profile.d/apache.sh
ln -s ${install_dir}/include /usr/include/apache &> /dev/null
grep 'apache' /etc/man_db.conf &> /dev/null
if [ $? -ne 0 ];then
sed -i "22a MANDATORY_MANPATH ${install_dir}/man" /etc/man_db.conf
fi
#將其加入systemd服務(wù)里面
cat > /usr/lib/systemd/system/httpd.service <<EOF
[Unit]
Description=httpd server daemon
After=network.target
[Service]
Type=forking
ExecStart=${install_dir}/bin/apachectl start
ExecStop=${install_dir}/bin/apachectl stop
ExecReload=/bin/kill -HUP \$MAINPID
[Install]
WantedBy=multi-user.target
EOF
#加載文件并設(shè)置開機(jī)自啟
systemctl daemon-reload
systemctl enable --now httpd
#查看端口
ss -antl
[root@localhost httpd]# cat config.sh
#!/bin/bash
#定義變量
install_dir=$(grep '^install_dir=' apache_lnh.sh | awk -F'=' '{print $2}' )
echo $install_dir
#添加包含虛擬主機(jī)
grep 'Include conf/extra/httpd-vhosts.conf' $install_dir/conf/httpd.conf &> /dev/null
if [ $? -eq 0 ];then
echo "Include conf/extra/httpd-vhosts.conf" >> $install_dir/conf/httpd.conf
fi
#配置虛擬主機(jī)
cat > $install_dir/conf/extra/httpd-vhosts.conf <<EOF
<VirtualHost *:80>
DocumentRoot "$install_dir/htdocs/zhuawawa.example.com"
ServerName zhuawawa.example.com
ErrorLog "logs/zhuawawa.example.com-error_log"
CustomLog "logs/zhuawawa.example.com-access_log" common
</VirtualHost>
EOF
#添加防火墻規(guī)則
firewall-cmd --add-rich-rule 'rule family=ipv4 source address=0.0.0.0/0 port port=80 protocol=tcp accept' --permanent &> /dev/null
firewall-cmd --reload
#創(chuàng)建網(wǎng)站存放目錄
mkdir -p $install_dir/htdocs/zhuawawa.example.com
cp -r files/zhuawawa/* $install_dir/htdocs/zhuawawa.example.com
#重啟httpd
systemctl restart httpd
#查看端口
ss -antl
[root@localhost httpd]# ls
apache_lnh.sh config.sh files
[root@localhost httpd]# ls files/
apr-1.7.0.tar.gz apr-util-1.6.1.tar.gz httpd-2.4.53.tar.gz httpd-2.4.54.tar.gz zhuawawa(提前將源碼包解壓到這里)
[root@localhost httpd]# ls files/zhuawawa/ (此處是我解壓的源碼包)
Battle_City audio css images index.html js tk.zip進(jìn)行訪問:

[root@localhost ~]# tar -Jcf httpd.tar.xz httpd/ //壓縮腳本存放目錄 [root@localhost ~]# ls anaconda-ks.cfg httpd httpd.tar.xz
到此這篇關(guān)于源碼安裝apache腳本部署的文章就介紹到這了,更多相關(guān)源碼安裝apache內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Linux 在Shell腳本中使用函數(shù)實(shí)例詳解
這篇文章主要介紹了Linux 在Shell腳本中使用函數(shù)實(shí)例詳解的相關(guān)資料,需要的朋友可以參考下2017-06-06
ubuntu lamp(apache+mysql+php) 環(huán)境搭建及相關(guān)擴(kuò)展更新
ubuntu lamp(apache+mysql+php) 環(huán)境搭建及相關(guān)擴(kuò)展更新,需要的朋友可以參考下。2011-05-05
linux新文件權(quán)限設(shè)置之umask的深入理解
這篇文章主要給大家介紹了關(guān)于linux新文件權(quán)限設(shè)置之umask的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧2019-03-03
Linux利用inotify和rsync服務(wù)實(shí)現(xiàn)數(shù)據(jù)實(shí)時(shí)同步的原理解析
inotify是系統(tǒng)內(nèi)核的一個(gè)監(jiān)控服務(wù),屬于操作系統(tǒng)內(nèi)核的一個(gè)特有機(jī)制,用于監(jiān)控文件的信息變化,這篇文章主要介紹了Linux利用inotify和rsync服務(wù)實(shí)現(xiàn)數(shù)據(jù)實(shí)時(shí)同步,需要的朋友可以參考下2022-10-10
CentOS下RabbitMq高可用集群環(huán)境搭建教程
這篇文章主要為大家詳細(xì)介紹了CentOS下RabbitMq高可用集群環(huán)境搭建教程,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-08-08
詳解Linux系統(tǒng)三種模式下的簡(jiǎn)單命令
這篇文章主要介紹了Linux系統(tǒng)三種模式下的簡(jiǎn)單命令,非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2018-07-07

