蒲柳隐逸 2016-09-20
工作正常的tomcat6在一次安装更新重启电脑后,报告如下错误:
根据以往的经验。认为是端口冲突,使用tasklist | findstr "8080"查看没有查看到端口被占用的情况。经过种种折腾也不奏效,搜索到篇文章。里面说到除了端口占用引起的问题,还可能是IP绑定的问题。结果在C:\Windows\System32\drivers\etc配置文件中发现类似的配置
//输出localhost映射的所有IP地址 InetAddress[] ips = InetAddress.getAllByName("localhost"); if (ips != null) { for (InetAddress ip : ips) { System.out.println(ip.getHostAddress()); } }