Redmine: Difference between revisions

From Alpine Linux
m (another small tweak)
(Fixed lighttpd config)
Line 1: Line 1:
{{Draft}}
{{Draft}}
apk add lighttpd fcgi rubygems mysql mysql-dev<br />
apk add lighttpd fcgi rubygems mysql mysql-dev php<br />
gem install rack -v=1.0.1<br />
gem install rails -v=2.3.5<br />
gem install rails -v=2.3.5<br />
gem install mysql<br />
gem install mysql<br />
Line 17: Line 16:
RAILS_ENV=production rake redmine:load_default_data (keep default language of en)<br />
RAILS_ENV=production rake redmine:load_default_data (keep default language of en)<br />
  ruby script/server webrick -e production
  ruby script/server webrick -e production
  localhost:3000
  browse to localhost:3000
  user admin:admin
  user admin:admin
Edit lighttpd.conf and uncomment "include mod_fcgi.conf"<br />
Edit lighttpd.conf and uncomment "include mod_fcgi.conf"<br />
Follow http://www.redmine.org/boards/2/topics/4458 adding the virtual host config to /etc/lighttpd/redmine.conf, and add redmine.conf to the includes in /etc/lighttpd/lighttpd.conf<br />
Restart lighttpd. <br />
Restart lighttpd. <br />
apk add fcgi-dev<br />
gem install fcgi<br />
add to mod_fcgi.conf bin-path /var/www/localhost/htdocs/public/dispatch.fcgi.example<br />

Revision as of 13:37, 16 November 2010

This material is work-in-progress ...

Do not follow instructions here until this notice is removed.
(Last edited by Jbilyk on 16 Nov 2010.)

apk add lighttpd fcgi rubygems mysql mysql-dev php
gem install rails -v=2.3.5
gem install mysql
mysql commands:

create database redmine character set utf8;
grant all privileges on redmine.* to 'redmine'@'localhost' identified by 'Secur3P@ass';
flush privileges;

mkdir /usr/share/webapps/redmine
copy over redmine-1.0.3.tar.gz contents into folder
chown -R lighttpd:lighttpd /usr/share/webapps/redmine
edit config/database.yml (copied from database.yml.example) production section to match above mysql settings
cd /usr/share/webapps/redmine
rake generate_session_store
RAILS_ENV=production rake db:migrate
RAILS_ENV=production rake redmine:load_default_data (keep default language of en)

ruby script/server webrick -e production
browse to localhost:3000
user admin:admin

Edit lighttpd.conf and uncomment "include mod_fcgi.conf"
Follow http://www.redmine.org/boards/2/topics/4458 adding the virtual host config to /etc/lighttpd/redmine.conf, and add redmine.conf to the includes in /etc/lighttpd/lighttpd.conf
Restart lighttpd.