0

I have just installed grails 2.0.3 on my Ubuntu box using apt-get as described here:

http://grails.org/Download

Everything looked fine.

When I type grails in the terminal it takes about 5 seconds and then it returns to the prompt without having done anything. No errors, no text.

I have tried adding GRAILS_HOME even though the download instructions say it is not required but that didn't help either.

It's finding grails just fine, it's just not doing anything.

I have not explicitly installed groovy before this. Is that a step I missed (I don't think so as I see it's included in the libs folder of the install) or is there more I need to do to finish the install?

4

1 に答える 1

0

私は同じ問題を抱えていましたが、なんとか解決しました。

512MBのメモリを備えたVirtualBoxインスタンスで実行されているUbuntuにgrails 2.1.2がインストールされています。

JAVA_HOMEgrails のドキュメントには必要ないと書かれていますが、grails を実行して環境変数を構成するには、Java 6 をインストールする必要がありました。

いくつかのリソースによると、grails のメモリ使用量の問題が原因である可能性があります。grails は大量のメモリを使用しているようです。これらのリソースは次のとおりです。

そこで、彼らのアドバイスに従って、次のコマンドで環境変数 GRAILS_OPTS を構成しました。

export GRAILS_OPTS="-server -Xms128M -Xmx128 -XX:MaxPermSize=256M"

試してみて、うまくいくかどうか教えてください。ありがとうございます。

于 2013-01-15T14:51:56.213 に答える