(참조 문서)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.phpNote : 시작 보고서
httpd : ServerName에 127.0.0.1을 사용하여 서버의 정규화 된 도메인 이름을 확실하게 결정할 수 없었습니다.
#vim /web/apache/conf/httpd.conf (여기서/web/apahce는 제가 아파치를 설치한 디렉터리입니다. 기본적으로 설치한다면 /usr/local/apache2/icons여야 합니다)
httpd: 서버를 확인할 수 없습니다.' 초 ServerName
httpd(pid 20183)에 대해 127.0.0.1을 사용하는 정규화된 도메인 이름이 이미 실행 중입니다
ServerName www.example.com :80
다음으로 변경했습니다:
위 내용은 리눅스 centOS5 빌드 램프 환경의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!