這篇文章主要講解了“httpd服務(wù)器的安裝和基本配置方法”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“httpd服務(wù)器的安裝和基本配置方法”吧!
創(chuàng)新互聯(lián)公司2013年至今,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢想脫穎而出為使命,1280元橫峰做網(wǎng)站,已為上家服務(wù),為橫峰各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:18982081108
主要了解虛擬目錄的使用
1,安裝
[root@station10 /]# yum install httpd*
[root@station10 /]# chkconfig httpd on
[@more@]
2,啟動
[root@station10 /]# service httpd start
Starting httpd: [ OK ]
[root@station10 /]#
3,校驗(yàn) DocumentRoot目錄:
DocumentRoot "/var/www/html"
4,測試
5,創(chuàng)建目錄
[root@station10 /]# mkdir -p /var/www/virtual/www10.example.com/html
[root@station10 /]# cd /var/www/virtual/www10.example.com/html
[root@station10 html]# cat > index.html <
> EOF
[root@station10 html]#
6,修改配置文件
NameVirtualHost 192.168.0.10:80
ServerName www10.example.com
ServerAdmin root@station10.example.com
DocumentRoot /var/www/virtual/www10.example.com/html
ErrorLog logs/www10.example.com-error_log
CustomLog logs/www10.example.com-access_log combined
Options Indexes Includes
7,測試DNS是否正常
[root@station10 html]# dig www10.example.com
; <<>> DiG 9.3.3rc2 <<>> www10.example.com
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 13726
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 1, ADDITIONAL: 1
;; QUESTION SECTION:
;www10.example.com. IN A
;; ANSWER SECTION:
www10.example.com. 86400 IN CNAME station10.example.com.
station10.example.com. 86400 IN A 192.168.0.10
;; AUTHORITY SECTION:
example.com. 86400 IN NS server1.example.com.
;; ADDITIONAL SECTION:
server1.example.com. 86400 IN A 192.168.0.254
;; Query time: 12 msec
;; SERVER: 192.168.0.254#53(192.168.0.254)
;; WHEN: Fri Oct 17 20:59:17 2008
;; MSG SIZE rcvd: 113
[root@station10 html]#
8,語法檢查:
[root@station10 html]# service httpd configtest
Syntax error on line 1002 of /etc/httpd/conf/httpd.conf:
[root@station10 html]#
按照提示修改,然后重新運(yùn)行:
[root@station10 html]# service httpd configtest
Syntax OK
[root@station10 html]# service httpd reload
Reloading httpd: [ OK ]
[root@station10 html]#
9,測試
[root@station10 conf]# elinks -dump www10.example.com
www10.example.com
[root@station10 conf]#
10. 防火墻設(shè)置
[root@station10 html]# iptables -I INPUT 1 -s 192.168.0.0/24 -p tcp --dport 80 -j ACCEPT
[root@station10 html]# service iptables save
Saving firewall rules to /etc/sysconfig/iptables: [ OK ]
[root@station10 html]#
11,本機(jī)可以訪問,其他機(jī)器訪問一直報(bào)錯(cuò):
[root@station10 conf]# elinks -dump station12.example.com
ELinks: Receive timeout
[root@station10 conf]#
把iptables重新啟動測試,運(yùn)行setup設(shè)置firewall等。
感謝各位的閱讀,以上就是“httpd服務(wù)器的安裝和基本配置方法”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對httpd服務(wù)器的安裝和基本配置方法這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!