当使用控制器安装我的项目时,我得到了以下错误。
Starting transmission...
Bundle 1 (4kb = 1 installs, 23 deletes)
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
at tooltwist.fip.FipBatchOfUpdates.<init>(FipBatchOfUpdates.java:50)
at tooltwist.fip.FipServer.source_getRequestedUpdates(FipServer.java:214)
at tooltwist.fip.FipThisMachineServerProxy.askForUpdates(FipThisMachineServerProxy.java:53)
at tooltwist.fip.Fip.processUpdatesAndDeletes(Fip.java:493)
at tooltwist.fip.Fip.installFiles(Fip.java:352)
at tooltwist.controller.util.InstallerUtil.install(InstallerUtil.java:376)
at tooltwist.controller.util.InstallerUtil.main(InstallerUtil.java:57)
Sorry, the install failed.
Finished with status false发布于 2012-07-11 13:21:16
如果您有一个非常大的项目,则可能需要在extension-projects/ttc_t/config/bin/installLaunchpad.中增加JAVA_OPTS的默认值默认为256mb,但可根据需要增加。控制器使用FIP,它不需要与正在部署的项目成比例的内存,所以适度增加应该可以工作。
JAVA_OPTS="-Xms64m -Xmx512m -XX:MaxPermSize=32m"https://stackoverflow.com/questions/11424351
复制相似问题