java.net.BindException: 无法分配请求的地址
java.net.BindException: Cannot assign requested address
我想在我的应用程序中使用低端口(Spring web + Tomcat7 上的 SNMP 陷阱接收器)。正如我在此线程 Binding Low Port to Java Program on Ubuntu Server 中所说,之前,我收到错误权限被拒绝。然后我把tomcat7的用户组改成root。但在那之后,我得到 java.net.BindException: Cannot assign requested address 错误。对于我尝试的每个端口(低端口或高端口),我总是遇到此错误。
我检查端口是否被使用,我看到端口仍然空闲。
我查看我的/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
注意:我的 OS 是 ubuntu 服务器
您应该绑定到 0.0.0.0
而不是尝试指定本地地址。
我想在我的应用程序中使用低端口(Spring web + Tomcat7 上的 SNMP 陷阱接收器)。正如我在此线程 Binding Low Port to Java Program on Ubuntu Server 中所说,之前,我收到错误权限被拒绝。然后我把tomcat7的用户组改成root。但在那之后,我得到 java.net.BindException: Cannot assign requested address 错误。对于我尝试的每个端口(低端口或高端口),我总是遇到此错误。
我检查端口是否被使用,我看到端口仍然空闲。 我查看我的/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
注意:我的 OS 是 ubuntu 服务器
您应该绑定到 0.0.0.0
而不是尝试指定本地地址。