Chinaunix首页 | 论坛 | 博客
  • 博客访问: 169479
  • 博文数量: 21
  • 博客积分: 2077
  • 博客等级: 大尉
  • 技术积分: 290
  • 用 户 组: 普通用户
  • 注册时间: 2008-11-27 09:44
文章分类

全部博文(21)

文章存档

2009年(7)

2008年(14)

我的朋友

分类:

2008-12-22 09:32:01

 
问题:
java.lang.AssertionError: Could not obtain the localhost address. The most likely cause is an error in the network configuration of this machine.
java.net.UnknownHostException:localhost: localhost
 
发现有这么一句报错比较关键:
at weblogic.server.channels.AddressUtils$AddressMaker.getLocalHost(AddressUtils.java:40)
显然函数取值时出错。
 
解决办法:
$ cat /etc/hosts
/etc/hosts:Permission denied
$ ll /etc/hosts
-rw-------   1 root       root           744 Dec  8 15:36 /etc/hosts
$ su - root
# chmod 644 /etc/hosts
# ll /etc/hosts
-rw-r--r--   1 root       root           744 Dec  8 15:39 /etc/hosts
$cd /weblogic/bea/user_projects/domains/base_domain
$sh startWebLogic.sh
 
问题解决。
阅读(8210) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~