sugeng tigefa

write it on line


deploy redmine on openshift with ssh

frist sign in on openshift.redhat.com or sign up new one its free with 1GB storeage.

install openshift CLI gem install rhc or with all dependencies gem install rhc --development

if existing member openshift know for start, using rhc setup

check another deploy app first

Creating new app

rhc app create redmine ruby-1.9 mysql-5 cron-1.4 phpmyadmin-4

Sign SSH

rhc ssh redmine

Change directory website root index

cd ~/app-root/runtime/repo

Get redmine stable releases from redmine/wiki/Download

3-stable version

wget http://www.redmine.org/releases/redmine-3.0.1.tar.gz && tar --strip-components=1 -zxvf *.tar.gz && rm *.tar.gz

2-stable version

wget http://www.redmine.org/releases/redmine-2.6.3.tar.gz && tar --strip-components=1 -zxvf *.tar.gz && rm *.tar.gz

Configure config/database.yml

wget --no-check-certificate
...

Continue reading →