標籤: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