溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

centos6如何安裝php模塊

發(fā)布時間:2021-09-02 17:32:29 來源:億速云 閱讀:146 作者:chen 欄目:編程語言

這篇文章主要介紹“centos6如何安裝php模塊”,在日常操作中,相信很多人在centos6如何安裝php模塊問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”centos6如何安裝php模塊”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!


本文操作環(huán)境:centos 6系統(tǒng)、php 5.6、thinkpad t480電腦。

下面是centos6.5編譯安裝php 5.6(apache模塊)的方法步驟:

一、環(huán)境準備

1、下載php源碼包

# wget http://cn2.php.net/distributions/php-5.6.30.tar.gz
# tar -xf php-5.6.30.tar.gz -C /usr/local/src/

2、創(chuàng)建www用戶

# groupadd www
# useradd -g www -s /sbin/nologin -M www

3、安裝epel源

# yum install epel-release -y

4、安裝依賴包

# yum install gcc gcc-c++ make zlib zlib-devel libxml2 libxml2-devel libjpeg-devel libjpeg-turbo-devel libiconv libiconv-devel freetype-devel libpng-devel gd bison bison-devel readline-devel gd-devel libicu-devel libedit-devel libcurl-devel sqlite-devel jemalloc jemalloc-devel libxslt-devel libmcrypt libmcrypt-devel mhash mhash-devel mcrypt pcre pcre-devel bzip2 bzip2-devel curl curl-devel openssl-devel openldap openldap-devel -y

二、編譯安裝

./configure --prefix=/usr/local/php \
--with-config-file-path=/etc/php/ \
--with-apxs2=/usr/local/httpd24/bin/apxs \
--with-mysql=mysqlnd \
--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-gd \
--with-iconv \
--with-mcrypt \
--with-mhash \
--with-openssl \
--with-curl \
--with-zlib \
--with-bz2 \
--with-freetype-dir \
--with-jpeg-dir \
--with-png-dir \
--with-xsl \
--with-pcre-dir \
--with-readline \
--with-gettext \
--with-xmlrpc \
--with-libxml-dir \
--enable-shared \
--enable-bcmath \
--enable-soap \
--enable-mbregex \
--enable-pcntl \
--enable-opcache \
--enable-calendar \
--enable-shmop \
--enable-xml \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--enable-sockets \
--enable-ftp \
--enable-zip \
--enable-gd-jis-conv \
--enable-exif \
--enable-mbstring \
--enable-inline-optimization \
--disable-debug \
--disable-rpath
# make && make install

三、配置服務

# mkdir /etc/php
# cp php.ini-development /etc/php/php.ini

添加環(huán)境變量PATH

# vim /etc/profile
PATH=$PATH:/usr/local/php/bin    
export PATH  
# source /etc/profile

查看php配置文件路徑

# /usr/local/php/bin/php --ini

查看php編譯參數(shù)

# /usr/local/php/bin/php-config

四、配置apache支持php

修改Apache的配置文件httpd.conf
DirectoryIndex index.html index.php #添加index.php
找到:
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
添加如下內(nèi)容
AddType application/x-httpd-php-source .phps
AddType application/x-httpd-php .php
檢查LoadModule php5_module modules/libphp5.so 是否已經(jīng)添加 libphp5.so文件是否存在
編寫測試文件index.php內(nèi)容如下,放到Apache的默認的Web站點目錄DocumentRoot #默認路徑/var/www/html

<?php
phpinfo();
?>

啟動Apache服務,若啟動失敗,查看配置文件httpd.conf,找到錯誤日志error.log,針對問題修改。

service httpd restart

用瀏覽器訪問http://IP/,可以查看到PHP配置就表示你成功了

到此,關于“centos6如何安裝php模塊”的學習就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI