java.net.UnknownHostException(java.net.UnknownHostException)
问题描述
我正在使用 jdk1.6.0_23 安装 CSVN,但出现以下 Java 错误:
I'm installing CSVN using jdk1.6.0_23 and I'm getting the following Java error:
2011-02-10 16:25:50,951 [WrapperJarAppMain] WARN util.GrailsUtil - [WARNING] Property [ldapServerPort] of domain class com.collabnet.svnedge.console.Server has type [int] and doesn't support constraint [nullable]. This constraint will not be checked during validation.
2011-02-10 16:25:51,117 [WrapperJarAppMain] ERROR ehcache.Cache - Unable to set localhost. This prevents creation of a GUID. Cause was: vkqgae01: vkqgae01
java.net.UnknownHostException: vkqgae01: vkqgae01
at java.net.InetAddress.getLocalHost(InetAddress.java:1354)
at net.sf.ehcache.Cache.<clinit>(Cache.java:143)
我的服务器有 3 个 NIC(eth0
、eth1
和 eth2
).我在 localhost 下面的 hosts 文件中添加了一个条目,其中包含以下内容:
My server has 3 NICs (eth0
, eth1
and eth2
). I've added an entry to the hosts file bellow localhost containing the following:
127.0.0.1 vkqgae01
我可以成功ping vkqgae01
,但是nslookup
无法解析.
I can successfully ping vkqgae01
, but nslookup
cannot resolve it.
有什么想法吗?
推荐答案
那个和
主机名
和
/etc/hosts
如果/etc/hosts 不包含主机名的定义,它会失败.只需将您的主机名添加到/etc/host 例如,如果您的主机名是工作添加或修改以下行:
If /etc/hosts doesn't containt the definition of the hostname it fails. Just add your hostname to /etc/host for example if your hostname is work add or modified the following line:
127.0.0.1 work localhost
这篇关于java.net.UnknownHostException的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:java.net.UnknownHostException
基础教程推荐
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 降序排序:Java Map 2022-01-01