Ruby on rails apache2和铁路乘客

Ruby on rails apache2和铁路乘客,ruby-on-rails,apache2,passenger,Ruby On Rails,Apache2,Passenger,我安装了乘客和apache2。一切正常,但当我想在80端口启动乘客时,它会说: *** ERROR *** The address 0.0.0.0:80 is already in use by another process, perhaps another Phusion Passenger Standalone instance. If you want to run this Phusion Passenger Standalone instance on another port,

我安装了乘客和apache2。一切正常,但当我想在80端口启动乘客时,它会说:

*** ERROR ***
The address 0.0.0.0:80 is already in use by another process, perhaps another
Phusion Passenger Standalone instance.

If you want to run this Phusion Passenger Standalone instance on another port,
use the -p option, like this:

  passenger start -p 81
在80号港口的阿帕奇2号。所以他们不在一起工作。如果我想在80端口启动乘客,我必须禁用apache2。对吗?或者我应该如何更改设置? 现在我做了: /etc/apache2/mods可用/passenger.conf:

PassengerRoot /usr/lib/ruby/gems/1.8/gems/passenger-2.2.14                                                 
PassengerRuby /usr/bin/ruby1.8
/etc/apache2/mods可用/乘客负荷:

LoadModule passenger_module /usr/lib/ruby/gems/1.8/gems/passenger-3.0.9/ext/apache2/mod_passenger.so

没有别的了。感谢您的回答

我这里可能没有准确的术语,但乘客是Apache2内部运行的模块。你不能独立启动它们。您只需启动Apache2,然后它就会加载Passenger。

正确,一次只能有一个进程监听一个端口。谢谢。我知道了。我应该如何配置Apache2?我浏览了大约20个网站,但没有什么是清楚的。。