A tela de teste do Apache não está sendo carregada. Conexão recusada ao conectar ao ip público

0

Estou tendo problemas para fazer o Apache funcionar. Eu segui as instruções da Amazon AWS ( link ), mas meu computador está se recusando para carregar a tela de teste do Amazon Linux.

Durante a execução de curl localhost , vejo o HTML da tela de teste, o que provavelmente significa que algo não está correto com as portas?

Eu corri netstat -lnp e colei a saída abaixo:

Proto Recv-Q Send-Q Local Address               Foreign Address             State       PID/Program name   
tcp        0      0 0.0.0.0:22                  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:55001               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 :::49475                    :::*                        LISTEN      -                   
tcp        0      0 :::111                      :::*                        LISTEN      -                   
tcp        0      0 :::80                       :::*                        LISTEN      -                   
udp        0      0 0.0.0.0:58316               0.0.0.0:*                               -                   
udp        0      0 0.0.0.0:974                 0.0.0.0:*                               -                   
udp        0      0 127.0.0.1:1001              0.0.0.0:*                               -                   
udp        0      0 0.0.0.0:68                  0.0.0.0:*                               -                   
udp        0      0 0.0.0.0:111                 0.0.0.0:*                               -                   
udp        0      0 172.31.25.11:123            0.0.0.0:*                               -                   
udp        0      0 127.0.0.1:123               0.0.0.0:*                               -                   
udp        0      0 0.0.0.0:123                 0.0.0.0:*                               -                   
udp        0      0 :::974                      :::*                                    -                   
udp        0      0 :::53736                    :::*                                    -                   
udp        0      0 :::111                      :::*                                    -                   
Active UNIX domain sockets (only servers)
Proto RefCnt Flags       Type       State         I-Node PID/Program name    Path
unix  2      [ ACC ]     STREAM     LISTENING     7784   -                   @/com/ubuntu/upstart
unix  2      [ ACC ]     SEQPACKET  LISTENING     8016   -                   @/org/kernel/udev/udevd
unix  2      [ ACC ]     STREAM     LISTENING     9141   -                   /var/run/rpcbind.sock
unix  2      [ ACC ]     STREAM     LISTENING     9314   -                   /var/run/dbus/system_bus_socket

Eu também segui o link e aceitei todo o tráfego para a porta 80.

executando sudo iptables -L -V , obtenho:

Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         
    0     0 ACCEPT     all  --  lo     any     anywhere             anywhere            
   61  4144 ACCEPT     tcp  --  any    any     anywhere             anywhere             tcp dpt:ssh
    0     0 ACCEPT     tcp  --  any    any     anywhere             anywhere             tcp dpt:http
    6   866 ACCEPT     all  --  any    any     anywhere             anywhere             ctstate RELATED,ESTABLISHED
    0     0 DROP       all  --  any    any     anywhere             anywhere            

Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain OUTPUT (policy ACCEPT 16 packets, 2356 bytes)
 pkts bytes target     prot opt in     out     source               destination      

Qualquer ajuda seria muito apreciada!

    
por Adrian 12.01.2016 / 05:09

1 resposta

0

Você precisa abrir a porta 80 para o seu Grupo de segurança da AWS se ainda não tiver aberto:

  • Ir para as configurações do Grupo de segurança na navegação à esquerda
  • Encontre o grupo de segurança do qual sua instância faz parte
  • Clique em Regras de entrada
  • Use o menu suspenso e adicione HTTP (porta 80)
  • Clique em Aplicar e aproveite
por 13.01.2016 / 14:06