gpt4 book ai didi

mysql - cron 作业中的 Rails 类方法在弹性 beantalk 中不起作用

转载 作者:行者123 更新时间:2023-11-30 21:21:42 25 4
gpt4 key购买 nike

我有一个类方法,我需要每 15 分钟运行一次,我有 cron 作业

0,15,30,45 * * * * /bin/bash -l -c 'cd /var/app/current && sudo /opt/rubies/ruby-2.3.5/bin/bundle exec /opt/rubies/ruby-2.3.5/bin/rails runner -e production '\''Structure.check_parking'\'' >> /var/app/current/log/cron_log 2>&1'

在我的弹性 beantsalk 环境中运行,但我不断收到错误

/opt/rubies/ruby-2.3.5/lib/ruby/gems/2.3.0/gems/mysql2-0.4.4/lib/mysql2/client.rb:87:in `connect': Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)

我在我的生产环境中使用 RDS 服务器,所以奇怪的是它试图连接到本地 mysql 服务器。

Rails 应用程序已连接到数据库,我可以在其上执行所有正常功能,但是当我尝试运行此类方法时出现此错误。

我的猜测是它没有在生产中运行,但我真的不确定,我的 database.yml 文件看起来像

development:
adapter: mysql2
database: bddatabase
encoding: utf8
username: bduser
password: dbpass
host: 127.0.0.1
port: 3306

production:
adapter: mysql2
encoding: utf8
database: <%= ENV['RDS_DB_NAME'] %>
username: <%= ENV['RDS_USERNAME'] %>
password: <%= ENV['RDS_PASSWORD'] %>
host: <%= ENV['RDS_HOSTNAME'] %>
port: <%= ENV['RDS_PORT'] %>

一直在努力解决这个问题,非常感谢您的帮助!

最佳答案

我想通了,原来我的 cron 任务本身有问题。我认为我引用 bundle 和 rails 的方式并没有指向导致错误的我的应用程序。将命令更改为

0,15,30,45 * * * * /bin/bash -l -c 'cd /var/app/current && bundle exec rails runner -e production 'Structure.check_parking' >> /var/app/current/log/cron_log 2>&1'

成功了

关于mysql - cron 作业中的 Rails 类方法在弹性 beantalk 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48117500/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com