91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

CentOS7 Apache 2.4.23 + php-5.6.30 安裝 配置

發布時間:2020-07-03 22:57:51 來源:網絡 閱讀:1925 作者:liuzhenlife 欄目:web開發

下載Apache安裝包  httpd-2.4.23.tar.gz

下載地址:http://apache.fayea.com/httpd/


Apache 安裝要求

必須安裝APR、APR-Util、PCRE,gcc、gcc-c++等包


安裝gcc和gcc-c++我采用yum安裝的方式

yum -y install gcc gcc-c++


編譯命令:(除了指定Apache的安裝目錄外,還要安裝apr、apr-util、pcre,并指定參數)

[root@bogon software]# wget http://archive.apache.org/dist/httpd/httpd-2.4.23.tar.gz
[root@bogon software]# tar -zxvf httpd-2.4.23.tar.gz
[root@bogon software]# cd httpd-2.4.23
[root@bogon httpd-2.4.23]# ./configure --prefix=/usr/local/apache2 \
--with-apr=/usr/local/apr \
--with-apr-util=/usr/local/apr-util/ \
--with-pcre=/usr/local/pcre
checking for chosen layout... Apache
checking for working mkdir -p... yes
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
configure: 
configure: Configuring Apache Portable Runtime library...
configure: 
checking for APR... configure: error: the --with-apr parameter is incorrect. It must specify an install prefix, a build directory, or an apr-config file.
[root@bogon httpd-2.4.23]#

 在編譯Apache時出現了上面問題,因為我還沒有安裝apr、apr-util、pcre,接下來依次安裝依賴


http://apr.apache.org/download.cgi  下載apr-1.5.2.tar.gz、apr-util-1.5.4.tar.gz

http://www.pcre.org/ 官網

https://sourceforge.net/projects/pcre/files/pcre/  選擇pcre下載,不用pcre2

下載最新版本pcre-8.39.tar.gz


解決apr問題

[root@bogon software]# wget http://archive.apache.org/dist/apr/apr-1.5.2.tar.gz
[root@bogon software]# tar -zxvf  apr-1.5.2.tar.gz
[root@bogon software]# cd apr-1.5.2/
[root@bogon apr-1.5.2]# ./configure --prefix=/usr/local/apr
[root@bogon apr-1.5.2]# make && make install

解決APR-util問題 

[root@bogon software]# wget http://archive.apache.org/dist/apr/apr-util-1.5.4.tar.gz
[root@bogon software]# tar -zxvf apr-util-1.5.4.tar.gz
[root@bogon software]# cd apr-util-1.5.4/
[root@bogon apr-util-1.5.4]# ./configure --prefix=/usr/local/apr-util \
-with-apr=/usr/local/apr/bin/apr-1-config
[root@bogon apr-util-1.5.4]# make && make install

make過程如果遇到下面這個錯誤,可能缺expat的開發庫,安裝expat庫試試。yum install expat-devel

[root@jdu4e00u53f7 apr-util-1.6.0]# make 
make[1]: Entering directory `/liuzhen/source/apr-util-1.6.0'
/bin/sh /liuzhen/apr/build-1/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/liuzhen/source/apr-util-1.6.0/include -I/liuzhen/source/apr-util-1.6.0/include/private  -I/liuzhen/apr/include/apr-1    -o xml/apr_xml.lo -c xml/apr_xml.c && touch xml/apr_xml.lo
xml/apr_xml.c:35:19: fatal error: expat.h: No such file or directory
 #include <expat.h>
                   ^
compilation terminated.
make[1]: *** [xml/apr_xml.lo] Error 1
make[1]: Leaving directory `/liuzhen/source/apr-util-1.6.0'
make: *** [all-recursive] Error 1


解決pcre-config問題

[root@bogon software]# wget https://sourceforge.net/projects/pcre/files/pcre/8.39/pcre-8.39.tar.gz
[root@bogon software]# tar -zxvf pcre-8.39.tar.gz
[root@bogon software]# cd pcre-8.39
[root@bogon pcre-8.39]# ./configure --prefix=/usr/local/pcre
[root@bogon pcre-8.39]# make && make install

 再次編譯httpd-2.4.23:

[root@bogon software]# cd httpd-2.4.23
[root@bogon httpd-2.4.23]# ./configure --prefix=/usr/local/apache2 \
--with-apr=/usr/local/apr \
--with-apr-util=/usr/local/apr-util/ \
--with-pcre=/usr/local/pcre
[root@bogon httpd-2.4.23]# make && make install

編輯 httpd.conf 文件

[root@localhost liuzhen]# vi /usr/local/apache2/conf/httpd.conf

找到:

#ServerName www.example.com:80

修改為:

ServerName 127.0.0.1:80或者ServerName localhost:80

記得要去掉前面的“#”


啟動Apache

[root@localhost liuzhen]# /usr/local/apache2/bin/apachectl start

停止Apache

[root@localhost liuzhen]# /usr/local/apache2/bin/apachectl stop

重啟Apache

[root@localhost liuzhen]# /usr/local/apache2/bin/apachectl restart

在瀏覽器中通過http://localhost:80,如果看到頁面中顯示“It works!”字樣,則代表Apache驗證通過。


接下來是PHP相關配置


編輯 httpd.conf 文件

[root@localhost liuzhen]# vi /usr/local/apache2/conf/httpd.conf

找到:

<IfModule dir_module>

DirectoryIndex index.html

</IfModule>

添加:

<IfModule dir_module>

DirectoryIndex index.php index.html

</IfModule> 

 

 找到:

AddType  application/x-compress .Z

AddType application/x-gzip .gz .tgz

在后面添加(使Apcche支持PHP):

AddType application/x-httpd-php .php

AddType application/x-httpd-php-source .php5      


修改默認的Web站點目錄


     默認的目錄為  "/usr/local/apache2/htdocs",修改apache的配置文件httpd.conf,比如在新建一個 /home/gyw/WebSite的目錄作為apache的站點目錄


    找到DocumentRoot這一行修改為:DocumentRoot "/home/gyw/WebSite"


   找到 <Directory> 這一行修改為:<Directory "/home/gyw/WebSite"> 


測試:修改到文件夾出現錯誤:

“You don't have permission to access /index.html on this server.”


解決方法:

更改文件權限;chmod 755 index.html


打開apache配置文件httpd.conf,找到這么一段:

<Directory />

     Options FollowSymLinks

     AllowOverride None

     Order deny,allow

     deny from all

     Satisfy all

</Directory>


安裝PHP 

我在php開發過程中需要使用gd2,所以順便把安裝gd2安裝上

[root@localhost liuzhen]# yum -y install libpng libpng-devel php-gd

PHP下載地址:http://www.php.net/downloads.php

[root@localhost liuzhen]# wget -O ./php-5.6.30.tar.gz http://hk1.php.net/get/php-5.6.30.tar.gz/from/this/mirror
[root@localhost liuzhen]# tar -zxvf php-5.6.30.tar.gz
[root@localhost liuzhen]# cd php-5.6.30
[root@localhost php-5.6.30]# ./configure --prefix=/usr/local/php \
--with-apxs2=/usr/local/apache2/bin/apxs \
--with-mysql=mysqlnd \
--with-gd

出現下面錯誤

Sorry, I cannot run apxs.  Possible reasons follow:

1. Perl is not installed
2. apxs was not found. Try to pass the path using --with-apxs2=/path/to/apxs
3. Apache was not built using --enable-so (the apxs usage page is displayed)

The output of /liuzhen/apache2/bin/apxs follows:
./configure: /liuzhen/apache2/bin/apxs: /replace/with/path/to/perl/interpreter: bad interpreter: No such file or directory
configure: error: Aborting

解決步驟:

1、根據不能run apxs 。cd 到apache的bin目錄下運行./apxs 運行結果

----------------------------------------------------

bash: ./apxs: /replace/with/path/to/perl/interpreter: bad interpreter: No such file or directory

---------------------------------------------------------

2、vim apxs文件 找“/replace/with/path/to/perl/interpreter”關鍵字

在第一個行 :#!/replace/with/path/to/perl/interpreter -w

根據perl的安裝目錄 /usr/bin/perl

修改為:#! /usr/bin/perl -w


重新執行php configure

[root@localhost php-5.6.30]# ./configure --prefix=/usr/local/php \
--with-apxs2=/usr/local/apache2/bin/apxs \
--with-mysql=mysqlnd \
--with-gd

出現錯誤:configure: error: xml2-config not found. Please check your libxml2 installation.

  安裝libxml2和libxml2-devel

[root@localhost php-5.6.30]# yum -y install libxml2 libxml2-devel

再次執行./configure命令有可能還會出現下面這個錯誤

PEAR package PHP_Archive not installed: generated phar will require PHP's phar extension be enabled.
clicommand.inc
directorytreeiterator.inc
invertedregexiterator.inc
directorygraphiterator.inc
pharcommand.inc
phar.inc

Build complete.
Don't forget to run 'make test'.

-bash: $'\343\200\200make': command not found

php 的編譯時需要依賴pear package ,目前的問題錯誤"PEAR package PHP_Archive not installed",已經明顯報出這個問題。 
因此編譯使用參數 --without-pear   將pear 屏蔽掉編譯安裝后,再進行安裝;同時因為phar 屬于pear的一個庫 ,所以不將phar關閉掉,同時還會報這個錯誤, 
同時需要使用 --disable-phar   編譯參數. 

./configure --without-pear  --disable-phar
make
make install

成功編譯安裝完成后,再安裝pear

wget  http://pear.php.net/go-pear.phar 
/usr/local/bin/php go-pear.phar

重新運行上面的./configure命令

[root@localhost php-5.6.30]# ./configure --prefix=/usr/local/php \
--with-apxs2=/usr/local/apache2/bin/apxs \
--with-mysql=mysqlnd \
--with-gd
[root@localhost php-5.6.30]# make && make install

--with-mysql=mysqlnd 加上此參數支持mysql

--with-gd 支持gd

    注意這里有一個-with-apxs2=/usr/local/apache2/bin/apxs選項,其中apxs是在安裝Apache時產生的,apxs是一個為Apache HTTP服務器編譯和安裝擴展模塊的工具,使之可以用由mod_so提供的LoadModule指令在運行時加載到Apache服務器中。我的理解是通過這個工具把PHP模塊動態加載到Apache中


把原來位于源代碼里面的php.ini-development拷貝到/usr/local/php/lib/php.ini下,并且重命名為php.ini

[root@localhost liuzhen]# cp /liuzhen/php-5.3.29/php.ini-development /usr/local/php/lib/php.ini

編輯/usr/local/php/lib/php.ini文件,找到;extension=php_gd2.dll將前面分號去掉


先停止apache后重啟apache 

[root@localhost liuzhen]# /usr/local/apache2/bin/apachectl stop
[root@localhost liuzhen]# /usr/local/apache2/bin/apachectl restart

測試

    在apache的htdocs下建立一個php文件test.php,里面的內容如下:

    <?php

    phpinfo();

    ?>

    然后在瀏覽器里輸入http://127.0.0.1/test.php

    如果出現php的相關配置,成功,如果什么都沒有輸入,說明失敗,重新以上步驟或者查找原因


如果決定在安裝后改變配置選項,只需重復最后的三步configure, make, 以及 make install,然后需要重新啟動 Apache 使新模塊生效。Apache不需要重新編譯。


下面是我留的筆記就不用看了CentOS7 Apache 2.4.23 +  php-5.6.30 安裝 配置

==========================

安裝gd2,安裝gd2的時候順帶安裝了jpeg,png,zlib


1、安裝zlib


http://www.zlib.net/

http://www.zlib.net/zlib-1.2.11.tar.gz


tar xf zlib-1.2.7.tar.gz


cd zlib-1.2.7

./configure

make

make install



2、安裝 jpeg

https://jpeg.org/

http://www.ijg.org/

http://www.ijg.org/files/jpegsrc.v9b.tar.gz


tar xf jpegsrc.v9a.tar.gz

cd jpeg-9a

./configure --prefix=/usr/local/jpeg --enable-shared --enable-static

make

make install



3、安裝 libpng

http://www.libpng.org/pub/png/libpng.html

http://download.sourceforge.net/libpng/libpng-1.6.28.tar.gz


http://blog.csdn.net/wang02011/article/details/7066361 


tar xf libpng-1.6.12.tar.gz

cd libpng-1.6.12

./configure --prefix=/usr/local/libpng

make

make install 



4、安裝freetype

https://www.freetype.org/download.html

http://download.savannah.gnu.org/releases/freetype/

http://download.savannah.gnu.org/releases/freetype/freetype-2.7.1.tar.gz


tar xf freetype-2.5.3.tar.gz

cd freetype-2.5.3

./configure --prefix=/usr/local/freetype

make

make install 


5、安裝gd2

yum install php-gd

https://libgd.github.io/

https://github.com/libgd/libgd/archive/gd-2.2.4.tar.gz


tar xf libgd-2.1.0.gz

cd libgd-2.1.0

./configure --prefix=/usr/local/gd2 --with-jpeg=/usr/local/jpeg/ --with-png=/usr/local/png/ --with-zlib=/usr/local/zlib/ --with-freetype=/usr/local/freetype/

make

make install

(注,版本這里必須>=2.1.0,否則用php-5.6.0會報錯,可能老版本的php不會報錯)


安裝php是參數調整

[root@localhost php-5.6.30]# ./configure --prefix=/usr/local/php \
--with-apxs2=/usr/local/apache2/bin/apxs \
--with-php-config=/usr/local/php/bin/php-config \
--with-jpeg-dir=/usr/local/jpeg \
--with-png-dir=/usr/local/libpng \
--with-freetype-dir=/usr/local/freetype \
--with-mysql=mysqlnd \
--with-gd
[root@localhost php-5.6.30]# make && make install


安裝curl

官網地址:https://curl.haxx.se/

下載地址:https://curl.haxx.se/download/curl-7.53.1.tar.gz

[root@bogon liuzhen]# wget https://curl.haxx.se/download/curl-7.53.1.tar.gz
[root@bogon liuzhen]# tar -zxvf curl-7.53.1.tar.gz
[root@bogon liuzhen]# cd curl-7.53.1
[root@bogon curl-7.53.1]# ./configure --prefix=/usr/local/curl
[root@bogon curl-7.53.1]# make && make install

#vim /usr/local/php/lib/php.ini

添加如下一行:

extension=curl.so

安裝php 只要打開開關 --with-curl=/usr/local/curl 就可以了。


-------------------------------------------------------------------------------------

CentOS7 Apache 2.4.23 +  php-5.6.30 安裝 配置


向AI問一下細節

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

AI

察雅县| 昌吉市| 二连浩特市| 皮山县| 阜平县| 平谷区| 北辰区| 宁津县| 清原| 华蓥市| 南靖县| 庆元县| 威宁| 通州区| 通河县| 襄樊市| 西盟| 三河市| 固始县| 蒙自县| 高邑县| 中超| 闻喜县| 开封县| 修文县| 泸溪县| 龙山县| 老河口市| 盱眙县| 德清县| 洛扎县| 乌鲁木齐市| 原平市| 星座| 建阳市| 广宗县| 邮箱| 宁乡县| 平谷区| 祁阳县| 都安|