Acesse o servidor HTTP na porta 8080 no Ubuntu

2

Acesse o servidor http na porta 8080 no Ubuntu

saída netstat -tulpn:

Connexions Internet actives (seulement serveurs)
Proto Recv-Q Send-Q Adresse locale          Adresse distante        Etat       PID/Program name
tcp        0      0 0.0.0.0:13000           0.0.0.0:*               LISTEN      1941/bearerbox  
tcp        0      0 0.0.0.0:13001           0.0.0.0:*               LISTEN      1941/bearerbox  
tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      1141/mysqld     
tcp        0      0 0.0.0.0:13131           0.0.0.0:*               LISTEN      1994/smsbox     
tcp        0      0 0.0.0.0:5900            0.0.0.0:*               LISTEN      2844/vino-server
tcp        0      0 127.0.0.1:5941          0.0.0.0:*               LISTEN      2200/teamviewerd
tcp        0      0 127.0.1.1:53            0.0.0.0:*               LISTEN      1616/dnsmasq    
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      1065/sshd       
tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      3149/cupsd      
tcp        0      0 127.0.0.1:5432          0.0.0.0:*               LISTEN      1227/postgres   
tcp6       0      0 :::5800                 :::*                    LISTEN      2844/vino-server
tcp6       0      0 :::5900                 :::*                    LISTEN      2844/vino-server
**tcp6       0      0 :::8080                 :::*                    LISTEN      7062/apache2**    
tcp6       0      0 :::80                   :::*                    LISTEN      7062/apache2    
tcp6       0      0 :::22                   :::*                    LISTEN      1065/sshd       
tcp6       0      0 ::1:631                 :::*                    LISTEN      3149/cupsd      
udp        0      0 0.0.0.0:631             0.0.0.0:*                           1117/cups-browsed
udp        0      0 0.0.0.0:43858           0.0.0.0:*                           785/avahi-daemon: r
udp        0      0 0.0.0.0:5353            0.0.0.0:*                           785/avahi-daemon: r
udp        0      0 0.0.0.0:42579           0.0.0.0:*                           1204/dhclient   
udp        0      0 127.0.1.1:53            0.0.0.0:*                           1616/dnsmasq    
udp        0      0 0.0.0.0:68              0.0.0.0:*                           1204/dhclient   
udp6       0      0 :::5353                 :::*                                785/avahi-daemon: r
udp6       0      0 :::52679                :::*                                785/avahi-daemon: r
udp6       0      0 :::3779                 :::*                                1204/dhclient   

NMAP: meu endereço IP da WAN é 41.125.130.148 :

nmap 41.125.130.148

Starting Nmap 6.40 ( http://nmap.org ) at 2014-06-14 19:32 CET
Nmap scan report for 41.125.130.148
Host is up (0.0012s latency).
Not shown: 996 closed ports
PORT   STATE SERVICE
21/tcp open  ftp
22/tcp open  ssh
23/tcp open  telnet
80/tcp open  http

Nmap done: 1 IP address (1 host up) scanned in 20.30 seconds

Minha configuração do Apache /etc/apache2 :

 cat /etc/apache2/ports.conf 
# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default.conf

Listen 80
Listen 8080
<IfModule ssl_module>
    Listen 443
</IfModule>

<IfModule mod_gnutls.c>
    Listen 443
</IfModule>

vim: syntax=apache ts=4 sw=4 sts=4 sr noet

Eu testei o acesso localhost:8080/html/playsms , mas em 125.130.148:8080/html/playsms é o Ko e o

    
por tmedtcom 14.06.2014 / 20:41

1 resposta

0

O que é esse IP 125.130.148 ? Você afirma que o seu IP da WAN é 41.125.130.148 , portanto, você deve verificar o IP da WAN e / ou o IP da LAN, mas provavelmente atingirá o loopback NAT do seu modem DSL - roteador.

Uma possível solução para ignorar o loopback NAT é configurar um DNS local apontando para um domínio local.

Além disso, você deve verificar as configurações de seus sites em /etc/apache2/sites-available e / etc / apache2 / sites-enabled ', quais IPs - nomes de domínio e portas você habilita lá?

Exemplo de um host virtual escutando qualquer IP - domínio na porta 80 :

<VirtualHost *:80> 
     ServerName foobar.com # this is your domain name
     ServerAlias www.foobar.com  # an alias using www prefix
     DocumentRoot /srv/www/foobar.com/public_html # where your puclic documents (HTML) lives
     ErrorLog /var/log/foobar.com/apache2/foobar_error.log # error logs for the domain
     CustomLog /var/log/foobar/apache2/foobar_access.log # access logs for the domain
</VirtualHost>
    
por Stef K 14.06.2014 / 20:55