LoginSignup
1
1

More than 5 years have passed since last update.

Centos7にNginx + Unicornで構築したRedmine3.3にredmine_agileをインストールする

Posted at

[概要]

下記で構築したRedmineにredmine_agileをインストールする。

Centos7にNginx + UnicornでRedmine3.3構築方法

[事前準備]

下記が構築済みであること。
Centos7にNginx + UnicornでRedmine3.3構築方法

[作業内容]

$ sudo unzip redmine_agile-1_4_1-light.zip

解凍後のファイルを移動させる

$ sudo mv redmine_agile /opt/redmine/plugins/

redmineのrootディレクトリに移動

cd /opt/redmine

gemインストール

$ bundle install --without development test RAILS_ENV=production

マイグレーション実行

$ bundle exec rake redmine:plugins NAME=redmine_agile RAILS_ENV=production

再起動させて反映

$ sudo systemctl restart redmine-unicorn.service

アンインストールする場合

bundle exec rake redmine:plugins NAME=redmine_agile VERSION=0 RAILS_ENV=production

フォルダを削除

rm -r plugins/redmine_agile

[事後確認・作業]

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1