Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Given that no truly reliable installation instructions can be found around (Fedora or other distribution that is), I will hereby detail the installation steps that worked for me. The website instructions are pretty reliable, but this is the most straightforward approach. I assume that you already have Apache2 and MySql, and installed Redmine 1.2.1 on a given $REDMINE_HOME.</p> <p>This procedure was tested on Ubuntu 11.04, but given the packages involved, it should not be a problem replicating the procedure with success under Fedora. I will try to be as generic as possible.</p> <p><strong>Ruby:</strong></p> <ol> <li>Install ruby, rubygems, rake and the development mysql client library (libmysqlclient-dev on Ubuntu); a working ruby version is the 1.8.7 as of Sep '11</li> <li><code>gem install rails -v=2.3.11</code></li> <li><code>gem install i18n -v=0.4.2</code></li> <li><code>gem install mysql</code></li> </ol> <p><strong>MySql:</strong></p> <p>Perform the following list of commands:</p> <ol> <li><code>create database redmine character set utf8;</code></li> <li><code>create user 'redmine'@'localhost' identified by 'my_password';</code></li> <li><code>grant all privileges on redmine.* to 'redmine'@'localhost';</code></li> </ol> <p><strong>Redmine configuration:</strong></p> <ol> <li><p>Create a $REDMINE_HOME/config/database.yml file with at least the following profile:</p> <pre><code>production: adapter: mysql database: redmine host: localhost username: redmine password: my_password </code></pre></li> <li><p>In $REDMINE_HOME, run</p> <ul> <li><code>rake generate_session_store</code> </li> <li><code>rake db:migrate RAILS_ENV=production</code></li> <li><code>rake redmine:load_default_data RAILS_ENV=production</code></li> </ul></li> </ol> <p>Now running <code>ruby script/server -e production</code> should have you access Redmine at "0.0.0.0:3000".</p> <p><strong>Apache2:</strong></p> <ol> <li>Install the Apache2 Passenger mod (libapache2-mod-passenger in Ubuntu)</li> <li><p>Assuming you provided a symbolic link to $REDMINE_HOME/public from /var/www/redmine, the virtual host should read something like this:</p> <pre><code>&lt;VirtualHost *:80&gt; DocumentRoot /var/www Options Indexes ExecCGI FollowSymLinks RailsBaseURI /redmine &lt;Directory /var/www/redmine&gt; Options -MultiViews &lt;/Directory&gt; &lt;/VirtualHost&gt; </code></pre></li> </ol> <p><strong>Eclipse Mylyn integration:</strong></p> <ol> <li><p>Go to $REDMINE_HOME/vendor/plugins and run</p> <p><code>git clone git://redmin-mylyncon.git.sourceforge.net/gitroot/redmin-mylyncon/redmine-mylyn-connector</code></p></li> <li><p>(Re)start the server, and in Redmine under Administration/Plugins the Mylyn Connector Plugin should be listed</p></li> <li>Again in Redmine, under Administration/Settings/Authentication, check the "Enable REST web service" field</li> <li><p>In Eclipse, install the Eclipse connector via its update site</p> <p><a href="http://redmin-mylyncon.sourceforge.net/update-site/N/" rel="nofollow">http://redmin-mylyncon.sourceforge.net/update-site/N/</a></p></li> </ol>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

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