php5.6編譯安裝apache

來源:互聯網
上載者:User

標籤:sock   針對   下載源碼   disable   get   安裝環境   修改   oca   string   

1、下載源碼包
wget 網址/php-5.6.30.tar.gz
2、解壓源碼包
tar -zxvf php-5.6.30.tar.gz
3、建立一個安裝目錄
mkdir /usr/local/php
4、進入解壓後的目錄中,初始化安裝環境:
./configure \
--prefix=/usr/local/php \
--with-apxs2=/usr/local/apache/bin/apxs \
--with-config-file-path=/usr/local/php/etc \
--with-mysql=/usr/local/mysql \
--with-libxml-dir \
--with-gd \
--with-jpeg-dir \
--with-png-dir \
--with-freetype-dir \
--with-iconv-dir \
--with-zlib-dir \
--with-bz2 \
--with-openssl \
--with-mcrypt \
--enable-soap \
--enable-gd-native-ttf \
--enable-mbstring \
--enable-sockets \
--enable-exif \
--disable-ipv6
錯誤
configure: error: jpeglib.h not found.
[[email protected] php-5.6.30]#
安裝 yum install -y libjpeg-devel
錯誤
configure: error: mcrypt.h not found. Please
reinstall libmcrypt.
[[email protected] php-5.6.30]#
安裝yum install -y epel-release libmcrypt-devel
5、編繹:make
6、安裝:make install
/usr/local/php/bin/php -i 查看相關的配置
拷備設定檔到指定目錄下
/usr/local/apache2/bin/apachectl restart
因為配置php,更改了apache,需要重啟apachectl服務
拷備/usr/local/src/php.../php.ini-production
到/usr/local/php/etc/php.ini
修改apache設定檔
vi /usr/local/apache2/conf/httpd.conf
在 DirectoryIndex index.html 後加上index.php
說明:增加針對php的索引,如果一個網站預設頁為
index.php,那麼就得加上這個index.php的支援。
在 AddType application/x-gzip .gz .tgz下
加上一行
AddType application/x-httpd-php .php
說明:支援php指令碼解析,必須加上對應的類型。
找到:
#ServerName www.example.com:80
修改為:
ServerName localhost:80
檢查設定檔是否有問題:
/usr/local/apache2/bin/apachectl -t
/usr/local/apache2/bin/apachectl restart
因為配置php,更改了apache,需要重啟apachectl服務

php5.6編譯安裝apache

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.