6

我正在使用 capistrano 在 Ubuntu 服务器上播放我的 rails 应用程序。

我已经登录到服务器并创建了一个文件夹 /webapps/myapp,但这里没有子文件夹。

然后我跑

cap deploy:setup

到目前为止没有错误,所以我运行

cap deploy:setup

现在我收到这条消息

You do not have permissions to write to /webapps/myapp/releases

我可以通过登录服务器并更改版本的所有者来解决这个问题,我只是想知道为什么它不是使用我用于部署的用户创建的?这是它的工作原理还是我错过了什么?

4

1 回答 1

9

In your deploy.rb file you should specify the deployment user and if he has sudo privilege.

set :user, "william"
set :use_sudo, false

Giving sudo privilege isn't recommended, but this option exists.

The directory to which you deploy should be already owned by the deployment user "william"

于 2013-01-30T11:19:14.173 回答