Install Redmine on Ubuntu with SQLite3
Installing dependencies
apt install -y --no-install-recommends apache2 build-essential libapache2-mod-passenger libsqlite3-dev ruby-devDownload & Extract Redmine
mkdir /opt/redmine
tar -xf redmine-5.0.5.tar.gz -C /opt/redmine --strip=1Configure database
production:
adapter: sqlite3
database: db/redmine.sqlite3Install and setup Ruby scripts
cd /opt/redmine
gem install bundler
bundle config set --local without 'development test'
bundle install
bundle exec rake generate_secret_token
RAILS_ENV=production bundle exec rake db:migrate
RAILS_ENV=production REDMINE_LANG=en bundle exec rake redmine:load_default_dataConfigure Apache
Access the Redmine from the local host
Weblinks:
Last updated