Linux中安装Apache2手记
参考文档:http://lamp.linux.gov.cn/Apache/ApacheMenu/
Ø 下载Apache2.2.4 的压缩包,文件名为:Apache21.tar.gz ;
Ø 在 /usr/local 目录下解压此压缩文件:
[root@wxr local]# tar xzvf Apache21.tar.gz
之后生成一个名为“httpd-2.2.4 ”的文件夹;
Ø apr 和apr-util 包含在Apache httpd 的发行源代码中,并且在绝大多数情况下使用都不会出现问题。当然,如果apr 或apr-util 的1.0 或1.1 版本已经安装在你的系统中了,则必须将你的apr/apr-util 升级到1.2 版本,或者将httpd 单独分开编译。要使用发行源代码中自带的apr/apr-util 源代码进行安装,你必须手动完成:
# 编译和安装 apr
cd /usr/local/httpd-2.2.4/srclib/apr
./configure --prefix=/usr/local/apr-httpd/
make
make install
# 编译和安装 apr-util
cd /usr/local/httpd-2.2.4/srclib/apr-util
./configure --prefix=/usr/local/apr-util-httpd/ --with-apr=/usr/local/apr-httpd/
make
make install
# 配置和安装 httpd
cd /usr/local/httpd-2.2.4
./configure --with-apr=/usr/local/apr-httpd/ --with-apr-util=/usr/local/apr-util-httpd/
make
make install
之后会在local 目录下生成一个”apache2” 的文件目录,即安装的apache 目录。
Ø 启动apache :
cd /usr/local/apache2/bin
[root@wxr bin]# ./apachectl start
Ø 查看测试页:
在其他机器上如果能ping 通安装了apache 的服务器地址,就应该能访问apache 的测试页了,如在ie 中直接访问:http://192.168.2.254
另外,apache 安装后的默认端口号是80 ,如果此端口号被占用了也不会访问到测试页,此时需要手动改一下端口号:
cd /usr/local/apache2/conf
[root@wxr conf]# vi httpd.conf
#
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2> for detailed information.
# In particular, see
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
# for a discussion of each configuration
相关文档:
linux中文乱码问题
最近,公司在XP系统于LINUX之间传数据时出现了中文乱码问题!
首先,解释一下字符集:
汉字编码:
* GB2312字集是简体字集,全称为GB2312(80)字集,共包括国标简体汉字6763个。 * BIG5字集是台湾繁体字集,共包括国标繁体汉字13053个。 * GBK字集是简繁字集,包括了GB字集、BIG5字集和一些符号,共 ......
1、查看telent是否安装:rpm -q
telnet
[root@localhost root]#rpm -qa Linux telnet
Linux telnet-0.17-25
//Linux&n ......
问题描述:
当linux启动到sendmail服务时,无法正常进入系统
解决问题:
1、并不是无法进去,而是这一个服务启动的特别慢,所以敬请等待
2、如启动时不想等待,OK,那当我们进入以后,关掉sendmail服务: ......
USB是大家常见的,设备总线。 这个USB分为两个部分:主机,设备。 他是一个树形的关系: 主机
设备 设备 设备 主机里装的是,主机控制器,设备中装的是设备控制器 Host Controller ......
Linux设备模型之tty驱动架构分析
来源: ChinaUnix博客 日期: 2008.07.25 16:24 (共有0条评论) 我要评论
------------------------------------------
本文系本站原创,欢迎转载!
转载请注明出处:http://ericxiao.cublog.cn/
------------------------------------------
一:前言
Tty这个名称 ......