通常Rails操作本地 Rails c,当需要远程执行时,连接线上环境。
ssh deploy@xx.xx.xx.xx #如果部署用户为deploy时,不建议用root用户连接登陆
cd /home/deploy/app_name/current/
bin/rails c production #执行rails c 进入 production 环境
#写入迁移文件或执行脚本
User.create!(name:"xxx",password:"xxx",password_confirmation:"xxx") #(如:创建用户)
#执行rake
bin/rake xxx RAILS_ENV=production