標籤:重啟 memcach ml2 file csdn pdo_mysql oca 路徑 php
php.ini放在--with-config-file-path設定路徑下lib檔案夾中才找的到!!!!fpm的設定檔需要放在這個位置/usr/local/etc/php-fpm.conf,暫時不知道咋改;http://blog.csdn.net/xiaog351/article/details/47421969php:{cd /opt/appswget http://cn2.php.net/distributions/php-5.6.26.tar.gztar -xzvf php-5.6.26.tar.gz cd php-5.6.26/;./configure --prefix=/opt/apps/php(安裝目錄) --with-config-file-path=/opt/apps/php(配置目錄)--enable-fpm --with-mysql(php-fpm)yum install libxml2* -y makemake testmake installvim /etc/profile添加:PHP_HOME=/opt/apps/phpexport PATH=$PATH:$PHP_HOME/binsource /etc/profilephp -v 查看}php.ini放在--with-config-file-path設定路徑下lib檔案夾中才找的到!!!!ssl{ cd /opt/apps/php-5.6.26/ext/openssl cp config0.m4 config.m4 /opt/apps/php/bin/phpize ./configure --with-openssl --with-php-config=/opt/apps/php/bin/php-config make make test make install 在php.ini內加入以下內容:extension_dir = "/opt/apps/php/lib/php/extensions/no-debug-non-zts-20131226"extension = "openssl.so"重啟php、nginx後生效}php/sbin/php-fpm -y /opt/apps/php/etc/php-fpm.conf -c /opt/apps/php/php.ini裝memcached擴充{#wget http://pecl.php.net/get/memcache-2.2.6.tgz# tar zxf memcache-2.2.6.tgz# cd memcache-2.2.6# /usr/local/php/bin/phpize# ./configure --with-php-config=/usr/local/php/bin/php-config --enable-memcache# make# make install}裝pdo_mysql擴充{# cd /opt/php/php-5.6.30/ext/pdo_mysql# /usr/local/bin/phpize# ./configure --with-pdo-mysql=/opt/apps/mysql --with-php-conifg=/usr/local/bin/php-confi# make# make install}
伺服器php啟動