我的ubuntu服务器预先安装了apache2,mssql,php5。我安装了vTiger CRM,它可以在我的本地主机和内部IP上使用。 但是我无法使用我的外部IP来达到它。我检查了路由器上的所有设置,似乎没问题。
这是我的 netstat -ntlp | grep LISTEN
(No info could be read for "-p": geteuid()=1000 but you should be root.)
tcp 0 0 10.1.0.4:16001 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:29131 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
tcp6 0 0 :::80 :::* LISTEN
tcp6 0 0 :::22 :::* LISTEN
的ifconfig
eth0 Link encap:Ethernet HWaddr 00:0d:3a:b3:0e:a1
inet addr:10.1.0.4 Bcast:10.1.0.255 Mask:255.255.255.0
inet6 addr: fe80::20d:3aff:feb3:ea1/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:15216 errors:0 dropped:0 overruns:0 frame:0
TX packets:16493 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:10379793 (10.3 MB) TX bytes:7676670 (7.6 MB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:1414 errors:0 dropped:0 overruns:0 frame:0
TX packets:1414 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:208812 (208.8 KB) TX bytes:208812 (208.8 KB)
apache2 ports.conf
Listen 80
<IfModule ssl_module>
Listen 443
</IfModule>
<IfModule mod_gnutls.c>
Listen 443
</IfModule>
我做错了什么?
答案 0 :(得分:0)
IP V4没有启用端口80。 您是使用IP V6访问它吗? 检查一下它应该有0.0.0.0:80
之类的东西