Webistrano bash/sh 问题!

发布于 2024-09-09 11:17:07 字数 752 浏览 6 评论 0 原文

我喜欢 Capistrano,最后我找到了使用它的 GUI!

Webistrano!

我安装了许多其他人向我推荐的应用程序。

最后,是时候尝试了...我播放了截屏视频...等...并在我的 production.log 中发现了此错误:“sh:找不到 ruby​​ 命令”

我按照此 博客文章 但是不行!!同样的问题...

这是我在脚本/控制台中尝试的,正如博客文章所述!

>> system("sh -c \"ruby -v\"") 
ruby 1.8.7 (2009-12-24 patchlevel 248) [i686-linux], MBARI 0x8770, Ruby Enterprise Edition 2010.01
=> true
>> system("bash --login -c \"ruby -v\"") 
ruby 1.8.7 (2009-12-24 patchlevel 248) [i686-linux], MBARI 0x8770, Ruby Enterprise Edition 2010.01
=> true

I love Capistrano and finally i found GUI for using it!

Webistrano!

I installed the app that many other guys recommend it to me.

Finally, its time to try... I flow the screencast ..etc.. and found in my production.log this error: 'sh: ruby command not found'

I followed this blog post but naaaah!! same problem...

This is what i tried in script/console as the blog post said!

>> system("sh -c \"ruby -v\"") 
ruby 1.8.7 (2009-12-24 patchlevel 248) [i686-linux], MBARI 0x8770, Ruby Enterprise Edition 2010.01
=> true
>> system("bash --login -c \"ruby -v\"") 
ruby 1.8.7 (2009-12-24 patchlevel 248) [i686-linux], MBARI 0x8770, Ruby Enterprise Edition 2010.01
=> true

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

离线来电— 2024-09-16 11:17:07

我猜您的 Ruby Enterprise Edition 安装在 /opt/ree 之类的位置或默认路径之外的类似位置?

如果是这样,那么您可以尝试在 Apache 配置中设置路径变量,如下所示:

SetEnv PATH /usr/bin:/usr/local/bin:/path/to/ree/bin

I'm guessing your Ruby Enterprise Edition is installed in a location like /opt/ree or something similar that's outside of the default PATH?

If so, then you could try setting the path variable in your Apache configuration like so:

SetEnv PATH /usr/bin:/usr/local/bin:/path/to/ree/bin

樱花落人离去 2024-09-16 11:17:07

我在 def deploy_in_background 下的 app/models/deployment.rb 中设置了 Ruby 的完整路径。

像这样[我正在使用 ree]:

system("sh -c \"cd #{RAILS_ROOT} && /opt/ruby-enterprise/bin/ruby script/runner -e... etc.

感谢 Jonathan Weiss:http://twitter.com /jweiss/status/19105123857

I set the full path of Ruby in app/models/deployment.rb under def deploy_in_background.

And being like this [i'm using ree]:

system("sh -c \"cd #{RAILS_ROOT} && /opt/ruby-enterprise/bin/ruby script/runner -e... etc.

Thanks to Jonathan Weiss: http://twitter.com/jweiss/status/19105123857

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文