Centos7環境下的Apache配置與應用

2021-10-03 16:46:51 字數 1227 閱讀 2993

1.安裝apache,使用yum系統完成

2.apache服務的啟動/重啟/關閉

在修改配置的完成,需要對此service先關閉,再啟動,也可以選擇重啟操作。命令如下:

systemctl stop httpd.service #停止

systemctl start httpd.service #啟動

systemctl restart httpd.service #重啟

systemctl enable httpd.service #開機啟動

3.對httpd.conf檔案的修改,引數如下

a) 設定**的預設訪問埠80

b) **的根目錄為/var/www/html

c) 預設的首頁檔案為default.html

4.配置修改並完成,重啟服務,檢查系統是否開始監聽埠80

netstat -anp | grep 80

或者lsof -i | grep 80

如果已經開始監聽80埠,但仍然無法訪問,則繼續完成步驟5.

5.設定防火牆,設定埠80規則,允許埠訪問。

centos7預設使用firewall作為防火牆,所以要先改為iptables防火牆:

1>systemctl stop firewalld #先關閉firewall

2 >systemctl mask firewalld #直接暴力禁止掉firewall

3 >systemctl disable firewalld.service #禁止firewall開機啟動

4>yum install iptables-services #安裝iptables

5>在/etc/sysconfig/目錄下找到iptables檔案 或者iptables.rpmnew檔案

編輯操作:vi /etc/sysconfig/iptables

新增規則:-a input -m state --state new -m tcp -p tcp --dport 80 -j accept

重啟iptables,並使規則生效:service iptables restart

6.在**根目錄下,使用echo命令新建default.html檔案,頁面內容是「hello world」

cd /var/www/html

echo hello world >default.html

7.驗證和測試你的apache伺服器,用ip開啟訪問。

centos7環境下安裝MySQL

安裝mysql官方的yum repository wget i cyum y install mysql57 community release el7 10.noarch.rpm安裝mysql服務 yum y install mysql community server啟動mysql服務 syst...

Centos7環境下安裝gitlab

1.安裝依賴 yum install curl openssh server openssh clients postfix cronie y 2.開啟postfix systemctl start postfix 3.設定postfix開機自啟動 systemctl enable postfix....

Centos7環境下安裝curl

curl是利用url語法在命令列方式下工作的開源檔案傳輸工具。它被廣泛應用在unix 多種linux發行版中,並且有dos和win32 win64下的移植版本。官網文件 wget2.解壓到當前目錄 tar zxf curl 7.54.0.tar.gz3.進入解壓後的目錄內 cd curl 7.54....