通过webistrano访问环境变量
作为 Webistrano 部署的一部分,我需要检查目标计算机上是否设置了 Glassfish home。
我在 jrails.rb 中尝试了以下操作,但没有一个输出 Glassfish home 的值: 回显$GLASSFISH_HOME echo ['GLASSFISH_HOME']
当然,glassfish home 是在目标机器上设置的(在 .bashrc 和 /etc/profile 中)。 我什至尝试通过 Webistrano 调用脚本将 $GLASSFISH_HOME 回显到文件中(在目标计算机上)。该文件没有价值!
看起来通过Webistrano,我无法访问目标机器的本地环境。
请帮忙!
干杯, 萨温德
As part of my Webistrano deployment, I need to check if Glassfish home is set on the target machine.
I've tried the following in jrails.rb, none of which outputs the value of Glassfish home:
echo $GLASSFISH_HOME
echo ['GLASSFISH_HOME']
Of course, glassfish home is set on the target machine (in .bashrc and /etc/profile).
I even tried invoking a script through Webistrano to echo $GLASSFISH_HOME into a file (on target machine). The file does not have the value!
Looks like through Webistrano, I cannot access the local environment of the target machine.
Please help!
Cheers,
Savinder
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
回显$GLASSFISH_HOME
就这么简单!!!
echo $GLASSFISH_HOME
As simple as that!!!