/ Sites /mywebsiteにSymfony2.1Webサイトフォルダーがあり、そこにgitがあります。capifonyを使用して、自分のWebサイトをリモートサーバーにすばやく展開したいと思います(現在はftpを使用しています)。だから私はcapifonyをインストールし、プロジェクトでcapifonyを開始しますcapifony .
ここで説明するように2番目のソリューションを使用しますhttp://capifony.org/(デプロイメント->コピーによる本番)、したがって、次のようにdeploy.rbファイルを設定します。
set :application, "mywebsite"
set :domain, "199.178.832.3:8534"
set :deploy_to, "git/mywebsite.git"
set :app_path, "app"
set :repository, "file:///Users/me/Sites/mywebsite"
set :scm, :git
# Or: `accurev`, `bzr`, `cvs`, `darcs`, `subversion`, `mercurial`, `perforce`, or `none`
set :model_manager, "doctrine"
# Or: `propel`
role :web, domain # Your HTTP server, Apache/etc
role :app, domain # This may be the same as your `Web` server
role :db, domain, :primary => true # This is where Symfony2 migrations will run
set :use_composer, true
set :use_sudo, false
set :keep_releases, 3
set :shared_files, ["app/config/parameters.yml"]
set :shared_children, [app_path + "/logs", web_path + "/uploads", "vendor"]
set :deploy_via, :rsync_with_remote_cache
ssh_options[:forward_agent] = true
ssh_options[:keys] = ["~/.ssh/id_rsa"]
# Be more verbose by uncommenting the following line
logger.level = Logger::MAX_LEVEL
しかし、実行するcap deploy:setup
と、次のエラーが発生します。
* 2013-03-19 10:52:06 executing `deploy:setup'
* executing "mkdir -p git/mywebsite.git git/mywebsite.git/releases git/mywebsite.git/shared"
servers: ["199.178.832.3"]
Password:
connection failed for: 199.178.832.3:8534 (Net::SSH::AuthenticationFailed: me)
パスワードを要求されますが、authorized_keysでリモートサーバーに公開鍵を追加し、この公開鍵のパスワードを設定していないため、どのパスワードとその理由がわかりません。