Linux centOS5 ビルドランプ環境

不言
リリース: 2023-03-23 21:04:01
オリジナル
1534 人が閲覧しました


(ReferenceDocumenthttps://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/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 --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/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

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 サイトの他の関連記事を参照してください。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!