java.net.BindException:无法分配请求的地址

时间:2015-06-03 05:29:22

标签: java tomcat7 ubuntu-12.04 snmp

我想在我的应用程序中使用低端口(Spring Web + Tomcat7上的SNMP陷阱接收器)。正如我在此帖子Binding Low Port to Java Program on Ubuntu Server中所述,之前,我收到了错误权限被拒绝。然后我将tomcat7用户组更改为root。但在那之后,我得到了java.net.BindException:无法分配请求的地址错误。对于我尝试的每个端口(低端口或高端口),我总是遇到这个错误。

我检查端口是否已使用,我看到端口仍然空闲。 我检查了我的/ etc / host内容,它是这样的:

127.0.0.1 localhost 
127.0.1.1 test-server 
# The following lines are desirable for IPv6 capable hosts 
::1 localhost ip6-localhost ip6-loopback 
ff02::1 ip6-allnodes 
ff02::2 ip6-allrouters 
124.81.xx.x test-server.com

注意:我的操作系统是ubuntu服务器

1 个答案:

答案 0 :(得分:2)

您应该绑定到0.0.0.0,而不是尝试指定本地地址。