linux源码编译安装httpd
时间: 2023-10-11 13:12:38 浏览: 201
linux 安装httpd 所需要安装各自安装包
安装 Apache HTTP Server (httpd) 可以使用系统的软件包管理器,也可以从源代码编译安装。本文将介绍从源代码编译安装 Apache HTTP Server。
1. 下载 Apache HTTP Server 源代码
到 Apache HTTP Server 官网下载最新版本的源代码,下载地址为:https://httpd.apache.org/download.cgi。
例如,下载最新版的 Apache HTTP Server 2.4.41:
```
$ wget https://mirrors.tuna.tsinghua.edu.cn/apache//httpd/httpd-2.4.41.tar.gz
```
2. 解压源代码
解压下载的源代码包:
```
$ tar xvzf httpd-2.4.41.tar.gz
```
进入解压后的目录:
```
$ cd httpd-2.4.41
```
3. 配置编译选项
使用 configure 脚本配置编译选项:
```
$ ./configure --prefix=/usr/local/apache2 --enable-so --enable-ssl --with-ssl=/usr/local/openssl
```
其中,--prefix 指定安装目录,--enable-so 表示启用模块支持,--enable-ssl 启用 SSL 支持,--with-ssl 指定 OpenSSL 的安装路径。
4. 编译并安装
编译源代码:
```
$ make
```
安装 Apache HTTP Server:
```
$ sudo make install
```
5. 启动 Apache HTTP Server
进入 Apache HTTP Server 安装目录:
```
$ cd /usr/local/apache2
```
启动 Apache HTTP Server:
```
$ sudo ./bin/apachectl start
```
打开浏览器,访问 http://localhost/,如果能够看到 "It works!" 的页面,则说明 Apache HTTP Server 安装成功。
6. 配置 Apache HTTP Server
Apache HTTP Server 的主要配置文件为 conf/httpd.conf。可以通过编辑该文件来配置 Apache HTTP Server。
例如,修改监听端口:
```
$ sudo vi conf/httpd.conf
```
将以下行:
```
Listen 80
```
修改为:
```
Listen 8080
```
保存并退出编辑器。重新启动 Apache HTTP Server:
```
$ sudo ./bin/apachectl restart
```
现在,Apache HTTP Server 会监听 8080 端口。
以上就是从源代码编译安装 Apache HTTP Server 的步骤。
阅读全文