Project

General

Profile

Actions

HowTo Install Redmine in a sub-URI on Windows with Apache » History » Revision 7

« Previous | Revision 7/13 (diff) | Next »
Jérôme Souquières, 2010-02-17 09:11
Update the output of "ruby -v"


HowTo Install Redmine in a sub-URI on Windows with Apache

Following the steps below exactly as listed will produce a working Redmine 0.9.1 installation hosted under http://localhost/redmine sub-URI on Windows XP/2003/2008 x86/x64 with Apache HTTP Server 2.2.x, MySQL 5.1.x, PHP 5.3.x and Ruby 1.8.7.
This walk-through also applies to installation of the latest Redmine revision. It was tested with Redmine revision r3357.
The intended audience for this walk-through are Windows users.

In case you encounter problems, please look at *this forum thread* for information about some known issues and their workarounds

Install Apache HTTP server 2.2.x

  1. Download "Win32 Binary without crypto (no mod_ssl) (MSI Installer)" or "Win32 Binary including OpenSSL (MSI Installer)", depending if you intend to use SSL on your webserver, from here
  2. Install to C:\webserver\apache

Install MySQL 5.1.x

  1. Download "Windows (x86, 32-bit), MSI Installer" from here
    • (the 64-bit version could be installed on x64 Windows platforms, but the 32-bit version is recommended and it works well on both x86 and x64 versions of Windows.)
    • If you decide to go with the 64-bit version, you might get errors later in the setup that can be fixed by copying a specific version of libmySQL.dll into C:\webserver\Ruby\bin folder. For details refer to *this thread*
  2. Install to C:\webserver\MySQL
    • During setup:
      1. set default character set to UTF8
      2. select "Include Bin Directory in Windows PATH"
      3. (optional:) set data files installation directory to C:\webserver\MySQLData

Install MySQL GUI Tools for MySQL 5.0 MySQL Workbench 5.x.x

  • (EOL was announced for the "MySQL GUI Tools for MySQL 5.0", but it can still be used)
  1. Download "Windows (x86)" from here "Windows (x86, 32-bit), MSI Installer" from here
  2. Install to C:\webserver\MySQL_GUI_Tools C:\webserver\MySQL_Workbench

Install PHP 5.3.x

  1. Download "VC6 x86 Thread Safe Installer" from here
  2. Install to C:\webserver\PHP
    • During setup:
      1. include Curl plugin
      2. (optional:) include LDAP plugin
      3. DO NOT include any MSSQL plugins, because they are not included in the installer package and you will encounter errors about missing DLLs when you try to restart Apache server later in this HowTo. (bug present in PHP 5.3.1 installer)

Install Ruby 1.8.7

  • At the time of writing this document the latest version of Ruby was 1.9.1, however for best compatibility use Ruby version 1.8.7.
  1. Download "rubyinstaller-1.8.7-p249-rc2.exe" from here
  2. Install to C:\webserver\ruby
  3. During setup, select "Add Ruby executables to your PATH"
  4. Open command window, then execute:
    mkdir C:\webserver\railsapps
    cd C:\webserver\railsapps
    gem list
    gem uninstall rails
    gem uninstall actionmailer
    gem uninstall actionpack
    gem uninstall activerecord
    gem uninstall activeresource
    gem uninstall activesupport
    
  5. Verify Ruby version
    1. in command window, execute:
      ruby -v
      
      • expected output:
        ruby 1.8.7 (2010-01-10 patchlevel 249) [i386-mingw32]
        

Install RubyGems

  • At the time of writing this document the latest version of RubyGems was 1.3.5. Newer versions should work too.
  1. Download "rubygems-1.3.5.zip" from here
  2. Extract the package to C:\webserver\railsapps
  3. Install Ruby Gems
    1. in command window, execute:
      cd C:\webserver\railsapps\rubygems-1.3.5
      ruby setup.rb
      
      • expected output:
        RubyGems 1.3.5 installed
        
    2. in command window, execute:
      cd ..
      gem update --system
      
      • If you get errors about missing "SSLEAY32.dll", install PHP as shown above and this dll will become available

Additional gems

  • mongrel-service and win32-service gems have to be downloaded manually. Download locations are added to sections below.

Install Rake

  • At the time of writing this document the latest version of Rake was 0.8.7. Newer versions should work too.
  1. Install Rake gem
    1. in command window, execute:
      gem install rake
      • expected output:
        Successfully installed rake-0.8.7
        

Install Rails

  • At the time of writing this document, Redmine 0.9.1 installation required Rails 2.3.5. Use Rails version 2.3.5 for Redmine revision >= r3235 deployment.*
  1. Install Rails gems
    1. in command window, execute:
      gem install rails -v=2.3.5
      
      • expected output:
        Successfully installed activesupport-2.3.5
        Successfully installed activerecord-2.3.5
        Successfully installed actionpack-2.3.5
        Successfully installed actionmailer-2.3.5
        Successfully installed activeresource-2.3.5
        Successfully installed rack-1.0.1
        Successfully installed rails-2.3.5
        

Install Mongrel

  • At the time of writing this document the latest version of Mongrel was 1.1.5. Newer versions should work too.
  • _Project page_
  1. Install Mongrel gems
    1. in command window, execute:
      gem install mongrel
      
      • expected output:
        Successfully installed gem_plugin-0.2.3
        Successfully installed cgi_multipart_eof_fix-2.5.0
        Successfully installed mongrel-1.1.5-x86-mswin32-60
        

Install mysql gem

  • At the time of writing this document the latest version of mysql gem was 2.8.1. Newer versions should work too.
  • It drastically improves page generation speed.
  1. Install mysql gem
    1. in command window, execute:
      gem install mysql
      
      • expected output:
        Successfully installed mysql-2.8.1
        No definition for ***
        
      • The gem was made for MySQL 5.0 so there are some additional features in 5.1 which will not be defined, so you will see a number of lines about missing definitions, but it does not cause any problems

Install mongrel-service + win32-service gems

  • At the time of writing this document the latest version of win32-service was 0.7 which does NOT work with Ruby 1.8.7
  • Use only win32-service version 0.5.2 for Redmine deployment.
  1. Download "mongrel_service-0.3.4-i386-mswin32.gem" from here
  2. Move mongrel_service-0.3.4-i386-mswin32.gem to C:\webserver\railsapps
  3. Download "win32-service-0.5.2-mswin32.gem" from here
    • This file is also attached at the bottom of this wiki page
  4. Move win32-service-0.5.2-mswin32.gem to C:\webserver\railsapps
  5. Install the gem
    1. in command window, execute:
      cd C:\webserver\railsapps
      gem install mongrel_service
      
      • expected output:
        Successfully installed gem win32-service-0.5.2-mswin32
        Successfully installed gem mongrel_service-0.3.4-i386-mswin32
        

Install Redmine

  • Procedure below assumes we will be installing Redmine 0.9.1, but it also works with any revisions >= r3235
  1. Download Redmine 0.9.1 (final) "redmine-0.9.1.zip" from here
  2. Extract the contents of the redmine-0.9.1 directory in the archive to C:\webserver\railsapps\redmine
  3. Log into MySQL as root using "MySQL Workbench". You can also use command prompt or another tool, such as "MySQL GUI Tools" or "phpMyAdmin".
    • Open a new script tab and execute the following script:
      create database redmine character set utf8;
      create user 'redmineUser'@'localhost' identified by 'myPassword';
      grant all privileges on redmine.* to 'redmineUser'@'localhost';
      
    • You should of course make the redmineUser and myPassword less obvious.
  4. Copy C:\webserver\railsapps\redmine\config\database.yml.example to C:\webserver\railsapps\redmine\config\database.yml
  5. Edit C:\webserver\railsapps\redmine\config\database.yml file to configure your database settings for "production" environment. It should look like this:
    production:
      adapter: mysql
      database: redmine
      host: localhost
      username: redmineUser
      password: myPassword
      encoding: utf8
    
    • set username and password to the values entered in the SQL script above.
    • save and close the file.
  6. Create default tables and populate with data (for fresh install only)
    1. in command window, execute:
      cd C:\webserver\railsapps\redmine
      set RAILS_ENV=production
      rake config/initializers/session_store.rb
      rake db:migrate
      rake redmine:load_default_data
      
      • If you encounter this error: Mysql::Error: query: not connected: CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB, you might need to download a specific version of libmySQL.dll into C:\webserver\Ruby\bin folder.
        For details refer to *this thread*
  7. Assuming that we will be hosting Redmine under http://localhost/redmine:
    Edit C:\webserver\railsapps\redmine\config\environment.rb file to configure Redmine to work as a sub-URI (Apache configuration is also required and is listed later on in this document).
    • add the following line at the bottom of the file:
      Redmine::Utils::relative_url_root = "/redmine" 
      
    • save and close the file.
    • This is a preferred way of setting up the application prefix. Mongrel_rails service "--prefix" directive does NOT work with Rails 2.3.x

Setup windows services

  • Memory usage is greatly affected by the number of mongrels running. Keep that in mind when deciding on how many processes you want to run. For example, memory usage on Windows Server 2003 x64 SP2:
    • Apache = 5MB + 20MB + 40MB = 65MB
    • MySQL = 35MB
    • Mongrel cluster = number-of-mongrel_rails-services x (3MB + 90MB) = 279MB (Яна Титаренко processes)
  1. Create windows services
    1. in command window, execute:
      mongrel_rails service::install -N mongrel_redmine_3001 -D "Mongrel serving Redmine on 3001" -p 3001 -e production -c C:\webserver\railsapps\redmine
      mongrel_rails service::install -N mongrel_redmine_3002 -D "Mongrel serving Redmine on 3002" -p 3002 -e production -c C:\webserver\railsapps\redmine
      mongrel_rails service::install -N mongrel_redmine_3003 -D "Mongrel serving Redmine on 3003" -p 3003 -e production -c C:\webserver\railsapps\redmine
      
  2. Start windows services, which in turn will start mongrel servers
    1. in command window, execute:
      net start mongrel_redmine_3001
      net start mongrel_redmine_3002
      net start mongrel_redmine_3003
      
  3. Go to the Windows Services list and set all "Mongrel serving Redmine on 300#" services to start automatically
    1. in command window, execute:
      services.msc /s
      
    2. find each one of "Mongrel serving Redmine on 300#" services
    3. right click, select Properties
    4. set Startup type to "Automatic"
    5. press OK and repeat for the remaining Mongrel services.

Configure Apache 2.2.x as proxy to Mongrel cluster

  • Procedure below assumes we will be hosting Redmine under http://localhost/redmine and must match the relative_url_root set above
  1. Open C:\webserver\apache\conf\httpd.conf
  2. At the bottom of this file add the following line:
    Include conf/httpd-proxy-mongrel.conf
    
  3. Create a file C:\webserver\apache\conf\httpd-proxy-mongrel.conf
  4. Enter the following:
    LoadModule proxy_module modules/mod_proxy.so
    LoadModule proxy_http_module modules/mod_proxy_http.so
    LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    
    ProxyPass /redmine balancer://redmine_cluster
    ProxyPassReverse /redmine balancer://redmine_cluster
    
    <Proxy balancer://redmine_cluster>
        BalancerMember http://127.0.0.1:3001
        BalancerMember http://127.0.0.1:3002
        BalancerMember http://127.0.0.1:3003
    </Proxy>
    
  5. Restart the Apache service.
    • in command window, execute:
      C:\webserver\apache\bin\httpd.exe -w -n "Apache2.2" -k stop
      C:\webserver\apache\bin\httpd.exe -w -n "Apache2.2" -k start
      

DONE!

Apendix

  • Check if you have all the necessary gems installed for Redmine 0.9.1+
    • in command window, execute:
      gem list
      
      • expected output:
        actionmailer (2.3.5)
        actionpack (2.3.5)
        activerecord (2.3.5)
        activeresource (2.3.5)
        activesupport (2.3.5)
        cgi_multipart_eof_fix (2.5.0)
        gem_plugin (0.2.3)
        mongrel (1.1.5)
        mongrel_service (0.3.4)
        mysql (2.8.1)
        rack (1.0.1)
        rails (2.3.5)
        rake (0.8.7)
        win32-service (0.5.2)
        
  • As already mentioned above, in case you encounter problems, please look at *this forum thread* for information about some known issues and their workarounds

Updated by Jérôme Souquières about 14 years ago · 7 revisions