0

vagrant で centos 6.5 をサーバーとして設定しています。

IP: 192.168.33.20 で private_network 設定を使用します

仮想マシンで SSH と SFTP にアクセスするために IP アドレス 192.168.33.20 を使用しました。

しかし、httpd をインストールして httpd を実行しているにもかかわらず、その IP アドレス (192.168.33.20) で Web サイトにアクセスできないのは私だけです。

[root@centos65 ~]# netstat -nltp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address               Foreign Address             State       PID/Program name
tcp        0      0 0.0.0.0:45525               0.0.0.0:*                   LISTEN      1082/rpc.statd
tcp        0      0 0.0.0.0:22                  0.0.0.0:*                   LISTEN      1208/sshd
tcp        0      0 127.0.0.1:25                0.0.0.0:*                   LISTEN      1285/master
tcp        0      0 0.0.0.0:111                 0.0.0.0:*                   LISTEN      1062/rpcbind
tcp        0      0 :::22                       :::*                        LISTEN      1208/sshd
tcp        0      0 ::1:25                      :::*                        LISTEN      1285/master
tcp        0      0 :::34314                    :::*                        LISTEN      1082/rpc.statd
tcp        0      0 :::111                      :::*                        LISTEN      1062/rpcbind
tcp        0      0 :::80                       :::*                        LISTEN      3202/httpd

SELinuxをチェックすると、無効になっています

# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#       enforcing - SELinux security policy is enforced.
#       permissive - SELinux prints warnings instead of enforcing.
#       disabled - SELinux is fully disabled.
SELINUX=disabled
# SELINUXTYPE= type of policy in use. Possible values are:
#       targeted - Only targeted network daemons are protected.
#       strict - Full SELinux protection.
SELINUXTYPE=targeted

HTTP ポートの変更

[root@centos65 ~]# sudo netstat -nltd
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address               Foreign Address             State
tcp        0      0 0.0.0.0:22                  0.0.0.0:*                   LISTEN
tcp        0      0 0.0.0.0:49655               0.0.0.0:*                   LISTEN
tcp        0      0 127.0.0.1:25                0.0.0.0:*                   LISTEN
tcp        0      0 0.0.0.0:111                 0.0.0.0:*                   LISTEN
tcp        0      0 :::22                       :::*                        LISTEN
tcp        0      0 ::1:25                      :::*                        LISTEN
tcp        0      0 :::45389                    :::*                        LISTEN
tcp        0      0 :::111                      :::*                        LISTEN
tcp        0      0 :::8080                     :::*                        LISTEN

ホストから Web サーバーにアクセスできません

4

1 に答える 1

-2

ポート80を開き、アクセスして書き込みます

# vi /etc/sysconfig/iptables

新しい行を挿入する

-A INPUT -p tcp -m state –state NEW –dport 80 -j ACCEPT

問題を解決するにはそれだけです

于 2015-09-29T14:04:01.343 に答える