Windows10上のBitnami Redmineが突然使用不可になったので再インストールした

こんにちは、コンちゃんこと佐々木です。
ローカル環境にRedmineを入れて1人スクラム開発(という名のTODOリスト)の管理をしています。
Bitnami Redmine(以下、B-Redmine)はオールインワンパッケージで、Redmineを容易に導入できるため使っていましたが、トラブルが発生したのでその対処方法をメモっておきます。
環境は
OS:Windows10 Home(64bit)
CPU:Core M-5Y51
メモリ:8GB
です。
_____________________________________________________________________
先日(2017.01.27)、B-Redmineにアクセスしようと思ってB-Redmine Stackを起動してGo to Applicationボタン押した…が反応がない。
Manage Serversタブを見ると、なんとサーバが何も存在せず真っ白。(以下画像は正常時)
うーむ、どうして何も表示されないんだ?
リンク先を参考に.batを実行するも、サービスないよとエラー出る。
ちょいと調べたら、windows上ではサービスとして登録されているそうで、サービスのページを表示してみるも、それらしきサービスが…ない…だと…?
たぶんWindowsの更新が原因だなーと思って前バージョンに戻したかったけど、復元ポイントが無効になっていて戻せない!(ここで有効にした)
困ったのでB-Redmineを再インストールすることにしました。
(サービスを手動で追加することは試さなかった、やったことなかったのでこの発想がなかった)
以下、作業ごとに番号振ってみたけど、分かりやすいだろうか…
(1)
再インストールにあたり、現在のRedmineのデータをバックアップしたいのでMySQLのコマンドを叩いたけど、MySQLサーバももちろん存在しない…。
あっこれやばいやん、って思ったけど、とりあえずMySQLのデータがあるフォルダ丸ごと置き換えればいけるかな?と考え、そのフォルダだけコピーしといた。
フォルダの場所は以下。
(B-Redmineの場所)/mysql/data/bitnami_redmine
(2)
さて、再インストール。
uninstall.exe→再起動→インストール→コピーしておいたものでbitnami_redmineフォルダ上書き→プラグインフォルダにscrumプラグインの最新版を置く→再起動。
uninstall.exe実行時に.batのコマンドラインが終了されていないと、実行が途中で進まなくなるよ。
タスクバーに残っていないか確認してね!(.batにpauseを書き加えて実行しており、見事にやらかしました)
(3)
さて、インストールが終わったら次はデータベースの復元とスクラムプラグインの再インストールを試みます。
まず、use_redmine.batを管理者権限起動して(B-Redmineの場所)/apps/redmine/htdocsで以下2行実行。
set RAILS_ENV=production
set NAME=scrum
(4)
次に同フォルダ内Gemfile1行目をhttpsからhttpにして、リンク先にあるように以下2行実行。
bundle install --without development test postgresql sqlite --no-deployment
bundle install --without development test postgresql sqlite --deployment
(5)
続いて/configにあるdatabase.ymlのproduction項のusernameをroot、パスワードをインストール時入力のものに変更。
(6)
そして../してhtdocsに戻り以下3行実行。
bundle exec rake db:migrate
bundle exec rake redmine:load_default_data
bundle exec rake redmine:plugins
(7)
最後にManage Serversを開いて全サーバ再起動かけて終わり!!
スクラム開発データなど全復旧しており、良かった。
プラグインフォルダにscrumプラグイン入れるときに、最新版のプラグインに置き換えたけどこっちも問題ないっぽい。
というわけで、お疲れさまでした。
以下参考
・サービスの話
https://docs.bitnami.com/installer/apps/redmine/#windows
・Redmineインストール全般
http://redmine.jp/guide/RedmineInstall/
http://qiita.com/ktyubeshi/items/64266d3c485b55869138
・rakeがabortされる件(以下URL先の「はまるところ2」)
http://qiita.com/Kaisyou/items/17142ff2d080d565fedc
・本記事執筆時のBGM
https://www.youtube.com/watch?v=RwCH3zT4eF4
・以下からはすべて作業ログです(冗長なところは省いた、一部エラーは戦いの記録ってことで残した)
Microsoft Windows [Version 10.0.14393]
(c) 2016 Microsoft Corporation. All rights reserved.

C:\Users\conchan-hp\softs\Bitnami\redmine-3.3.1-0>cd apps/redmine

C:\Users\conchan-hp\softs\Bitnami\redmine-3.3.1-0\apps\redmine>cd htdocs

C:\Users\conchan-hp\softs\Bitnami\redmine-3.3.1-0\apps\redmine\htdocs>bundle install --without development test postgresql sqlite --no-deployment
Fetching source index from https://rubygems.org/
Retrying source fetch due to error (2/3): Bundler::Fetcher::CertificateFailureError Could not verify the SSL certificate for https://rubygems.org/.
There is a chance you are experiencing a man-in-the-middle attack, but most likely your system doesn't have the CA certificates needed for verification. For information about OpenSSL certificates, see bit.ly/ruby-ssl. To connect without using SSL, edit your Gemfile sources and change 'https' to 'http'.
Retrying source fetch due to error (3/3): Bundler::Fetcher::CertificateFailureError Could not verify the SSL certificate for https://rubygems.org/.
There is a chance you are experiencing a man-in-the-middle attack, but most likely your system doesn't have the CA certificates needed for verification. For information about OpenSSL certificates, see bit.ly/ruby-ssl. To connect without using SSL, edit your Gemfile sources and change 'https' to 'http'.
Could not verify the SSL certificate for https://rubygems.org/.
There is a chance you are experiencing a man-in-the-middle attack, but most
likely your system doesn't have the CA certificates needed for verification. For
information about OpenSSL certificates, see bit.ly/ruby-ssl. To connect without
using SSL, edit your Gemfile sources and change 'https' to 'http'.

C:\Users\conchan-hp\softs\Bitnami\redmine-3.3.1-0\apps\redmine\htdocs>set RAILS_ENV=production

C:\Users\conchan-hp\softs\Bitnami\redmine-3.3.1-0\apps\redmine\htdocs>set NAME=scrum

C:\Users\conchan-hp\softs\Bitnami\redmine-3.3.1-0\apps\redmine\htdocs>bundle exec rake redemine:plugins
Could not find rake-11.3.0 in any of the sources
Run `bundle install` to install missing gems.

C:\Users\conchan-hp\softs\Bitnami\redmine-3.3.1-0\apps\redmine\htdocs>bundle install --without development test postgresql sqlite --no-deployment
Fetching gem metadata from http://rubygems.org/...........
Fetching version metadata from http://rubygems.org/...
Fetching dependency metadata from http://rubygems.org/..
Resolving dependencies....
Installing rake 11.3.0
Installing i18n 0.7.0
Installing json 1.8.3
Installing minitest 5.9.0
Installing thread_safe 0.3.5
Installing tzinfo 1.2.2
Installing activesupport 4.2.7.1
Installing builder 3.2.2
Installing erubis 2.7.0
Installing mini_portile2 2.1.0
Installing pkg-config 1.1.7
Installing nokogiri 1.6.8
Installing rails-deprecated_sanitizer 1.0.3
Installing rails-dom-testing 1.0.7
Installing loofah 2.0.3
Installing rails-html-sanitizer 1.0.3
Installing actionview 4.2.7.1
Installing rack 1.6.4
Installing rack-test 0.6.3
Installing actionpack 4.2.7.1
Installing globalid 0.3.7
Installing activejob 4.2.7.1
Installing mime-types-data 3.2016.0521
Installing mime-types 3.1
Installing mail 2.6.4
Installing actionmailer 4.2.7.1
Installing actionpack-action_caching 1.1.1
Installing actionpack-xml_parser 1.0.2
Installing activemodel 4.2.7.1
Installing arel 6.0.3
Installing activerecord 4.2.7.1
Installing addressable 2.4.0
Using bundler 1.9.6
Installing coderay 1.1.1
Installing concurrent-ruby 1.0.2
Installing css_parser 1.3.7
Installing daemons 1.2.3
Installing eventmachine 1.0.3
Installing htmlentities 4.3.1
Installing thor 0.19.1
Installing railties 4.2.7.1
Installing jquery-rails 3.1.4
Installing mimemagic 0.3.2
Installing mysql2 0.4.2
Installing net-ldap 0.12.1
Installing protected_attributes 1.1.3
Installing ruby-openid 2.3.0
Installing rack-openid 1.4.2
Installing sprockets 3.7.0
Installing sprockets-rails 3.2.0
Installing rails 4.2.7.1
Installing rbpdf-font 1.19.0
Installing rbpdf 1.19.0
Installing redcarpet 3.3.4
Installing request_store 1.0.5
Installing rmagick 2.15.4
Installing roadie 3.1.1
Installing roadie-rails 1.1.1
Installing thin 1.6.1
Installing tzinfo-data 1.2016.1
Updating files in vendor/cache
Bundle complete! 33 Gemfile dependencies, 60 gems now installed.
Gems in the groups development, test, postgresql and sqlite were not installed.
Use `bundle show [gemname]` to see where a bundled gem is installed.
Post-install message from nokogiri:
Nokogiri is built with the packaged libraries: libxml2-2.9.4, libxslt-1.1.29, zlib-1.2.8, libiconv-1.14.
Post-install message from mysql2:

======================================================================================================

  You've installed the binary version of mysql2.
  It was built using MySQL Connector/C version 6.1.6.
  It's recommended to use the exact same version to avoid potential issues.

  At the time of building this gem, the necessary DLL files were retrieved from:
  http://cdn.mysql.com/Downloads/Connector-C/mysql-connector-c-6.1.6-win32.zip

  This gem *includes* vendor/libmysql.dll with redistribution notice in vendor/README.

======================================================================================================


C:\Users\conchan-hp\softs\Bitnami\redmine-3.3.1-0\apps\redmine\htdocs>bundle install --without development test postgresql sqlite --deployment
Using rake 11.3.0
Using i18n 0.7.0
Using json 1.8.3
Using minitest 5.9.0
Using thread_safe 0.3.5
Using tzinfo 1.2.2
Using activesupport 4.2.7.1
Using builder 3.2.2
Using erubis 2.7.0
Using mini_portile2 2.1.0
Using pkg-config 1.1.7
Using nokogiri 1.6.8
Using rails-deprecated_sanitizer 1.0.3
Using rails-dom-testing 1.0.7
Using loofah 2.0.3
Using rails-html-sanitizer 1.0.3
Using actionview 4.2.7.1
Using rack 1.6.4
Using rack-test 0.6.3
Using actionpack 4.2.7.1
Using globalid 0.3.7
Using activejob 4.2.7.1
Using mime-types-data 3.2016.0521
Using mime-types 3.1
Using mail 2.6.4
Using actionmailer 4.2.7.1
Using actionpack-action_caching 1.1.1
Using actionpack-xml_parser 1.0.2
Using activemodel 4.2.7.1
Using arel 6.0.3
Using activerecord 4.2.7.1
Using addressable 2.4.0
Using coderay 1.1.1
Using concurrent-ruby 1.0.2
Using css_parser 1.3.7
Using daemons 1.2.3
Using eventmachine 1.0.3
Using htmlentities 4.3.1
Using thor 0.19.1
Using railties 4.2.7.1
Using jquery-rails 3.1.4
Using mimemagic 0.3.2
Using mysql2 0.4.2
Using net-ldap 0.12.1
Using protected_attributes 1.1.3
Using ruby-openid 2.3.0
Using rack-openid 1.4.2
Using bundler 1.9.6
Using sprockets 3.7.0
Using sprockets-rails 3.2.0
Using rails 4.2.7.1
Using rbpdf-font 1.19.0
Using rbpdf 1.19.0
Using redcarpet 3.3.4
Using request_store 1.0.5
Using rmagick 2.15.4
Using roadie 3.1.1
Using roadie-rails 1.1.1
Using thin 1.6.1
Using tzinfo-data 1.2016.1
Bundle complete! 33 Gemfile dependencies, 60 gems now installed.
Gems in the groups development, test, postgresql and sqlite were not installed.
Bundled gems are installed into ./vendor/bundle.

C:\Users\conchan-hp\softs\Bitnami\redmine-3.3.1-0\apps\redmine\htdocs>bundle exec rake db:migrate
DL is deprecated, please use Fiddle
rake aborted!
Mysql2::Error: Access denied for user 'bitnami'@'localhost' (using password: YES)
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/mysql2-0.4.2-x86-mingw32/lib/mysql2/client.rb:87:in `connect'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/mysql2-0.4.2-x86-mingw32/lib/mysql2/client.rb:87:in `initialize'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.7.1/lib/active_record/connection_adapters/mysql2_adapter.rb:18:in `new'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.7.1/lib/active_record/connection_adapters/mysql2_adapter.rb:18:in `mysql2_connection'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.7.1/lib/active_record/connection_adapters/abstract/connection_pool.rb:438:in `new_connection'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.7.1/lib/active_record/connection_adapters/abstract/connection_pool.rb:448:in `checkout_new_connection'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.7.1/lib/active_record/connection_adapters/abstract/connection_pool.rb:422:in `acquire_connection'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.7.1/lib/active_record/connection_adapters/abstract/connection_pool.rb:349:in `block in checkout'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.7.1/lib/active_record/connection_adapters/abstract/connection_pool.rb:348:in `checkout'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.7.1/lib/active_record/connection_adapters/abstract/connection_pool.rb:263:in `block in connection'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.7.1/lib/active_record/connection_adapters/abstract/connection_pool.rb:262:in `connection'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.7.1/lib/active_record/connection_adapters/abstract/connection_pool.rb:571:in `retrieve_connection'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.7.1/lib/active_record/connection_handling.rb:113:in `retrieve_connection'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.7.1/lib/active_record/connection_handling.rb:87:in `connection'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.7.1/lib/active_record/model_schema.rb:230:in `table_exists?'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.7.1/lib/active_record/attribute_methods/primary_key.rb:97:in `get_primary_key'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.7.1/lib/active_record/attribute_methods/primary_key.rb:85:in `reset_primary_key'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.7.1/lib/active_record/attribute_methods/primary_key.rb:73:in `primary_key'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/protected_attributes-1.1.3/lib/active_record/mass_assignment_security/attribute_assignment.rb:15:in `attributes_protected_by_default'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/protected_attributes-1.1.3/lib/active_model/mass_assignment_security.rb:337:in `block in protected_attributes_configs'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/protected_attributes-1.1.3/lib/active_model/mass_assignment_security.rb:222:in `yield'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/protected_attributes-1.1.3/lib/active_model/mass_assignment_security.rb:222:in `protected_attributes'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/protected_attributes-1.1.3/lib/active_model/mass_assignment_security.rb:126:in `block in attr_protected'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/protected_attributes-1.1.3/lib/active_model/mass_assignment_security.rb:125:in `each'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/protected_attributes-1.1.3/lib/active_model/mass_assignment_security.rb:125:in `attr_protected'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/app/models/custom_field.rb:36:in `<class:CustomField>'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/app/models/custom_field.rb:18:in `<top (required)>'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:274:in `require'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:274:in `block in require'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:240:in `load_dependency'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:274:in `require'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:360:in `require_or_load'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:494:in `load_missing_constant'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:184:in `const_missing'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:526:in `load_missing_constant'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:184:in `const_missing'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:526:in `load_missing_constant'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:184:in `const_missing'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:526:in `load_missing_constant'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:184:in `const_missing'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/lib/redmine/field_format.rb:90:in `field_attributes'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/lib/redmine/field_format.rb:93:in `<class:Base>'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/lib/redmine/field_format.rb:50:in `<module:FieldFormat>'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/lib/redmine/field_format.rb:21:in `<module:Redmine>'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/lib/redmine/field_format.rb:20:in `<top (required)>'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:274:in `require'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:274:in `block in require'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:240:in `load_dependency'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:274:in `require'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/lib/redmine.rb:40:in `<top (required)>'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:274:in `require'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:274:in `block in require'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:240:in `load_dependency'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:274:in `require'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/config/initializers/30-redmine.rb:6:in `<top (required)>'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:268:in `load'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:268:in `block in load'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:240:in `load_dependency'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:268:in `load'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/railties-4.2.7.1/lib/rails/engine.rb:652:in `block in load_config_initializer'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/notifications.rb:166:in `instrument'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/railties-4.2.7.1/lib/rails/engine.rb:651:in `load_config_initializer'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/railties-4.2.7.1/lib/rails/engine.rb:616:in `block (2 levels) in <class:Engine>'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/railties-4.2.7.1/lib/rails/engine.rb:615:in `each'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/railties-4.2.7.1/lib/rails/engine.rb:615:in `block in <class:Engine>'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/railties-4.2.7.1/lib/rails/initializable.rb:30:in `instance_exec'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/railties-4.2.7.1/lib/rails/initializable.rb:30:in `run'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/railties-4.2.7.1/lib/rails/initializable.rb:55:in `block in run_initializers'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/railties-4.2.7.1/lib/rails/initializable.rb:44:in `each'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/railties-4.2.7.1/lib/rails/initializable.rb:44:in `tsort_each_child'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/railties-4.2.7.1/lib/rails/initializable.rb:54:in `run_initializers'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/railties-4.2.7.1/lib/rails/application.rb:352:in `initialize!'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/config/environment.rb:14:in `<top (required)>'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:274:in `require'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:274:in `block in require'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:240:in `load_dependency'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/activesupport-4.2.7.1/lib/active_support/dependencies.rb:274:in `require'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/railties-4.2.7.1/lib/rails/application.rb:328:in `require_environment!'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/railties-4.2.7.1/lib/rails/application.rb:457:in `block in run_tasks_blocks'
C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs/vendor/bundle/ruby/2.1.0/gems/rake-11.3.0/exe/rake:27:in `<top (required)>'
Tasks: TOP => db:migrate => environment
(See full trace by running task with --trace)

C:\Users\conchan-hp\softs\Bitnami\redmine-3.3.1-0\apps\redmine\htdocs>bundle exec rake db:migrate
DL is deprecated, please use Fiddle

C:\Users\conchan-hp\softs\Bitnami\redmine-3.3.1-0\apps\redmine\htdocs>bundle exec rake redmine:load_default_data
DL is deprecated, please use Fiddle

Select language: ar, az, bg, bs, ca, cs, da, de, el, en, en-GB, es, es-PA, et, eu, fa, fi, fr, gl, he, hr, hu, id, it, ja, ko, lt, lv, mk, mn, nl, no, pl, pt, pt-BR, ro, ru, sk, sl, sq, sr, sr-YU, sv, th, tr, uk, vi, zh, zh-TW [en] ja
====================================
Some configuration data is already loaded.

C:\Users\conchan-hp\softs\Bitnami\redmine-3.3.1-0\apps\redmine\htdocs>cd plugins

C:\Users\conchan-hp\softs\Bitnami\redmine-3.3.1-0\apps\redmine\htdocs\plugins>bundle exec rake redmine:plugins
(in C:/Users/conchan-hp/softs/Bitnami/redmine-3.3.1-0/apps/redmine/htdocs)
DL is deprecated, please use Fiddle
Migrating scrum (Scrum Redmine plugin)...
== 20161115112100 UpdateSprintsDateConstraints: migrating =====================
-- change_column(:sprints, :sprint_start_date, :date, {:null=>true})
   -> 0.0794s
-- change_column(:sprints, :sprint_end_date, :date, {:null=>true})
   -> 0.0695s
== 20161115112100 UpdateSprintsDateConstraints: migrated (0.1799s) ============


C:\Users\conchan-hp\softs\Bitnami\redmine-3.3.1-0\apps\redmine\htdocs\plugins>

コメントを残す

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)