linux 安装 apache
时间: 2023-08-19 22:39:32 浏览: 97
安装 Apache Web 服务器的步骤如下:
1. 打开终端,使用以下命令更新软件包列表:
```
sudo apt-get update
```
2. 使用以下命令安装 Apache2:
```
sudo apt-get install apache2
```
3. 安装完成后,可以使用以下命令启动 Apache2 服务:
```
sudo systemctl start apache2
```
4. 如果要让 Apache2 在系统启动时自动启动,可以使用以下命令:
```
sudo systemctl enable apache2
```
5. 可以使用以下命令检查 Apache2 是否正在运行:
```
sudo systemctl status apache2
```
此时,您已经成功安装了 Apache Web 服务器。您可以在浏览器中输入 `http://localhost` 或 `http://服务器IP地址` 来访问 Apache 的默认页面。
阅读全文