ruby - whenever+crontab 提示 not found gem ,check GEM_PATH问题
阿神
阿神 2017-04-25 09:02:32
0
1
852

1.我使用whenever gem 来定时启动 rails runner 任务;可是定时任务的log显示:

/usr/local/rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/rubygems/dependency.rb:319:in `to_specs': Could not find 'railties' (>= 0.a) among 17 total gem(s) (Gem::LoadError)
Checked in 'GEM_PATH=/usr/local/rvm/rubies/ruby-2.3.0/lib/ruby/gems/2.3.0:/root/.gem/ruby/2.3.0', execute `gem env` for more information
        from /usr/local/rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/rubygems/dependency.rb:328:in `to_spec'
        from /usr/local/rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/rubygems/core_ext/kernel_gem.rb:65:in `gem'
        from /usr/local/rvm/gems/ruby-2.3.0/bin/rails:22:in `<main>'
        from /usr/local/rvm/gems/ruby-2.3.0/bin/ruby_executable_hooks:15:in `eval'
        from /usr/local/rvm/gems/ruby-2.3.0/bin/ruby_executable_hooks:15:in `<main>'
        

我也gem install railties了,可是还是这样,我的ruby version:2.3.0,rails version:4.1.0;
本人ruby 小白,求帮助

阿神
阿神

闭关修行中......

reply all(1)
阿神

Ask and answer your own questions to update the answer. It turns out that it is a pitfall of "whenever +cron". The reason is that the parameter about GEM_PATH is not added to cron,

1.crontab -l
[root@meituanQaServer1 qa_assist]# crontab -l
# Begin Whenever generated tasks for: /root/guoshun/qa_assist/config/schedule.rb
PATH=/usr/local/rvm/gems/ruby-2.3.0/bin:/usr/local/rvm/gems/ruby-2.3.0@global/bin:/usr/local/rvm/rubies/ruby-2.3.0/bin:/usr/lib64/qt-3.3/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/rvm/bin:/usr/local/apache-maven/bin:/usr/local/python27/bin/:/root/bin:/usr/local/python27/bin

GEM_PATH=/usr/local/rvm/gems/ruby-2.3.0:/usr/local/rvm/gems/ruby-2.3.0@global

0 16 27 * * /bin/bash -l -c 'cd /root/guoshun/qa_assist && rails runner -e production Device.send_device_message >> elephant.log 2>&1'

0 0,3,6,9,12,15,18,21 * * * /bin/bash -l -c 'cd /root/guoshun/qa_assist && rails runner -e production JiraData.get_jira_data_status >> workflow.log 2>&1'

30 22 * * * /bin/bash -l -c 'cd /root/guoshun/qa_assist && python hiveDaily/runner.py >> cron.log 2>&1'

* 20 * * * /bin/bash -l -c 'cd /root/guoshun/ht_plat/ && python deviceAnalysis/runner.py >> device.log'

# End Whenever generated tasks for: /root/guoshun/qa_assist/config/schedule.rb

Check to see if the GEM_PATH parameter has been added, if not

[root@meituanQaServer1 qa_assist]# echo $GEM_PATH
/usr/local/rvm/gems/ruby-2.3.0:/usr/local/rvm/gems/ruby-2.3.0@global

3.crontab -e edit the cron table and add:

GEM_PATH=/usr/local/rvm/gems/ruby-2.3.0:/usr/local/rvm/gems/ruby-2.3.0@global//上面输出的路径

You’re done.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!