Grails:JAVA_HOME 未正确定义
我尝试安装 Grails 框架并在每次崩溃时在终端中命令“grails”。我正在使用 Debian Squeeze,并在 /etc/profile
和 ~/.profile this
中设置:
export JAVA_HOME=/usr/lib/jvm/java-6-sun-1.6.0.22
export GRAILS_HOME="/home/snitch/grails"
export PATH=${PATH}:${GRAILS_HOME}/bin
出了什么问题?
I have tried to install Grails framework and command "grails" in terminal every time crashes. I am using Debian Squeeze and I set in /etc/profile
and ~/.profile this
:
export JAVA_HOME=/usr/lib/jvm/java-6-sun-1.6.0.22
export GRAILS_HOME="/home/snitch/grails"
export PATH=${PATH}:${GRAILS_HOME}/bin
What is wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
确保
JAVA_HOME
指向jdk,而不仅仅是jvm。请参阅:http://www.grails.org/Installation。您可能还需要将
${JAVA_HOME}/bin
添加到您的PATH
中。Make sure that
JAVA_HOME
points to a jdk, not just a jvm. See: http://www.grails.org/Installation.You may need to add
${JAVA_HOME}/bin
to yourPATH
also.解决了。
Solved.
应该是
从命令行测试它
,您可以使用and
Should be
and you can test it from the commandline with
and