最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

Shell 自動安裝Apache

2023-08-13 11:11 作者:小步2023  | 我要投稿

詳情地址:? https://www.xiaobuteach.com/shell/auto/install-apache.html?from=bili

Shell 自動安裝Apache

我們先回顧手動安裝Apache(通過源碼安裝包)的步驟,然后分析、將手動執(zhí)行代碼轉化為shell腳本。

手工安裝Apache

參考?第9章 軟件安裝—Apache源碼安裝?。

我們先下載好安裝文件并上傳到指定目錄/software/httpd-2.4.57.tar.bz2,不用在Shell里下載。

步驟1:解壓

tar -xvf /software/httpd-2.4.57.tar.bz2 -C /usr/local/src/

步驟2:安裝依賴

yum -y install gcc apr-devel apr-util-devel pcre-devel

步驟3:編繹

cd /usr/local/src/httpd-2.4.57 ./configure --prefix=/usr/local/httpd

步驟4:編繹與安裝

make && make install

步驟5:配置后臺服務

1)復制程序到后臺服務目錄

cp /usr/local/httpd/bin/apachectl /etc/init.d/httpd

【重點】2)編輯文件httpd

vim /etc/init.d/httpd

#!/bin/sh下添加如下兩行

#chkconfig: 345 85 15 #description:apache start and stop

步驟6:添加服務,設置為自動啟動

chkconfig --add httpd chkconfig httpd on

步驟7:啟動服務

systemctl start httpd

步驟8:測試

curl localhost

自動安裝Apache

目標

通過執(zhí)行一個腳本文件,自動完成上述所有動作。


分析

第5步:2)編輯文件httpd

vim /etc/init.d/httpd

#!/bin/sh下添加行

#chkconfig: 345 85 15

這里需要修改文件,找到相應內容,追加1行,可以通過 sed命令完成。

sed -i \ '/#!\/bin\/sh/a#chkconfig: 345 85 15' \ /etc/init.d/httpd

-i表示修改會保存到文件;

前兩行結尾的\用于將一條命令分多行;

'/字符串1/a字符串2'表示搜索字符串1,在下一行添加字符串2;

字符串#!/bin/s含有特殊字符/,/前加\進行轉義。

sed命令更多用法見下節(jié)。


完整代碼

01apache-install.sh

tar -xvf /software/httpd-2.4.57.tar.bz2 -C /usr/local/src/ echo '解壓完成' yum -y install gcc apr-devel apr-util-devel pcre-devel echo '依賴包安裝完成' cd /usr/local/src/httpd-2.4.57 ./configure --prefix=/usr/local/httpd make && make install echo '編繹安裝完成' cp /usr/local/httpd/bin/apachectl /etc/init.d/httpd sed -i \ '/#!\/bin\/sh/a#chkconfig: 345 85 15' \ /etc/init.d/httpd chkconfig --add httpd chkconfig httpd on echo '服務配置完成' systemctl start httpd echo '服務啟動完成' curl localhost echo '測試完成'

執(zhí)行

sh 01apache-install.sh

運行效果


Shell 自動安裝Apache的評論 (共 條)

分享到微博請遵守國家法律
兴宁市| 彰化县| 丰都县| 鄂尔多斯市| 贵港市| 铁岭市| 商都县| 秦皇岛市| 万宁市| 花莲市| 浙江省| 漳州市| 荣昌县| 兴山县| 凤山市| 都昌县| 通许县| 宜州市| 砚山县| 贵阳市| 龙口市| 内黄县| 兴山县| 大理市| 滕州市| 西藏| 衡东县| 商水县| 清丰县| 安乡县| 孟州市| 全椒县| 哈尔滨市| 林甸县| 蒙城县| 乌海市| 丰顺县| 柳江县| 日照市| 泽州县| 丰都县|