Redmine
This material is work-in-progress ... Do not follow instructions here until this notice is removed. |
apk add rubygems mysql mysql-dev
gem install rack -v=1.0.1
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
Receiving error here: /usr/bin/ruby: symbol 'each_conf_value_doall_arg': can't resolve symbol in lib '/usr/lib/ruby/1.8/i486-linux-uclibc/openssl.so'. rake aborted!
give redmine user write permissions to files,log,tmp
ruby script/server webrick -e production
localhost:3000
user admin:admin
Possible solution to ruby error is to upgrade to Ruby 1.8.7-p299