#このチュートリアルの動作環境: Windows10 システム、centos6.8&&php7.1.5 バージョン、Dell G3 コンピューター。centos6.8 で php をコンパイルしてインストールする方法: 1. 「yum -y install」コマンドを使用して依存関係をインストールします; 2. 構成ファイルをコピーします; 3. 環境変数を追加します; 4. 「source /」を実行しますetc/profile" コマンド; 5. 自動起動を追加し、php サービスを再起動します。
centos6.8 で php をコンパイルしてインストールするにはどうすればよいですか?
centOS6.8、centOS7 の PHP のコンパイルとインストール:
PHP を centOS に 7 回インストールしましたが、centOS6.8 と centOS7 の両方で PHP をインストールできると結論付けました。 PHP をコンパイルしてインストールするメソッドを使用します。これは、長期にわたる病気のようなもので、優れた医師を育てます。最初はインストールできなくても心配する必要はありません。数回インストールすると経験が積まれます。 インストールの依存関係:yum -y install gd-devel zlib-devel libjpeg-devel libpng-devel libiconv-devel freetype-devel libxml2 libxml2-devel openssl openssl-devel curl-devel libxslt-devel libmcrypt-devel mhash mcrypt
cd /usr/local
tar zxvf php -7.1.5.tar.gz
cd php-7.1.5
编译:./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-fpm-user=www --with-fpm-group=www --with-iconv-dir --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --enable-mbregex --enable-fpm --enable-mbstring --with-mcrypt --with-gd --enable-gd-jis-conv --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --enable-opcache --with-libmbfl --with-onig --enable-pdo --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-pdo-mysql --enable-mysqlnd-compression-support --with-pear --enable-maintainer-zts --enable-session --with-gettext
make make install
cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf cp php.ini-development /usr/local/php/lib/php.ini cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm(这个很重要)
echo 'export PATH=/usr/local/php/bin:/usr/local/php/sbin:$PATH'>> /etc/profile
chkconfig --add php-fpm chkconfig php-fpm on chkconfig --list php-fpm
PHP ビデオ チュートリアル 」
以上がcentos6.8でphpをコンパイルしてインストールする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。