0

我想部署我Rails項目爲子域名,但我收到以下錯誤,同時運行帽部署帽部署 - 獲得許可被拒絕

[Deprecation Warning] This API has changed, please hook `deploy:create_symlink` instead of `deploy:symlink`. 
* 2013-09-27 21:14:44 executing `deploy' 
* 2013-09-27 21:14:44 executing `deploy:update' 
** transaction: start 
* 2013-09-27 21:14:44 executing `deploy:update_code' 
executing locally: "git ls-remote [email protected]:anveshnarepo/techzoo.git master" 
Permission denied (publickey). 
fatal: The remote end hung up unexpectedly 
*** [deploy:update_code] rolling back 
* executing "rm -rf /var/www/anveshnatech.com/public_html/edupdu/releases/20130927154447; true" 
servers: ["http://anveshnatech.com/edupdu/www"] 
** [deploy:update_code] exception while rolling back: Capistrano::ConnectionError, connection failed for: http://anveshnatech.com/edupdu/www (SocketError: getaddrinfo: Name or service not known) 
Command git ls-remote [email protected]:anveshnarepo/techzoo.git master returned status code pid 12392 exit 128 

如果我試圖運行帽部署:設置它顯示類似於:

[Deprecation Warning] This API has changed, please hook `deploy:create_symlink` instead of `deploy:symlink`. 
* 2013-09-27 21:23:57 executing `deploy:setup' 
* executing "mkdir -p /var/www/anveshnatech.com/public_html/edupdu  /var/www/anveshnatech.com/public_html/edupdu/releases /var/www/anveshnatech.com/public_html/edupdu/shared /var/www/anveshnatech.com/public_html/edupdu/shared/system /var/www/anveshnatech.com/public_html/edupdu/shared/log /var/www/anveshnatech.com/public_html/edupdu/shared/pids" 
servers: ["http://anveshnatech.com/edupdu/www"] 
connection failed for: http://anveshnatech.com/edupdu/www (SocketError: getaddrinfo: Name or service not known) 

如何解決此問題?

回答

0

一個錯誤是您定義了主機應該去的URI。我懷疑你有

role :app, "http://anveshnatech.com/edupdu/www" 

在capfile,當你需要的東西,如:

role :app, "anveshnatech.com" 

或(例如)

role :app, "10.1.1.1" 

這些可能不是唯一的錯誤,你有您的git鍵存在一些權限問題,以及某些棄用警告帶來的不便。