rails类方法在弹性beanstalk中不起作用

j5fpnvbx  于 2021-06-21  发布在  Mysql
关注(0)|答案(1)|浏览(340)

我有一个类方法,我需要每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'

在我的弹性Beanstalk环境中运行,但我不断得到一个错误

/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'] %>

我已经想了一段时间了,非常感谢您的帮助!

zxlwwiss

zxlwwiss1#

我想出来了,原来我的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'

成功了

相关问题