简体   繁体   English

启动Weblogic服务器时出现空间问题

[英]Space issue when starting Weblogic server

we are trying to start our application server(Weblogic) but the below error comes up and we are unable to start it. 我们正在尝试启动我们的应用程序服务器(Weblogic),但出现以下错误,我们无法启动它。

Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=512M; Java HotSpot(TM)64位服务器VM警告:忽略选项MaxPermSize = 512M; sup port was removed in 8.0 Error occurred during initialization of VM Could not reserve enough space for object heap 在8.0中删除了sup端口在VM初始化期间发生错误无法为对象堆保留足够的空间

Can you please advise. 你能给些建议么。 Thanks in advance. 提前致谢。

These are 2 different errors resulting from their individual configurations. 这是由它们各自的配置导致的2个不同的错误。

For this warning: 对于此警告:

Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=512M; Java HotSpot(TM)64位服务器VM警告:忽略选项MaxPermSize = 512M; sup port was removed in 8.0 sup端口已在8.0中删除

The MaxPermSize configuration was a Hotspot specific setting to specify the maximum perm-gen space for storing class files. MaxPermSize配置是Hotspot特定的设置,用于指定用于存储类文件的最大perm-gen空间。 You should either check your Server -> Server start -> Arguments if there is a -XX:MaxPermSize included that can be removed or you could check your startup scripts if specified there. 如果包含-XX:MaxPermSize可以删除,则应该检查“ 服务器”->“服务器启动”->“参数” ,或者如果在其中指定了启动脚本,则可以检查。

See this for details. 请参阅了解详情。

For this error: 对于此错误:

Could not reserve enough space for object heap 无法为对象堆保留足够的空间

This results from heap allocation not enough. 这是由于堆分配不足而导致的。 You need to add a -Xmx512m or an appropriate higher value. 您需要添加-Xmx512m或适当的更高值。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM