欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

WebLogic启动失败:java.lang.AssertionError: Could not obtain the localhost address.

程序员文章站 2022-04-28 21:26:16
...

一、错误信息

linux下启动WebLogic报如下错误:
WebLogic启动失败:java.lang.AssertionError: Could not obtain the localhost address.

二、解决方案

此错误多半是hosts文件不对导致的。

解决步骤如下:

第一步:查看本机计算机名称

输入如下命令:

$ hostname

结果如下图:
WebLogic启动失败:java.lang.AssertionError: Could not obtain the localhost address.
这里计算机名称为:aix7

第二步:编辑hosts文件

输入如下命令打开hosts文件:

$ vi /etc/hosts

在文件最后一行添加如下配置:

# aix7即为计算机名称
127.0.0.1 aix7

WebLogic启动失败:java.lang.AssertionError: Could not obtain the localhost address.
然后保存,重启WebLogic即可。

相关标签: WebLogic