如果你在Ubuntu上運行命令"service httpd start"或者"systemctl start httpd"時報錯提示“httpd不存在”,可能是因為你的系統中沒有安裝Apache HTTP Server(httpd)。
要解決這個問題,你需要安裝Apache HTTP Server。
sudo apt update
sudo apt install apache2
sudo systemctl start apache2
或者sudo service apache2 start
現在,你應該能夠成功啟動Apache HTTP Server了。可以在瀏覽器中輸入"http://localhost/"來驗證是否啟動成功。