❗가상머신(리눅스)에 Apache 설치
✏️가상머신(우분투) 설치
기존에 깔아놨던 가상머신을 그대로 이용
우분투만 새로 만듦
https://radiant515.tistory.com/131
https://radiant515.tistory.com/132
✏️Apache 설치
소스 설치, 수동 설치, 컴파일 설치 -> 리눅스에서 소스를 직접 다운 받아 컴파일하여 설치는 것(반대가 패키지 설치)
-아파치 설치할 디렉토리 생성
sudo su
cd /usr/local
mkdir apache
-의존성 패키지 설치
sudo apt-get update #업데이트 먼저 실행
# apt-get install make
# apt-get install build-essential
# apt-get install gcc
# apt-get install --reinstall make
# apt-get install libexpat1-dev
# apt-get install g++
# apt-get install net-tools
# apt-get install curl
-설치 파일 다운 및 압축 해제
# cd /usr/local
# wget https://mirror.navercorp.com/apache//apr/apr-1.7.0.tar.gz
# wget https://mirror.navercorp.com/apache//apr/apr-util-1.6.1.tar.gz
# wget https://sourceforge.net/projects/pcre/files/pcre/8.45/pcre-8.45.tar.gz
# wget https://archive.apache.org/dist/httpd/httpd-2.4.53.tar.gz
# 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.53.tar.gz
-설정 변경
# cd /usr/local
# cd apr-1.7.0
# ./configure --prefix=/usr/local/apr
# make
# make install
# cd /usr/local
# cd apr-util-1.6.1
# ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
# make
# make install
# cd /usr/local
# cd pcre-8.45
# ./configure --prefix=/usr/local/pcre
# make
# make install
# cd /usr/local
# cd httpsd-2.4.53
#./configure --prefix=/usr/local/apache2.4 \--enable-module=so --enable-rewrite --enable-so \--with-apr=/usr/local/apr \
--with-apr-util=/usr/local/apr-util \--with-pcre=/usr/local/pcre/bin/pcre-config \--enable-mods-shared=all
# make
# make install
-아파치 버전 확인
-서버 실행 확인
참고: https://soobarkbar.tistory.com/216
728x90
반응형
'🔻Extracurricular Activity > UMC' 카테고리의 다른 글
[UMC 3기] server 3주차-2 (2) | 2022.10.05 |
---|---|
[UMC 3기] server 3주차-1 (0) | 2022.10.05 |
[UMC 3기] server 2주차-2 (0) | 2022.09.28 |
[UMC 3기] server 2주차-1 (0) | 2022.09.28 |
[UMC 3기] server 1주차-1 (1) | 2022.09.23 |