(ReferenceDocument)https://help.aliyun.com/document_detail/50774.html
compileおよびphp7
cd/usr/をダウンロードします。 local /src/
wget -O php7.tar.gz http://cn2.php.net/get/php-7.1.1.tar.gz/from/this/mirror2. PHP7
を解凍します。 tar -xvf php7.tar.gz3. PHP ソース ファイル ディレクトリに移動します cd php-7.0.44. 依存関係パッケージをインストールします 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-devel5. 設定をコンパイルします./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 --enable-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 --enable-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 そうしないと、Apache が PHP を認識しないことを確認してください
6。コンパイルしてインストールしますmake && make install
7. 環境変数を設定しますvi /etc/profileAppendPATH=$PATH:/usr/local/php/binexport PATH コマンドを実行しますすぐに有効にするには source /etc/profileApache 設定を変更します (Apache が PHP ファイルをコンパイルできるように)
設定ファイル httpd.conf に次のコードを追加します
DirectoryIndex を見つけて、index.php を追加します
Apache を再起動します
注: 起動レポート
httpd: ServerName に 127.0.0.1 を使用して、サーバーの完全修飾ドメイン名を確実に判断できませんでした
#vim /web/apache/conf/httpd.conf (ここで/web/apahce は、Apache をインストールしたディレクトリです。デフォルトでインストールする場合は、/usr/local/apache2/icons になるはずです)
#ServerName www.example.com:80 を見つけて # を削除し、Apache を再起動するとすべてがうまくいきます。
現象:
bogon:~/webserver/httpd-2.0.59 # /usr/local/apache2/bin/apachectl start
httpd: サーバーを特定できませんでしたs ServerName に 127.0.0.1 を使用する完全修飾ドメイン名
httpd (pid 20183) はすでに実行中です
この問題は、ServerName が /etc/httpd/conf/httpd.conf に設定されていないことです
vi /usr/local/apache2/conf/httpd.conf
最も簡単な方法は、httpd.conf ファイルを変更して次を追加することです:
ServerName www.example.com :80
に変更しました:
ServerName localhost:80
もう一度起動すると正常になります!
以上がLinux centOS5 ビルドランプ環境の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。