2025年 4月5日(土) 05:56 JST

redmine upgrade 3.3.1

  • 2016年10月24日(月) 05:02 JST
  • 投稿者:
  • 表示回数 123

ruby versionは2.3.1に変更

$ wget http://www.redmine.org/releases/redmine-3.3.1.tar.gz

 redmine/files にあるuploadファイルをコピー
$ /usr/bin/mysqldump -u redmine -p redmine | gzip > redmine_`date +%y_%m_%d`.gz

$ tar zxf redmine-3.3.1.tar.gz
$ cp configuration.yml ../../redmine-3.2.1/config/
$ cp database.yml ../../redmine-3.2.1/config/
$ cp unicorn.rb ../../redmine-3.2.1/config/
$ cp config.ru ../../redmine-3.2.1/
$ cp Gemfile.local ../../redmine-3.2.1/

$ bundle install --without development test --path vendor/bundle
$ bundle exec rake generate_secret_token
$ bundle exec rake db:migrate RAILS_ENV=production
$ bundle exec rake redmine:plugins:migrate RAILS_ENV=production
$ bundle exec rake tmp:cache:clear tmp:sessions:clear RAILS_ENV=production

今の所

init.dがうまく動かない。

redmineディレクトリで以下を実行

bundle exec "unicorn_rails -c config/unicorn.rb -E production -D --PATH /redmine"