linux下配置php Apache mysql

來源:互聯網
上載者:User

標籤:blog   http   os   io   檔案   for   art   ar   

一 Apache部分

http://www.cnblogs.com/bluewelkin/p/3805107.html
裡面是糾正了原文的一些小錯誤,即可正常安裝

1、su 命令
2、安裝apr-1.3.5.tar.gz
# tar zxvf apr-1.3.5.tar.gz

# cd apr-1.3.5

# ./configure
出現錯誤
no acceptable C compiler found in $PATH
---------------------------------------------
解決方案,沒有按照GCC套件
切換到root許可權: su
輸入密碼後即為root許可權,然後保證電腦能連網,輸入:
yum install  gcc

#make

#make install
3、
安裝apr-util-1.3.7.tar.gz
# tar zxvf apr-util-1.3.7.tar.gz

# cd apr-util-1.3.7

# . /configure --with-apr=/usr/local/apr
./configure --with-apr=/usr/local/apr(這個是修正之後的)

 

# make

# make install
4
安裝httpd-2.2.11.tar.gz
# tar zxvf httpd-2.2.11.tar.gz

# ./configure --prefix=/usr/local/apache2 --enable-dav --enable-modules=so --enable-maintainer-mode --enable-rewrite

--with-apr=/usr/local/apr/bin/apr-1-config --with-apr-util=/usr/local/apr/bin/apu-1-config

【bash: ./configure: 沒有那個檔案或目錄

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

解決方案: chmod a+x configure 修改一下這個檔案的許可權即可】


# make

# make install

 

啟動Apache服務:

# /usr/local/apache2/bin/apachectl start
apache啟動時
出現錯誤 httpd: apr_sockaddr_info_get() failed for
httpd: apr_sockaddr_info_get() failed for VM_74_204_centos
httpd: Could not reliably determine the server‘s fully qualified domain name, using 127.0.0.1 for ServerName
解決方案
--------------------------------------------
 在Apache的安裝目錄下的conf檔案修改httpd.conf如下
   (1) ServerName localhost:80                       

   或者在 /etc/hosts 中填入自己的主機名稱 bogon,如下:
   (2)127.0.0.1 bogon
---------------------------------------------
並且編輯如下:
 編輯 /usr/local/apache2/conf/httpd.conf 檔案       
  找到:    AddType  application/x-compress .Z    AddType application/x-gzip .gz .tgz  
 在後面添加:
   AddType application/x-httpd-php .php(使Apcche支援PHP)    A
ddType application/x-httpd-php-source .php5     
 找到:    <IfModule dir_module>    DirectoryIndex index.html    </IfModule> 
  添加:    <IfModule dir_module>    DirectoryIndex index.html index.php    </IfModule>      
 找到:    #ServerName www.example.com:80  
 修改為:    ServerName 127.0.0.1:80或者ServerName localhost:80   
記得要去掉前面的“#”     

用瀏覽器查看http://localhost/,得到It works!

說明apache已經配置成功了。

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

參考文章:http://www.cnblogs.com/lufangtao/archive/2012/12/30/2839679.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.