centos6.5 Apache httpdサービスの構築(yum)

2607 ワード

centos6.5 httpdサービスの構築
1、コマンドを実行する:
[root@localhost ~]# yum install httpd -y

2、サービスを開始する
[root@localhost ~]# /etc/rc.d/init.d/httpd start
3、httpdデフォルトポート80の開発
[root@localhost ~]# /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
[root@localhost ~]# /etc/rc.d/init.d/iptables save 
iptables:          /etc/sysconfig/iptables:     [  ]
[root@localhost ~]# /etc/init.d/iptables restart
iptables:        ACCEPT:filter                    [  ]
iptables:       :                                 [  ]
iptables:      :                                   [  ]
iptables:       :                                 [  ]
[root@localhost ~]# 
4、httpサービスへのアクセス
ブラウザアドレスの入力:http://192.168.126.101/(ipアドレスを自分のIPに変更してください)
5.httpdポートの修正
(1)、プロファイルの編集
[root@localhost ~]# vi /etc/httpd/conf/httpd.conf 

(2)、Listen 80を見つけて、80をあなたのポートに変更して、私はここで81に変更します
#Listen 12.34.56.78:80
Listen 81

(3)、オープン81ポート
[root@localhost ~]# /sbin/iptables -I INPUT -p tcp --dport 81 -j ACCEPT
[root@localhost ~]# /etc/rc.d/init.d/iptables save 
iptables:          /etc/sysconfig/iptables:     [  ]
[root@localhost ~]# /etc/init.d/iptables restart
iptables:        ACCEPT:filter                    [  ]
iptables:       :                                 [  ]
iptables:      :                                   [  ]
iptables:       :                                 [  ]
[root@localhost ~]# 

(4)、httpdの再起動
[root@localhost ~]#  /etc/rc.d/init.d/httpd restart
   httpd:                                               [  ]
     httpd:httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain for ServerName
                                                           [  ]
[root@localhost ~]# 

(5)、テスト
ブラウザアドレスの入力:http://192.168.126.101:81/(IPアドレスを自分のIPアドレスに変更)
6、ルートディレクトリとホームページの設定
(1)、プロファイルの編集
[root@localhost ~]# vi /etc/httpd/conf/httpd.conf 

(2)、次の2つのキーフィールドを見つけて変更
①、DocumentRoot"/var/www/html"#デフォルトルートディレクトリ②、Directory Index index.html index.html.var#デフォルトホームページ
(3)、httpdの再起動
[root@localhost ~]#  /etc/rc.d/init.d/httpd restart
   httpd:                                               [  ]
     httpd:httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain for ServerName
                                                           [  ]
[root@localhost ~]#