溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么安裝centos7的apache

發(fā)布時(shí)間:2020-07-13 10:02:56 來(lái)源:億速云 閱讀:159 作者:Leah 欄目:建站服務(wù)器

怎么安裝centos7的apache?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。

Apache HTTP服務(wù)器是世界上最流行的Web服務(wù)器。 它是一款免費(fèi)的開源和跨平臺(tái)的HTTP服務(wù)器,提供強(qiáng)大的功能,可以通過(guò)各種模塊進(jìn)行擴(kuò)展。 以下說(shuō)明介紹如何在CentOS 7機(jī)器上安裝和管理Apache Web服務(wù)器。

安裝Apache

Apache在默認(rèn)的CentOS倉(cāng)庫(kù)中可用,安裝非常簡(jiǎn)單。 在CentOS和RHEL上,Apache軟件包和服務(wù)稱為httpd。 要安裝軟件包,請(qǐng)運(yùn)行以下命令:

sudo yum install httpd

安裝完成后,啟用并啟動(dòng)Apache服務(wù):

sudo systemctl enable httpd
sudo systemctl start httpd

如果您正在運(yùn)行防火墻,則還需要打開HTTP和HTTPS端口80和443:

sudo firewall-cmd --permanent --zone=public --add-service=http
sudo firewall-cmd --permanent --zone=public --add-service=https
sudo firewall-cmd --reload

我們可以通過(guò)以下方式檢查Apache服務(wù)的狀態(tài)和版本:

sudo systemctl status httpd

輸出:

 httpd.service - The Apache HTTP Server
  Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
  Active: active (running) since Thu 2018-04-26 07:13:07 UTC; 11s ago
    Docs: man:httpd(8)
          man:apachectl(8)

 Main PID: 3049 (httpd)
  Status: "Total requests: 0; Current requests/sec: 0; Current traffic:  0 B/sec"
  CGroup: /system.slice/httpd.service
          ├─3049 /usr/sbin/httpd -DFOREGROUND
          ├─3050 /usr/sbin/httpd -DFOREGROUND
          ├─3051 /usr/sbin/httpd -DFOREGROUND
          ├─3052 /usr/sbin/httpd -DFOREGROUND
          ├─3053 /usr/sbin/httpd -DFOREGROUND
          └─3054 /usr/sbin/httpd -DFOREGROUND
sudo httpd -v

輸出:

Server version: Apache/2.4.6 (CentOS)
Server built:  Oct 19 2017 20:39:16

最后,要驗(yàn)證安裝,在您所選擇的瀏覽器中打開您的服務(wù)器IP地址http://YOUR_IP

使用systemctl管理Apache服務(wù)

我們可以像任何其他系統(tǒng)單元一樣管理Apache服務(wù)。

要停止Apache服務(wù),請(qǐng)運(yùn)行:

sudo systemctl stop httpd

要再次啟動(dòng),請(qǐng)鍵入:

sudo systemctl start httpd

重新啟動(dòng)Apache服務(wù):

$sudo systemctl restart httpd

在進(jìn)行一些配置更改后重新加載Apache服務(wù):

$sudo systemctl reload httpd

如果您想禁用Apache服務(wù)以在啟動(dòng)時(shí)啟動(dòng):

$sudo systemctl disable httpd

并重新啟用它:

$sudo systemctl enable httpd

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI