2

我正在按照本指南在 CentOS 上安装 Redmine。我已经遵循了每一步。Redmine 目前在 WebBrick 上运行,但不在 Apache 上。

我已经成功安装了乘客。我收到了这条消息:

Please edit your Apache configuration file, and add these lines:

LoadModule passenger_module /usr/lib64/ruby/gems/1.8/gems/passenger-4.0.0.rc4/libout/apache2/mod_passenger.so
PassengerRoot /usr/lib64/ruby/gems/1.8/gems/passenger-4.0.0.rc4
PassengerRuby /usr/bin/ruby

After you restart Apache, you are ready to deploy any number of Ruby on Rails
applications on Apache, without any further Ruby on Rails-specific
configuration!

当我重新启动 Apache 服务器时,我收到此消息。

[root@localhost httpd]# service httpd restart
Stopping httpd:                                            [  OK  ]
Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain for ServerName
[Mon Mar 25 08:02:58 2013] [warn] NameVirtualHost *:80 has no VirtualHosts
                                                           [  OK  ]

也许这与它为什么不起作用有关。

这是配置文件:

[root@localhost conf.d]# cat redmine.conf 
# Loading Passenger
LoadModule passenger_module /usr/lib64/ruby/gems/1.8/gems/passenger-4.0.0.rc4/libout/apache2/mod_passenger.so
PassengerRoot /usr/lib64/ruby/gems/1.8/gems/passenger-4.0.0.rc4
PassengerRuby /usr/bin/ruby

<VirtualHost *:80>
   ServerName localhost.localdomain
   DocumentRoot /var/www/html/redmine/public
   <Directory /var/www/html/redmine/public>
      # This relaxes Apache security settings.
      AllowOverride all
      # MultiViews must be turned off.
      Options -MultiViews
      allow from all
   </Directory>

   ErrorLog "|/usr/sbin/rotatelogs /etc/httpd/logs/redmine-error.%Y-%m-%d.log 86400"
   CustomLog "|/usr/sbin/rotatelogs /etc/httpd/logs/redmine-access.%Y-%m-%d.log 86400" "%h %l %u %t %D \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\""

</VirtualHost>

任何帮助,将不胜感激。

谢谢。

4

2 回答 2

1

您的 apache 网络服务器的版本是什么?我猜这个问题可能来自apache版本。

于 2017-03-06T17:59:43.693 回答
0

这是我的虚拟主机配置。

<VirtualHost my.url.de:80>

   ServerName my.url.de:80

   ServerAdmin mail@url.de

   DocumentRoot /var/www/redmine/redmine-2.0.3/public


   <Directory /var/www/redmine/redmine-2.0.3/public>
       AllowOverride All
       Options -MultiViews
       allow from all
   </Directory>


   ErrorLog /var/log/redmine-2.0.3/error_log
   CustomLog /var/log/redmine-2.0.3/access common


</VirtualHost>

这行得通,也许不使用<VirtualHost *:80>?然后错误消息service httpd restart应该就消失了。

如果这不能解决它:
我遇到的一个问题是您需要正确访问日志:

  • 它们必须存在并且
  • 你的 apache 用户必须有 RW。

由于我使用了一个特殊的 Apache 设置,每个虚拟主机都有一个专用用户(此处省略了 conf 行),这对您来说可能不是问题。仍然提到它,以防万一,因为我花了很长时间才找到这个错误,所以在任何地方都没有关于这个问题的消息。

在您的情况下,请尝试更基本的日志文件以排除它们成为错误原因。

于 2013-03-25T15:17:42.073 回答