總結下搭建apache服務
apache配置檔案
/etc/httpd/conf/httpd.conf
預設網頁儲存位置
/var/www/html
日誌儲存位置
關閉防火牆和selinux
iptables -f
setenforce 0
yum install httpd
cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.bak
啟動服務
安裝成功,接下來換下網域名稱訪問,由於是本機測試,所以直接修改/etc/hosts
檔案即可
修改配置檔案,直接用命令模式/字元查詢servername會快些
修改完之後需要重啟服務
訪問成功
配置檔案中給出有例子,參考例子進行修改就好了
目錄需要我們手動去建立並在目錄下寫入首頁index.html
[root@lemon www]# mkdir /var/www/test1
[root@lemon www]# mkdir /var/www/test2
[root@lemon www]# vi /var/www/test1/index.html
[root@lemon www]# vi /var/www/test2/index.html
另外也要修改下hosts檔案
重啟服務進行測試
測試成功
只需要在虛擬主機配置檔案下加上alias
關鍵字即可,具體如下:
同樣這個目錄也是需要自己建立的
mkdir /tmp/zzh
vi /tmp/zzh/index.html
如果出現403,看下是不是防火牆和selinux沒有關
測試成功
CentOS Apache伺服器安裝
rpm qa grep httpd如果出現 說明已經安裝好了。如果什麼都沒有進行yum安裝 或yum y install httpd y 找到如下內容 servername www.example.com 80 更改為servername localhost 80 再重啟一下apache服務即可 a...
CentOS apache配置虛擬伺服器
注意 1 需要確定的埠是否存在 semanage port l grep http,如果http port t 後面有需要用到的埠,則需要確定該埠是否被占用 semanage port l grep http 81,如果被占用,則需要新增額外的埠 semanage port a t http por...
CentOS Apache伺服器配置https
參考 yum install mod ssl openssl然後將我們第一步生成的ssl上傳到伺服器 將.crt上傳到 etc pki tls certs 將.key上傳到 etc pki tls private vim etc httpd conf.d ssl.conf重寫下面的引數 sslcer...