>  기사  >  백엔드 개발  >  리눅스 centOS5 빌드 램프 환경

리눅스 centOS5 빌드 램프 환경

不言
不言원래의
2018-04-14 16:21:511540검색


(참조 문서)https://help.aliyun.com/document_detail/50774.html

PHP

1을 다운로드하고 설치합니다. php7

cd /usr/ local /src/

wget -O php7.tar.gz http://cn2.php.net/get/php-7.1.1.tar.gz/from/this/mirror

2. 압축을 푼다 PHP7

tar -xvf php7.tar.gz

3. PHP 소스 파일 디렉터리

cd php-7.0.4

4를 입력합니다. 종속성 패키지 설치

yum install libxml2 libxml2-devel openssl openssl-devel bzip2 bzip2-devel libcurl libcurl-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel gmp gmp-devel libmcrypt libmcrypt-devel readline readline-devel libxslt libxslt-devel

5. 컴파일 구성

./configure --prefix=/usr/local /php --with-config-file-path=/usr/local/php/etc/--enable-fpm --with-fpm-user=nginx --with-fpm-group=nginx --enable-inline- 최적화 - -disable-debug --disable-rpath --enable-shared --enable-soap --with-libxml-dir --with-xmlrpc --with-openssl --with-mcrypt --with-mhash -- with- pcre-regex --with-sqlite3 --with-zlib --enable-bcmath --with-iconv --with-bz2 --enable-calendar --with-curl --with-cdb --enable-dom -- 활성화-exif --enable-fileinfo --enable-filter --with-pcre-dir --enable-ftp --with-gd --with-openssl-dir --with-jpeg-dir --with- png- dir --with-zlib-dir --with-freetype-dir --enable-gd-native-ttf --enable-gd-jis-conv --with-gettext --with-gmp --with-mhash -- 활성화-json --enable-mbstring --enable-mbregex --enable-mbregex-backtrack --with-libmbfl --with-onig --enable-pdo --with-mysqli=mysqlnd --with-pdo- mysql= mysqlnd --with-zlib-dir --with-pdo-sqlite --with-readline --enable-session --enable-shmop --enable-simplexml --enable-sockets --enable-sysvmsg --enable -sysvsem --enable-sysvshm --enable-wddx --with-libxml-dir --with-xsl --enable-zip --enable-mysqlnd-compression-support --with-pear --enable-opcache - -with -apxs2=/usr/local/apache/bin/apxs

참고: --with-apxs2=/usr/local/apache/bin/apxs 그렇지 않으면 아파치가 PHP를 인식하지 못하는지 확인하세요

6.

make && make install

7. 환경 변수 구성

vi /etc/profile

Append

PATH=$PATH:/usr/local/php/bin

export PATH

명령을 실행합니다. 즉시 적용하려면

source /etc/profile


Apache 구성 수정(Apache가 PHP 파일을 컴파일할 수 있도록)

구성 파일 httpd.conf

AddType application/x-httpd-에 다음 코드를 추가하세요. php .php

AddType 애플리케이션 /x-httpd-php-source .phps

directory DirectoryIndex를 loge 및 index.php


Restart Apache


Note : 시작 보고서

httpd : ServerName에 127.0.0.1을 사용하여 서버의 정규화 된 도메인 이름을 확실하게 결정할 수 없었습니다.

#vim /web/apache/conf/httpd.conf (여기서/web/apahce는 제가 아파치를 설치한 디렉터리입니다. 기본적으로 설치한다면 /usr/local/apache2/icons여야 합니다)


#ServerName www.example.com:80을 찾아 #을 제거하고 아파치를 다시 시작하면 모든 것이 잘 될 것입니다.


현상:


bogon:~/webserver/httpd-2.0.59 # /usr/local/apache2/bin/apachectl start

httpd: 서버를 확인할 수 없습니다.' 초 ServerName

httpd(pid 20183)에 대해 127.0.0.1을 사용하는 정규화된 도메인 이름이 이미 실행 중입니다


이 문제는 ServerName이 /etc/httpd/conf/httpd.conf에 설정되어 있지 않다는 것입니다


vi /usr/local/apache2/conf/httpd.conf


가장 쉬운 방법은 httpd.conf 파일을 수정하고 다음을 추가하는 것입니다.

ServerName www.example.com :80

다음으로 변경했습니다:


ServerName localhost:80



다시 시작하면 정상적으로 됩니다!

위 내용은 리눅스 centOS5 빌드 램프 환경의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:PHP 전략 패턴 사용다음 기사:PHP 전략 패턴 사용