Fabric を使用して Django プロジェクトをデプロイしようとしていますが、実行すると次のエラーが発生しますhg pull
。
[myusername.webfactional.com] run: hg pull
[myusername.webfactional.com] out: remote: Warning: Permanently added the RSA host key for IP address '207.223.240.181' to the list of known hosts.
[myusername.webfactional.com] out: remote: Permission denied (publickey,gssapi-keyex,gssapi-with-mic).
[myusername.webfactional.com] err: abort: no suitable response from remote hg!
Fatal error: run() encountered an error (return code 255) while executing 'hg pull'
hg status
のような他のmercurialコマンドを実行できhg log
、fabファイルから問題なく実行できます。
サーバーで SSH キーを生成し、bitbucket アカウントに追加しました。これは、SSH で接続して実行できるhg pull
ため機能し、正常に機能します。ファブリックを使用している場合のみです。
これは私のfabfileです:
from __future__ import with_statement
from fabric.api import *
env.hosts = ['myusername.webfactional.com']
env.user = "myusername"
def development():
# Update files
local("hg push")
with cd("~/webapps/mysite/mysite"):
run("hg pull")
# Update database
with cd("~/webapps/mysite/mysite"):
run("python2.6 manage.py syncdb")
run("python2.6 manage.py migrate")
# Reload apache
run("~/webapps/mysite/apache2/bin/restart")
何か案は?
編集:
httpsを使用してこれを機能させました
だから代わりに
hg pull
私は使用しています
hg pull https://myusername@bitbucket.org/myusername/mysite