압축 패키지 설치 방법
1. httpd-2.4.29.tar.gz를 다운로드합니다.
2.서버/usr/local/software에 업로드합니다. 오류:
tar -zxvf httpd-2.4.29.tar.gz ./configure --prefix=/usr/local/apache2/ # 设置apache安装目录
3. 다음으로 apr을 설치하고 먼저 apr-1.6.3.tar.gz를 다운로드하세요.
4. 서버/usr/local/software
checking for APR... no configure: error: APR not found. Please read the documentation.
에 업로드하세요.
tar -zxvf apr-1.6.3.tar.gz cd apr-1.6.3 .configure make make install
5 . apr -util-1.6.1.tar.gz를 다운로드하세요.
6. 서버/usr/local/software
checking for APR-util... no configure: error: APR-util not found. Please read the documentation.에 업로드하세요.
tar -zxvf apr-util-1.6.1.tar.gz cd apr-util-1.6.1 ./configure --prefix=/usr/local/apr-util/ --with-apr=/usr/local/apr7. 개발 라이브러리가 누락되었을 수 있습니다
xml/apr_xml.c:35:19: 致命错误:expat.h:没有那个文件或目录 #include <expat.h> ^ 编译中断。 make: *** [xml/apr_xml.lo] 错误 18. 이때 돌아가서 apr 경로를 지정해야 할 뿐만 아니라 apr-util
yum install expat-devel # 中间会让你输入y ./configure --prefix=/usr/local/apr-util/ --with-apr=/usr/local/apr make # 成功! make install경로도 지정해야 합니다. 오류가 계속 발생합니다. 여기에서 사람들이 충돌했을 수도 있지만 이 오류는 이전에 발생한 오류와 유사합니다
./configure --prefix=/usr/local/apache2/ --with-apr=/usr/local/apr/ --with-apr-util=/usr/local/apr-util/9. pcre-8.41.tar.gz를 다운로드합니다. 10. 서버/usr/local/software에 업로드
checking for pcre-config... false configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/오류가 보고됩니다. 다시 한번 말씀드리지만 이번이 마지막입니다
tar -zxvf pcre-8.41.tar.gz ./configure10. C++ 환경을 설치하세요
checking windows.h usability... no checking windows.h presence... no checking for windows.h... no configure: error: You need a C++ compiler for C++ support.11. 좋아요, 먼 길을 왔는데 아직도 아파치를 설치해야 해요
yum install -y gcc gcc-c++ # 错了那么多次,别忘了现在的位置,接下来还是要安装pcre ./configure make make install너무 비참해요! 마지막 단계에서 또 다른 오류가 보고되었습니다.
cd .. cd apache ./configure --prefix=/usr/local/apache2/ --with-apr=/usr/local/apr/ --with-apr-util=/usr/local/apr-util/ make make install이런 오류는 본 적이 없어서 과감하게 온라인으로 검색해 보았는데, 답변은 apr 버전이 너무 높습니다. 12. 그래서 apr-util을 다운로드했습니다. -1.5 http://archive.apache .org/dist/apr/apr-util-1.5.2.tar.gz 13. server/usr/local/software
/usr/local/apr-util//lib/libaprutil-1.so: undefined reference to `XML_GetErrorCode' /usr/local/apr-util//lib/libaprutil-1.so: undefined reference to `XML_SetEntityDeclHandler' /usr/local/apr-util//lib/libaprutil-1.so: undefined reference to `XML_ParserCre collect2: error: ld returned 1 exit status make[2]: *** [htpasswd] 错误 1 make[2]: Leaving directory `/usr/local/software/apache/support' make[1]: *** [all-recursive] 错误 1 make[1]: Leaving directory `/usr/local/software/apache/support'14에 업로드합니다. 11단계를 반복합니다. 유일한 차이점은 구성이 이제 :apr-util-1.5를 지정한다는 것입니다. 이것이 중요합니다! ! !
tar -zxvf apr-util-1.5.2.tar.gz cd apr-util-1.5.2 ./configure --prefix=/usr/local/apr-util-1.5/ --with-apr=/usr/local/apr make make install완벽한 결말:
cd .. cd apache ./configure --prefix=/usr/local/apache2/ --with-apr=/usr/local/apr/ --with-apr-util=/usr/local/apr-util-1.5/ make # make时间会比较长 make install15. 구성 파일 위치를 입력하세요: /usr/local/apache2/conf
Installing configuration files mkdir /usr/local/apache2/conf mkdir /usr/local/apache2/conf/extra mkdir /usr/local/apache2/conf/original mkdir /usr/local/apache2/conf/original/extra Installing HTML documents mkdir /usr/local/apache2/htdocs Installing error documents mkdir /usr/local/apache2/error Installing icons mkdir /usr/local/apache2/icons mkdir /usr/local/apache2/logs Installing CGIs mkdir /usr/local/apache2/cgi-bin Installing header files mkdir /usr/local/apache2/include Installing build system files mkdir /usr/local/apache2/build Installing man pages and online manual mkdir /usr/local/apache2/man mkdir /usr/local/apache2/man/man1 mkdir /usr/local/apache2/man/man8 mkdir /usr/local/apache2/manual make[1]: Leaving directory `/usr/local/software/apache'16. apache를 시작하세요
cp httpd.conf httpd.conf.bak # 备份配置文件 vim httpd.conf # 放掉191行的注释,修改为: ServerName [你的IP]:80 :wq방화벽을 닫고 브라우저 주소 표시줄에 서버의 IP를 입력하세요. 웹 페이지가 나타납니다. 17. apache를 닫습니다.
/usr/local/apache2/bin/apachectl start # 或者 /usr/local/apache2//bin/httpd -k start이 원본 파일 설치 방법은 실제로 apache 서비스를 설치하는 다른 방법이 있습니다. 내 이전 설치를 오늘 함께 시도해 보세요. yum 소스 설치 방법
1. Yum 소스 설치(온라인으로 다운로드 필요)
ps -ef|grep apache /usr/local/apache2/bin/apachectl stop # 或者 /usr/local/apache2//bin/httpd -k stop # 没错,bin前面就是//결과: 는 종속 항목으로 설치됩니다:
首先关闭apache服务 yum install httpd # 中间过程中输入:y2. etc/httpd/conf 입력 후 구성 파일을 백업했습니다. 수정된 위치는 95번째 줄입니다. 참고용으로
apr.x86_64 0:1.4.8-3.el7_4.1 apr-util.x86_64 0:1.5.2-6.el7 httpd-tools.x86_64 0:2.4.6-67.el7.centos.6 mailcap.noarch 0:2.1.41-2.el7 完毕!3. 서비스 시작
cd /etc/httpd/conf cp httpd.conf httpd.conf.bak # 放掉95行的注释,修改为: ServerName [你的IP]:80 :wq브라우저에 IP를 입력하세요. 그러면 Apache에서 미리 설정한 HTML이 나타납니다. 완벽합니다! ! !
4. 서비스 종료
systemctl start httpd.service
5. 다시 첫 번째 방법으로 httpd 설치를 시작했습니다.
systemctl stop httpd.service브라우저를 새로 고치면 두 설치 방법 간에 충돌이 없음이 표시됩니다. Apache와 관련된 더 많은 기술 기사를 보려면
Apache Tutorial
칼럼을 방문하여 알아보세요!위 내용은 리눅스에 아파치 서버를 설치하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!