本文介绍了无法使用RJB gem部署到Heroku应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我设置了JAVA_HOME变量
heroku config:add JAVA_HOME = / usr / lib / jvm / java-6 -openjdk
检查到,heroku config显示这个变量的值为
,然后按下: p>
git push heroku master
仍然可以获得
pre $ JAVA_HOME未设置
错误,而bundler正在安装RJB gem。
我可以成功地将同一个源部署到另一个Heroku应用程序,和所有的环境变量是一样的。
有什么不对?
解决方案
我有同样的问题,如果其他人想知道,这是Heroku告诉我的:
I've set the JAVA_HOME variable
heroku config:add JAVA_HOME=/usr/lib/jvm/java-6-openjdk
checked that heroku config shows this variable with value,then pushed:
git push heroku master
and still get
JAVA_HOME is not set
error while bundler is installing RJB gem.
I can successfully deploy the same source to another Heroku application, and all environment variables are the same.
What is wrong?
解决方案
I had the same question, and in case anyone else wants to know, this is what Heroku told me:
这篇关于无法使用RJB gem部署到Heroku应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!