Centos

將 Unix apache Web 伺服器配置為在重新啟動時自動啟動?

  • June 16, 2017

您將如何配置 Unix Web 伺服器以在重新啟動時自動啟動?

Webserver- apache Web 伺服器 os-centos 使用 Wget 命令我已經下載了 apache Web 伺服器。

例如在 Windows 中,對於同樣的情況,我會安裝帶有 windows 服務的 apache tomcat。在服務中,我將執行配置標記為自動。因此,如果主 Windows 伺服器重新啟動。apache tomcat 會自動啟動並執行。

我需要在 redhat 和 centos 中使用 apache webserver 來實現這一點

我不太明白你的問題,因為它寫得很糟糕,但我會盡力提供幫助。

執行以下程式碼使httpd服務在啟動時執行

sudo systemctl enable httpd

執行下面的程式碼來啟動這次的httpd服務,因為它可能還沒有被啟動

sudo systemctl start httpd

引用自:https://unix.stackexchange.com/questions/371565