Note that there are some explanatory texts on larger screens.

plurals
  1. POInstalling Redmine on Centos
    text
    copied!<p>I'm following this guide for installing Redmine on CentOS. I've followed every step. Redmine currently runs on WebBrick but not on Apache.</p> <p>I've successfully install passenger. I got this message:</p> <pre><code>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! </code></pre> <p>When I restart the Apache server, I get this message.</p> <pre><code>[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 ] </code></pre> <p>Maybe this has something to do with why it isn't working.</p> <p>Here is the config file:</p> <pre><code>[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 &lt;VirtualHost *:80&gt; ServerName localhost.localdomain DocumentRoot /var/www/html/redmine/public &lt;Directory /var/www/html/redmine/public&gt; # This relaxes Apache security settings. AllowOverride all # MultiViews must be turned off. Options -MultiViews allow from all &lt;/Directory&gt; 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\" %&gt;s %b \"%{Referer}i\" \"%{User-Agent}i\"" &lt;/VirtualHost&gt; </code></pre> <p>Any help would be appreciated.</p> <p>Thanks.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload