安装 Passenger 也会安装 Apache 吗?
到目前为止,我有一台安装了 Ubuntu 11.04 + RVM + Ruby 1.9.2 的新机器。我现在想安装 Apache + Passenger。
我正在尝试从有关 Apache2 和 Passenger 的所有文档中找出我是否应该:
gem install Passenger
然后
Passenger-install-apache2-module
这会同时提供 Apache 和 Passenger 还是我必须“apt-get apache2”然后运行上面的?
I have a new machine installed with Ubuntu 11.04 + RVM + Ruby 1.9.2 so far. I now want to install Apache + Passenger.
I'm trying to work out from all the documentation on Apache2 and Passenger whether I should just:
gem install Passenger
and then
passenger-install-apache2-module
Would that give both Apache and Passenger or do I have to 'apt-get apache2' and then run the above?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
安装 gem 不会安装 Apache 等系统包。您需要使用发行版的包管理器(在本例中为 apt-get)安装 Apache,然后安装 Passenger 及其模块。
Installing a gem wouldn't install a system package such as Apache. You'll need to install Apache using your distro's package manager (apt-get in this instance) and then install Passenger and its modules.