아파 치 Http 서버 설치
6083 단어 apache.
[TOC]
1.httpd-2.4.12.tar.bz2 다운로드
wget http://mirror.bit.edu.cn/apache/httpd/httpd-2.4.12.tar.bz2
2.다운 로드 된 파일 압축 풀기
tar -xjvf httpd-2.4.12.tar.bz2
3.configure 설정 컴 파일 설치 조건
./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite
배치 하 다.
설명 하 다.
--prefix=/usr/local/apach2
컴 파일 된 시스템 디 렉 터 리 설정
--enable-s
httpd 서비스 가 모듈 기능 을 동적 으로 불 러 올 수 있 도록 합 니 다.
--enable-rewrite
웹 주소 재 작성 기능
ARP 를 찾 을 수 없 음 오류
o@o-pc:~/work/Apache-httpd-2.4.12$ ./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite
checking for chosen layout... Apache
checking for working mkdir -p... yes
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
configure:
configure: Configuring Apache Portable Runtime library...
configure:
checking for APR... no
configure: error: APR not found. Please read the documentation.
해결 방법
arp-1.5.2 소스 패키지 다운로드
wget http://mirror.bit.edu.cn/apache/apr/apr-1.5.2.tar.bz2
압축 해제 후 컴 파일 설치
o@o-pc:~/work/arp$ tar -xjvf apr-1.5.2.tar.bz2
o@o-pc:~/work/arp/apr-1.5.2$ ./configure --prefix=/usr/local/apr
...
o@o-pc:~/work/arp/apr-1.5.2$ make
...
o@o-pc:~/work/arp/apr-1.5.2$ sudo make install
오류 가 발생 했 습 니 다.
o@o-pc:~/work/Apache-httpd-2.4.12$ ./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite
checking for chosen layout... Apache
...
configure: Configuring Apache Portable Runtime library...
configure:
checking for APR... yes
setting CC to "gcc"
setting CPP to "gcc -E"
setting CFLAGS to " -g -O2 -pthread"
setting CPPFLAGS to " -DLINUX -D_REENTRANT -D_GNU_SOURCE"
setting LDFLAGS to " "
configure:
configure: Configuring Apache Portable Runtime Utility library...
configure:
checking for APR-util... no
configure: error: APR-util not found. Please read the documentation.
해결 방법
apr-util-1.5.4 소스 패키지 다운로드
o at o-pc
:~/work/arp$ wget http://mirror.bit.edu.cn/apache/apr/apr-util-1.5.4.tar.bz2
압축 해제 후 컴 파일 설치 주의
./configure
설정 할 때 APR 경 로 를 정 해 야 합 니 다--with-apr=/usr/local/apr
앞에서 apr 를 컴 파일 할 때 설정 한 경로 입 니 다.o@o-pc:~/work/arp$ tar -xjvf apr-util-1.5.4.tar.bz2
o@o-pc:~/work/arp/apr-util-1.5.4$ ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
...
o@o-pc:~/work/arp/apr-util-1.5.4$ make
...
o@o-pc:~/work/arp/apr-util-1.5.4$ sudo make install
pcre-config for libpcre 를 찾 을 수 없 음 오류
o@o-pc:~/work/Apache-httpd-2.4.12$ ./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite --with-apr-util=/usr/local/apr-util
checking for chosen layout... Apache
...
configure:
configure: Configuring Apache Portable Runtime Utility library...
configure:
checking for APR-util... yes
...
checking for pcre-config... false
configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/
해결 방법
pcre-8.36 소스 패키지 다운로드
wgethttp://jaist.dl.sourceforge.net/project/pcre/pcre/8.36/pcre-8.36.tar.bz28.7 버 전의 주소ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.37.tar.bz2
압축 해제 후 컴 파일 설치
o@o-pc:~/work/arp$ tar -xjvf pcre-8.37.tar.bz2
o@o-pc:~/work/arp/pcre-8.37$ ./configure --prefix=/usr/local/pcre
...
o@o-pc:~/work/arp/pcre-8.37$ make
...
o@o-pc:~/work/arp/pcre-8.37$ sudo make install
위의 오류 가 해결 되면 다시.../configure 설정
추가 한 두 개 에 주의 하 세 요.
o@o-pc:~/work/Apache-httpd-2.4.12$ ./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite --with-apr-util=/usr/local/apr-util --with-pcre=/usr/local/pcre
4.컴 파일 설치
o@o-pc:~/work/Apache-httpd-2.4.12$ make
o@o-pc:~/work/Apache-httpd-2.4.12$ sudo make install
5.apache 서비스 시작
o@o-pc:~/work$ /usr/local/apache2/bin/apachectl start
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
(13)Permission denied: AH00072: make_sock: could not bind to address [::]:80
(13)Permission denied: AH00072: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
AH00015: Unable to open logs
루트 권한 이 필요 합 니 다.
o@o-pc:~/work$ sudo /usr/local/apache2/bin/apachectl start
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
알림 오류,서비스 이름(포트 번호)을 디 렉 터 리 로 전환 할 수 없습니다.
o@o-pc:~$ sudo /usr/local/apache2/bin/apachectl start
httpd (pid 31083) already running
이제 브 라 우 저 를 열 었 는 지 확인 해 볼 수 있 습 니 다.주소 localhost 를 입력 하여 Is Work 를 표시 하 는 지 확인 하 십시오!Apache Http Server 가 이미 실행 중 이 므 로 캡 처 하기 가 불편 합 니 다.여 기 는 바로 curl 로 웹 페이지 의 내용 을 가 져 옵 니 다.
o@o-pc:~$ curl localhost
<html><body><h1>It works!</h1></body></html>
6.아파 치 Http 서비스 중지
멈 추 는 것 을 보고 가 져 오 면 실패 합 니 다.
o@o-pc:~$ sudo /usr/local/apache2/bin/apachectl stop
o@o-pc:~$ curl localhost
curl: (7) Failed to connect to localhost port 80:
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
자바 파일 압축 및 압축 풀기파일 의 간단 한 압축 과 압축 해 제 를 실현 하 였 다.주요 테스트 용 에는 급 하 게 쓸 수 있 는 부분 이 있 으 니 불편 한 점 이 있 으 면 아낌없이 가르쳐 주 십시오. 1. 중국어 문 제 를 해 결 했 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.