0

我一直在尝试在我的 VPS 上设置一个 nginx 服务器来部署我的 rails 应用程序。在最后一个命令之前一切都成功了,如果我让它工作,我将能够在服务器上看到我的应用程序。

我做了

sudo service nginx restart

最后,

sudo update-rc.d uinicorn_app defaults

但它说

update-rc.d: /etc/init.d/unicorn_app: file does not exist

我通过进入目录手动检查文件,文件就在那里。但是,当我运行下面的命令时,我得到了以下信息。

deployer@max:/$ file /etc/init.d/unicorn_app
/etc/init.d/unicorn_app: broken symbolic link to `/home/deployer/apps/app/current/config/unicorn_init.sh'

如何解决此问题并完成服务器设置?

更新:似乎我的deploy.rb配置无法正常工作,因为我找不到 /home/deployer/apps/app/current 文件夹。这是我的deploy.rb的一部分:

namespace :deploy do
  %w[start stop restart].each do |command|
    desc "#{command} unicorn server"
    task command, :roles => :app, :except => {:no_release => true} do
      run "/etc/init.d/unicorn_#{application} #{command}"
    end
  end

  task :setup_config, :roles => :app do
    sudo "ln -nfs #{current_path}/config/nginx.conf /etc/nginx/sites-enabled/#{application}"
    sudo "ln -nfs #{current_path}/config/unicorn_init.sh /etc/init.d/unicorn_#{application}"
    run "mkdir -p #{shared_path}/config"
    put File.read("config/database.example.yml"), "#{shared_path}/config/database.yml"
    puts "Now edit the config files in #{shared_path}."
  end

有任何想法吗?

4

1 回答 1

1

如果找不到当前文件,请运行

cap deploy:cold

which will deploy your application, run all pending migrations, and start the server for the first time.

于 2012-12-05T05:38:54.377 回答