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!