我一直在尝试在我的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
有什么想法吗?
答案 0 :(得分:1)
如果找不到当前文件,请运行
cap deploy:cold
将部署您的应用程序,运行所有挂起的迁移,并首次启动服务器。