在 Ubuntu 上启动 Apache 服务,你可以使用以下命令:
打开终端(快捷键:Ctrl + Alt + T)
输入以下命令以启动 Apache 服务:
sudo systemctl start apache2
sudo systemctl status apache2
如果 Apache 服务已成功启动,你将看到类似于以下的输出:
● apache2.service - The Apache HTTP Server
Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)
Active: active (running) since ...
现在,Apache 服务已经在 Ubuntu 上启动并运行。你可以通过访问 http://your_server_ip
或 http://localhost
在浏览器中查看 Apache 默认页面。
如果你希望在系统启动时自动运行 Apache 服务,请输入以下命令:
sudo systemctl enable apache2