ubuntu18.04下载apache2
时间: 2023-06-28 09:13:06 浏览: 85
Ubuntu系统安装Apache2
你可以通过以下命令在 Ubuntu 18.04 中下载 Apache2:
```
sudo apt-get update
sudo apt-get install apache2
```
第一条命令用于更新软件包列表,第二条命令用于安装 Apache2。安装完成后,你可以通过以下命令检查 Apache2 是否已经成功安装:
```
sudo systemctl status apache2
```
如果 Apache2 已经运行,则会得到类似以下输出:
```
● apache2.service - The Apache HTTP Server
Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)
Active: active (running) since Wed 2019-08-07 16:42:18 UTC; 15s ago
```
如果 Apache2 没有运行,则可以通过以下命令启动它:
```
sudo systemctl start apache2
```
阅读全文