-
apache source 설치 및 삭제공부합시다!/LInux 2022. 10. 2. 10:22728x90
1. 설치
sh.txt0.00MBapache.sh0.00MB2k230302_apache_script.txt0.00MB02_apache.sh0.00MB# vi apache.sh
#! /bin/bash mkdir /web mkdir /http cd /web clear yum install -y wget expat-devel gcc gcc-c++ clear wget https://downloads.apache.org/httpd/httpd-2.4.54.tar.gz wget https://downloads.apache.org/apr/apr-1.7.0.tar.gz wget https://downloads.apache.org/apr/apr-util-1.6.1.tar.gz wget https://sourceforge.net/projects/pcre/files/pcre/8.45/pcre-8.45.tar.gz --no-check-certificate clear ls tar xvfz apr-1.7.0.tar.gz tar xvfz apr-util-1.6.1.tar.gz tar xvfz pcre-8.45.tar.gz tar xvfz httpd-2.4.54.tar.gz clear ls cd apr-1.7.0 ls ./configure --prefix=/http/apr make && make install clear cd ../apr-util-1.6.1 ./configure --prefix=/http/aprutil --with-apr=/http/apr make && make install cd ../pcre-8.45 clear ls ./configure --prefix=/http/pcre make && make install clear cd ../httpd-2.4.54 ./configure --prefix=/http/apache --with-apr=/http/apr --with-apr-util=/http/aprutil --with-pcre=/http/pcre/bin/pcre-config make && make install systemctl stop firewalld /http/apache/bin/apachectl start
2. 삭제
# vi rmapache.sh
#! /bin/bash rm -rf /web /http yum remove -y wget gcc gcc-c++ expat-devel
728x90'공부합시다! > LInux' 카테고리의 다른 글
Rocky 9 - WEB Mail Server (RoundCube) - Sendmail, Dovecot (0) 2022.11.06 Rocky 9 - WEB Mail Server (RoundCube) 개요 (0) 2022.11.06 apache : Indexes & FollowSymLinks (0) 2022.05.29 CenTOS7 : WordPress + MySQL5.7 + PHP7.3 Install (0) 2022.04.05 CentOS7 : /etc/login.defs 분석 (0) 2022.03.28