|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
欢迎大家来到仓酷云论坛!必要下载的包
apr-1.5.0.tar.gz
apr-util-1.5.3.tar.gz
pcre-8.33.tar.gz
httpd-2.4.9.tar.gz
我是一致放到/usr/下解压
装置apr-1.5.0
./configure--prefix=/usr/local/apr
make
makeinstall
装置apr-util-1.5.3
./configure--prefix=/usr/local/apr-util--with-apr=/usr/local/apr/bin/apr-1-config
make
makeinstall
注重在实行./configure--prefix=/usr/local/apr-util--with-apr=/usr/local/apr/bin/apr-1-config呈现cannotinstall`libaprutil-1.latoadirectorynotendingin/usr/local/apr/lib
实行makeclean
装置pcre-8.33
./configure--prefix=/usr/local/pcre
make
makeinstall
注重在实行./configure--prefix=/usr/local/pcre呈现YouneedaC++compilerforC++support时
实行yuminstall-ygccgcc-c++
装置httpd-2.4.9
./configure--prefix=/usr/local/apache2--enable-so--enable-rewrite--enable-mods-shared=most--with-apr=/usr/local/apr--with-apr-util=/usr/local/apr-util--with-pcre=/usr/local/pcre
make
makeinstall
修正:/usr/local/apache2/conf
用记事本翻开httpd.conf
将内里的#ServerNamewww.ckuyun.comt:80正文往失落便可,把www.ckuyun.com改成localhost
再实行servicehttpdstart
然后能够经由过程扫瞄器会见http://localhost:80,假如页面显现“Itworks!”,即暗示apache已装置并启动乐成。
增加到启动项
办理httpd:未被辨认的办事
cp/usr/local/apache/bin/apachectl/etc/rc.d/init.d/httpd
vi/etc/rc.d/init.d/httpd
在开首的#!/bin/sh上面加上
#chkconfig:23458515
chkconfig--addhttpd增加httpd办事
yuminstalllynx-y
实行servicehttpdstatus呈现
servicehttpdstatus
NotFound
TherequestedURL/server-statuswasnotfoundonthisserver.
暂未办理
重启Apache
servicehttpdrestart
至此apache办事器软件装置终了
=====================以下是网上材料=====================
进进/usr/local/apache2/conf目次,运转以下下令修正设置文件
vimhttpd.conf
a)1往失落上面语句前的#
LoadModulephp5_modulemodules/libphp5.so
假如没有文句,可增加到已有的LoadModule语句下
b)修正邮箱
修正为本人的邮箱ServerAdmin***@gmail.com
修正办事器名为本机ip地点以下:ServerName192.168.1.191:80
c)修正首页索引
修正首页索引文件以下(首页为index.php或index.html):
DirectoryIndexindex.phpindex.html
d)AddType修正
增加以下AddType到已有的AddType上面(没有上面语句将不克不及剖析php文本)
AddTypeapplication/x-httpd-php.php.phtml.php3.inc
Error403Accessforbidden!
运转下令- vi/usr/local/apache/conf/extra/httpd-info.conf
复制代码 将- <Location/server-status>SetHandlerserver-statusOrderdeny,allowDenyfromallAllowfrom.example.com</Location>
复制代码 改成- <Location/server-status>SetHandlerserver-statusOrderdeny,allowDenyfromallAllowfrom127.0.0.1</Location>
复制代码
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的好朋友们! |
|