1

コントローラーを使用してプロジェクトをインストールしているときに、次のエラーが発生しました。

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
4

1 に答える 1

1

プロジェクトが非常に大きい場合は、extension-projects/ttc_t/config/bin/installLaunchpad で JAVA_OPTS のデフォルト値を増やす必要がある場合があります。デフォルトは 256mb ですが、必要に応じて増やすことができます。コントローラーは、展開されるプロジェクトに比例してメモリを必要としない FIP を使用するため、適度な増加で問題なく動作するはずです。

JAVA_OPTS="-Xms64m -Xmx512m -XX:MaxPermSize=32m"
于 2012-07-11T05:21:16.030 に答える