溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

linux下怎么安裝apache與php

發(fā)布時(shí)間:2021-07-14 13:49:40 來源:億速云 閱讀:305 作者:chen 欄目:系統(tǒng)運(yùn)維

本篇內(nèi)容主要講解“l(fā)inux下怎么安裝apache與php”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“l(fā)inux下怎么安裝apache與php”吧!

1.apache
在如下頁面下載apache的for Linux 的源碼包
http://www.apache.org/dist/httpd/;
存至/home/xx目錄,xx是自建文件夾,我建了一個(gè)wj的文件夾。

命令列表: 
cd /home/wj
tar -zxvf httpd-2.0.54.tar.gz
mv httpd-2.0.54 apache
cd apache
./configure --prefix=/usr/local/apache2 --enable-module=so
make
make install 
安裝apache至/usr/local/apache 并配置apache支持dso方式
2.php
在如下頁面下載php的for Linux 的源碼包 
http://www.php.net/downloads.php ;
存至/home/wj目錄
命令列表:
cd /home/wj
tar -zxvf php-5.0.4.tar.gz
mv php-5.0.4 php
cd php
./configure --prefix=/usr/local/php5 --with-apxs2=/usr/local/apache2/bin/apxs --with-config-file-path=/usr/local/lib --enable-track-vars --with-xml --with-MySQL
make
make install
其中apache和mysql是根據(jù)你安裝的目錄名變,我的是 =/usr/local/apache2/bin/apxs 和MySQL
cp php.ini-dist /usr/local/lib/php.ini
以dso方式安裝php至/usr/local/php 設(shè)置配置文件目錄為/usr/local/lib 開啟mysql,xml支持
3.配置
 
vi /usr/local/apache/conf/httpd.conf
對(duì)apache做如下配置
#將ServerAdmin mailto:linux@linuxidc.com一行改為您的郵箱地址 

#DocumentRoot "/home/httpd/html/" 此處為html文件主目錄
# 同上
#Options FollowSymLinks MultiViews 為安全起見,去掉"Indexes" 
#
# DirectoryIndex default.php default.phtml default.php3 default.html default.htm
#
#設(shè)置apache的默認(rèn)文件名次序
#AddType application/x-httpd-php .php .phtml .php3 .inc
#AddType application/x-httpd-php-source .phps
#設(shè)置php文件后綴
存盤退出 
vi /usr/local/lib/php.ini
#register-golbals = On
存盤退出
4.啟動(dòng)服務(wù)
/usr/local/apache/bin/apachectl start  

5.測(cè)試  
然后寫個(gè)php測(cè)試頁info.php:內(nèi)容如下
〈?php
phpinfo();
?>
正常的話,應(yīng)該能看到php的信息了,恭喜你的Apche Mysql PHP安裝成功。
6、apache自動(dòng)啟動(dòng)- -
下面用自啟動(dòng)apache為例;
自啟動(dòng)腳本:
/usr/local/apache/bin/apachectl start
文件位于/etc/rc.d/init.d下,名為apached,注意要可執(zhí)行.
#chmod x /etc/rc.d/init.d/apached //設(shè)置文件的屬性為可執(zhí)行
#ln -s /etc/rc.d/init.d/apached /etc/rc3.d/S90apache //建立軟連接,快捷方式
#ln -s /etc/rc.d/init.d/apached /etc/rc0.d/K20apache

到此,相信大家對(duì)“l(fā)inux下怎么安裝apache與php”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

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

AI