部署 Rails 应用程序:权限被拒绝 - /root/.gems
我正在尝试将 Rails 3 应用程序部署到真实环境(Apache+Passenger)。
但是,我收到以下错误:
Permission denied - /root/.gems
有什么想法吗?
还有一个(可能很愚蠢)问题:我是否需要在真实环境中运行 Rails 服务器,就像在开发环境中一样?
I'm trying to deploy my Rails 3 application to real environment (Apache+Passenger).
However, I got the following error:
Permission denied - /root/.gems
Any ideas ?
And one more (probably stupid) question: Do I need to run rails server
in the real environment, like I do in the development one ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 Passenger,则不需要使用 Rails 的服务器。
至于您最初的问题,听起来您使用
sudo
安装了 rubygems。 gem路径位于根目录中。我建议以普通用户(而不是 root)身份再次安装 gems。If you're using passenger, you don't need to use Rails' server.
As far as your initial question, it sounds like you installed rubygems with
sudo
. The gem path is in the root directory. I'd recommend going through the gems installation again as a normal user, not root.这是为我解决这个问题的答案。
http://discussion.dreamhost.com/thread-128920.html
Here's the answer that solved this for me.
http://discussion.dreamhost.com/thread-128920.html