In case you only want to install Redmine, I will also tell which steps from the Gitorious installation instructions must also be done.
Install packages
- aptitude install ruby-pkg-tools ruby1.8-dev libapache-dbi-perl libapache2-mod-perl2 libdigest-sha1-perl
Fetch Redmine
- cd /var/www/
- wget http://rubyforge.org/frs/download.php/56909/redmine-0.8.4.tar.gz
- gunzip redmine-0.8.4.tar.gz && tar xvf redmine-0.8.4.tar
- mv redmine-0.8.4 redmine
- adduser --system --home /var/www/redmine --no-create-home --group --shell /bin/bash redmine
- chown -R redmine:redmine /var/www/redmine
- Copy attached redmine.conf file to /etc/apache2/conf.d/redmine.conf.
Create database and database user
- mysql -p
- create database redmine character set utf8;
- create user 'redmine'@'localhost' identified by '[password]';
- grant all privileges on redmine.* to 'redmine'@'localhost';
- quit
- Copy attached database.yml to /var/www/redmine/config/database.yml. Change the password to the one you selected in previous step.
- cd /var/www/redmine
- rake db:migrate RAILS_ENV="production"
- rake redmine:load_default_data RAILS_ENV="production"
- Copy attached file email.redmine.yml to /var/www/redmine/config/email.yml. Fix domain name.
Attachments
redmine.conf:
Alias /redmine /var/www/redmine/publicdatabase.yml:
<directory /var/www/redmine/public>
PassengerAppRoot /var/www/redmine
RailsBaseURI /redmine
</directory>
production:email.yml:
adapter: mysql
database: redmine
host: localhost
username: redmine
password: [password]
production:
delivery_method: :smtp
smtp_settings:
address: 127.0.0.1
port: 25
domain: DOMAIN
authentication: :login
user_name: redmine
password: redmine
Launch of eGangLion -Project Management Center http://eganglion.com/
ReplyDeletesaurabh agarwal
Hi All,
I am happy to announce the launch of eGangLion.com ( eGangLion means center of activity energy ).
eGangLion is based on Redmine and can be used for project management , I am planning to keep the services free as long as I can.
I welcome you all to use eGangLion for your projects and provide any suggestions/updates for eGangLion , I will be happy to incorporate your suggestions.
Welcome to the eGangLion community.
Team eGanglion.
http://eganglion.com/
Thanks Makis.
ReplyDeleteYour tutorial was simple and precise. I almost gave up installing and configuring redmine. Your article saved my day. Thanks once again.
I'm happy someone found this useful, James.
ReplyDelete