Red Hat Enterprise Linux 安装httpd(Apache)

操作步骤:

1.创建一个非root用户test

使用adduser创建一个用户test,并且给test设置密码,passwd test。

2.下载apache 2.0.54并编译安装

# tar -zxvf httpd-2.0.54.tar.gz

# cd httpd-2.0.54

# ./configure --enable-dav --enable-so --prefix=/test/apache2(注:这是设置apache的基本参数和安装路径,若有其他需要可以自行添加)

# make

# make install

# /test/bin/httpd -k start

如果能看到apache的工作页面,说明apache服务已经正常启动

相关推荐