热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

当gem没有执行任务时-Whenevergemisnotexecutingtask

IsetuparailsprojecttousetheWhenevergem.NowIdeploymyprojectwithCapistranoandtheta

I set up a rails project to use the Whenever gem. Now I deploy my project with Capistrano and the tasks are nicely added to crontab list. But when I see only one line:

我建立了一个rails项目来使用这个gem。现在我用Capistrano部署我的项目,这些任务很好地添加到crontab列表中。但当我只看到一行:

/bin/bash: bundle: command not found

So I read a couple of articles online so I added this on top of my schedule.rb file

我在网上读了几篇文章,所以我把它加在了我的课程表上。rb文件

env 'PATH', ENV['PATH']

So you should think problem solved, because this will add this next line to the crontab:

所以你应该认为问题已经解决了,因为这将为crontab添加下一行:

PATH=/var/rails/alfa_paints/shared/bundle/ruby/1.9.1/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games

So you should think bundle is in the path when the command gets executed. But still no luck. I ran the command and the deployment with a seperate user. So to make sure everything runs with that user, deployer in this case. I asssumed the role of deployer and ran the command as specified in crontab. I didn't experience any problems when executing this command.

因此,当命令执行时,您应该认为bundle位于路径中。但是仍然没有运气。我使用一个独立的用户运行命令和部署。为了确保所有东西都能运行,在这个例子中是部署者。我分析了部署人员的角色,并按照crontab中指定的方式运行命令。执行此命令时,我没有遇到任何问题。

I'm running out of options and was wondering if anybody else experienced this strange behavior? I'm hoping for some advise. This is the output in my crontab:

我已经没有选择的余地了,我想知道是否还有其他人经历过这种奇怪的行为?我希望得到一些建议。这是我的crontab的输出:

# Begin Whenever generated tasks for: alfa_paints
 PATH=/var/rails/alfa_paints/shared/bundle/ruby/1.9.1/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games

0 1 * * * /bin/bash -l -c 'cd /var/rails/alfa_paints/releases/20130127192223 && RAILS_ENV=production bundle exec rake alfa:cleanup --silent >> /var/rails/alfa_paints/shared/log/whenever.log 2>&1'

# End Whenever generated tasks for: alfa_paints

Any help welkom!

任何帮助welkom !

2 个解决方案

#1


1  

You'll need to pass in the necessary environment variables in crontab.

您需要在crontab中传递必要的环境变量。

Add these lines at the top of your crontab (crontab -e)

在你的crontab (crontab -e)的顶部添加这些线条

(obviously you'll modify the values of the variables to represent those in your environment)

(显然,您将修改变量的值以表示您的环境中的变量)

(in this case I'm using RVM)

(这里我用的是RVM)

PATH=/home/deploy/.rvm/gems/ruby-2.0.0-p247/bin:/home/deploy/.rvm/gems/ruby-2.0.0p247@global/bin:/home/deploy/.rvm/rubies/ruby-2.0.0p247/bin:/home/deploy/.rvm/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/usr/bin/:/home/deploy/.rvm/bin

路径= / home /部署/ .rvm /珠宝/ ruby-2.0.0-p247 / bin:/ home /部署/ .rvm /珠宝/ ruby-2.0.0p247@global / bin:/ home /部署/ .rvm /红宝石/ ruby-2.0.0p247 / bin:/ home /部署/ .rvm / bin:/ usr /地方/ bin:/ usr / bin:/ bin:/ usr /地方/游戏:/ usr /游戏:/ usr / bin /:/ home /部署/ .rvm / bin

GEM_HOME=/home/deploy/.rvm/gems/ruby-2.0.0-p247

GEM_HOME = / home /部署/ .rvm /珠宝/ ruby-2.0.0-p247

GEM_PATH=/home/deploy/.rvm/gems/ruby-2.0.0-p247/home/deploy/.rvm/gems/ruby-2.0.0-p247@global

GEM_PATH = / home /部署/ .rvm /珠宝/ ruby-2.0.0-p247 / home /部署/ .rvm /珠宝/ ruby-2.0.0-p247@global

MY_RUBY_HOME=/home/deploy/.rvm/rubies/ruby-2.0.0-p247

MY_RUBY_HOME = / home /部署/ .rvm /红宝石/ ruby-2.0.0-p247

#2


1  

Which shell are you using? Since I have seen whenever adds 'bash -l -c ' in job command. Either set

你用的是哪个壳层?因为我曾见过在job command中添加bash -l -c。要么设置

set :job_template, nil

设置:job_template,nil

or if you are using zsh then

或者如果你使用zsh

set :job_template, "zsh -l -c ':job'"

set:job_template "zsh -l -c ':job'"

This solved my issue

这解决了我的问题


推荐阅读
  • 本文将介绍如何编写一些有趣的VBScript脚本,这些脚本可以在朋友之间进行无害的恶作剧。通过简单的代码示例,帮助您了解VBScript的基本语法和功能。 ... [详细]
  • 本文详细介绍了Akka中的BackoffSupervisor机制,探讨其在处理持久化失败和Actor重启时的应用。通过具体示例,展示了如何配置和使用BackoffSupervisor以实现更细粒度的异常处理。 ... [详细]
  • 本文详细介绍了如何构建一个高效的UI管理系统,集中处理UI页面的打开、关闭、层级管理和页面跳转等问题。通过UIManager统一管理外部切换逻辑,实现功能逻辑分散化和代码复用,支持多人协作开发。 ... [详细]
  • Explore a common issue encountered when implementing an OAuth 1.0a API, specifically the inability to encode null objects and how to resolve it. ... [详细]
  • 本文详细介绍了如何在Linux系统上安装和配置Smokeping,以实现对网络链路质量的实时监控。通过详细的步骤和必要的依赖包安装,确保用户能够顺利完成部署并优化其网络性能监控。 ... [详细]
  • 在前两篇文章中,我们探讨了 ControllerDescriptor 和 ActionDescriptor 这两个描述对象,分别对应控制器和操作方法。本文将基于 MVC3 源码进一步分析 ParameterDescriptor,即用于描述 Action 方法参数的对象,并详细介绍其工作原理。 ... [详细]
  • 本文深入探讨了 Java 中的 Serializable 接口,解释了其实现机制、用途及注意事项,帮助开发者更好地理解和使用序列化功能。 ... [详细]
  • 本文详细介绍了Java中org.w3c.dom.Text类的splitText()方法,通过多个代码示例展示了其实际应用。该方法用于将文本节点在指定位置拆分为两个节点,并保持在文档树中。 ... [详细]
  • 本文详细介绍了Java中的访问器(getter)和修改器(setter),探讨了它们在保护数据完整性、增强代码可维护性方面的重要作用。通过具体示例,展示了如何正确使用这些方法来控制类属性的访问和更新。 ... [详细]
  • Scala 实现 UTF-8 编码属性文件读取与克隆
    本文介绍如何使用 Scala 以 UTF-8 编码方式读取属性文件,并实现属性文件的克隆功能。通过这种方式,可以确保配置文件在多线程环境下的一致性和高效性。 ... [详细]
  • 本文详细探讨了JDBC(Java数据库连接)的内部机制,重点分析其作为服务提供者接口(SPI)框架的应用。通过类图和代码示例,展示了JDBC如何注册驱动程序、建立数据库连接以及执行SQL查询的过程。 ... [详细]
  • 本文详细介绍了 GWT 中 PopupPanel 类的 onKeyDownPreview 方法,提供了多个代码示例及应用场景,帮助开发者更好地理解和使用该方法。 ... [详细]
  • Explore how Matterverse is redefining the metaverse experience, creating immersive and meaningful virtual environments that foster genuine connections and economic opportunities. ... [详细]
  • 导航栏样式练习:项目实例解析
    本文详细介绍了如何创建一个具有动态效果的导航栏,包括HTML、CSS和JavaScript代码的实现,并附有详细的说明和效果图。 ... [详细]
  • UNP 第9章:主机名与地址转换
    本章探讨了用于在主机名和数值地址之间进行转换的函数,如gethostbyname和gethostbyaddr。此外,还介绍了getservbyname和getservbyport函数,用于在服务器名和端口号之间进行转换。 ... [详细]
author-avatar
dengyuanc_928
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有