httpd伺服器的安裝和基本配置
主要了解虛擬目錄的使用
1,安裝
[root@station10 /]# yum install httpd*
[root@station10 /]# chkconfig httpd on
[@more@]2,啟動
[root@station10 /]# service httpd start
Starting httpd: [ OK ]
[root@station10 /]#
3,校驗 DocumentRoot目錄:
DocumentRoot "/var/www/html"
4,測試
5,建立目錄
[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
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<;; 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]#
按照提示修改,然後重新執行:
[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. 防火牆設定
[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,本機可以訪問,其他機器訪問一直報錯:
[root@station10 conf]# elinks -dump station12.example.com
ELinks: Receive timeout
[root@station10 conf]#
把iptables重新啟動測試,執行setup設定firewall等。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/312079/viewspace-1012067/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- apache httpd安裝 配置Apachehttpd
- SVN伺服器的配置和安裝伺服器
- RedHat 7 安裝HTTPDRedhathttpd
- Nginx基本安裝配置Nginx
- 安裝和配置Nginx Web伺服器NginxWeb伺服器
- httpd編譯安裝phphttpd編譯PHP
- Linux yum安裝httpd報錯 No package httpd available ?LinuxhttpdPackageAI
- Nginx入門(1)伺服器的安裝和配置Nginx伺服器
- webpack的安裝和基本使用Web
- oh-my-zsh的安裝與基本配置
- Flutter的安裝和配置Flutter
- JDK的安裝和配置JDK
- rsync的安裝 和 配置
- Barrier 的安裝和配置
- pycharm下載安裝與基本配置PyCharm
- docker 基本安裝配置操作(複習)Docker
- jupyter的伺服器配置安裝伺服器
- NFS伺服器的安裝與配置NFS伺服器
- Samba伺服器的安裝與配置Samba伺服器
- nfs伺服器安裝配置NFS伺服器
- Linux DNS 伺服器安裝、配置和維護LinuxDNS伺服器
- zabbix安裝—–nginx安裝和配置Nginx
- 安裝和配置Drupal 8教程,如何安裝和配置Drupal 8?
- linux安裝配置與基本命令Linux
- Jetty的安裝、配置和使用Jetty
- Sass 的入門安裝和基本使用
- httpd 一鍵編譯安裝指令碼(centos6&7_httpd2.2&2.4)httpd編譯指令碼CentOS
- 安裝和配置sendmailAI
- Zookeeper 安裝和配置
- 安裝和配置OCFS
- HTTPD之二————HTTPD服務詳解————httpd的配置檔案常見設定httpd
- nacos基本架構和安裝架構
- httpd-2.4 編譯安裝(centos6)httpd編譯CentOS
- Ubuntu 16.04遠端登入伺服器--ssh的安裝和配置Ubuntu伺服器
- SpaceVim的基本安裝和常見問題
- Elasticsearch 的安裝和簡單配置Elasticsearch
- Nginx的安裝和多域名配置Nginx
- Git-TortoiseGit的安裝和配置Git