회사 업무용으로 Bitnami Redmine을 설치하면서 히스토리를 정리하는 글.
* 확인 - 플러그인 몇가지 설치 성공, subversion 저장소 사용 포기
- 레드마인은 bitnami-redmine-3.3.2-0-windows-installer.exe을 설치한다.
- bitnami-redmine-3.3.2-0 에는 subversion 구성이 누락된 버전으로, subversion 설정시 오류가 발생함
메시지 : SCM 명령을 사용할 수 없습니다. 관리 페이지의 설정을 검사하십시오.
- bitnami-redmine-3.3.0-1-windows-installer.exe 설치를 테스트 해봤으나 플러그인 설치에 오류가 발생하여 실패
(실패한 원인은 내가 중간에 뭔가 잘못 진행했을지 모름)
Bitnami redmine 다운로드 : https://bitnami.com/stack/redmine
> 그새 며칠 지났다고 또 패치버전이 나왔네... (bitnami-redmine-3.3.2-2-windows-installer.exe - 2017.03.05 현재)
> 중간 부분을 찾아보면 agile 통합버전도 있지만 그건 플러그인 추가로 적용이 가능하니까 기본버전으로 설치.
난 플러그인을 14개나 추가할 거니깐.. ㅎㅎㅎ
redmine 설치
- 주의 : 설치과정에서 Admin 계정정보 입력 시 가능한 영문으로 작성할 것.
(이름을 한글로 설치했다가 서비스가 뜨지 않는 오류 발생)
레드마인 설치과정
- bitnami-redmine-3.3.0-0 을 설치하면 subversion 이 포함되어 있다.
)
- 요청에 따라 D드라이브에 설치했지만.. 속도가 좀 늦어진것 같다.
- 주의 : 이름을 한글로 하면 설치후에 오류가 발생할 것이다.
- 이건 설치 후에도 설정할 수 있다.
- 화면을 줄이면 반응형으로 동작한다.
설치 완료후 서비스 화면까지 확인했다.
플러그인을 설치하자.
redmineup 이라는 곳에서 제공하는 멋진 플러그인들이 있다.
light 버전으로 무료 플러그인을 제공하고, 상용버전으로 확장된 기능을 서비스 한다.
- 여기에서 제공하는 agile 기능이 위에서 언급한 redmine agile 통합버전으로 제공되는 플러그인이다.
개인적으로 redmineup 에서 제공하는 플러그인 중 아래 목록을 설치하기로 했다.
redmine_agile
redmine_checklists
redmine_cms
redmine_contacts
redmine_favorite_projects
redmine_people
redmine_questions
플러그인 설치 절차에 대해 상당히 많은 삽질이 소요됐다.
그러다가 redmineup에서 안내하는 설치 절차대로 진행하니 성공할수 있었다.
- Download plugins and unpack them into redmine/apps/redmine/htdocs/plugins folder.
- Open an explorer and go to the folder where redmine is now installed. Find the script use_redmine.bat and run it with double click. New window with command line will be opened.
- It that new window enter the next commands
cd apps\redmine\htdocs bundle install --without development test --no-deployment bundle exec rake redmine:plugins RAILS_ENV=production
설치한 플러그인
redmine_favorite_projects-2_0_3-light.zip
redmine_people-1_2_0-light.zip
redmine_questions-0_0_7-light.zip
alexmonteiro-Redmine-Monitoring-Controlling-v0.1.1-54-g3b2d055.zip
> redmine_monitoring_controlling
clipboard_image_paste-master.zip
> redmine_code_review > redmine_contactsredmine_issues_tree-master.zip
> redmine_issues_tree > redmine_spent_timeredmine_xlsx_format_issue_exporter-master.zip
> redmine_xlsx_format_issue_exporterredmine-progressive-projects-list-latest.zip
> progressive_projects_list플러그인 설치를 위해 작업한 스크립트는 아래와 같다.
- redmine 설치가 완료된 후 필요한 플러그인을 다운로드 받는다.
- use_redmine.bat를 실행하여 redmine 명령창을 연다
D:\88_Svr\Bitnami\redmine-3.3.2-0\use_redmine.bat
- ruby의 path를 등록한다.
set path=%path%;D:\88_Svr\Bitnami\redmine-3.3.2-0\ruby\bin
- htdocs 폴더로 이동
D:\88_Svr\Bitnami\redmine-3.3.2-0>cd apps\redmine\htdocs D:\88_Svr\Bitnami\redmine-3.3.2-0\apps\redmine\htdocs>
- 다운로드 받은 압축파일을 풀어서 (또는, git으로 받은 소스폴더) redmine plugins 폴더로 move 한다.
D:\88_Svr\Bitnami\redmine-3.3.2-0\apps\redmine\htdocs\plugins
- 이동한 플러그인을 설치한다.
bundle install --without development test --no-deployment
bundle exec rake redmine:plugins:migrate RAILS_ENV=productionD:\88_Svr\Bitnami\redmine-3.3.2-0\apps\redmine\htdocs\plugins>bundle install --no-deployment D:\88_Svr\Bitnami\redmine-3.3.2-0\apps\redmine\htdocs\plugins>bundle exec rake redmine:plugins:migrate RAILS_ENV=production > D:\88_Svr\Bitnami\redmine-3.3.2-0\ruby\bin\bundle install --without development test --no-deployment > D:\88_Svr\Bitnami\redmine-3.3.2-0\ruby\bin\bundle exec rake redmine:plugins:migrate RAILS_ENV=production
- Mysql 데이터 백업 및 복구
D:\88_Svr\Bitnami\redmine-3.3.2-0\mysql\bin\mysqldump.exe -u bitnami -p -P3336 bitnami_redmine > D:\77_Util\redmine\redmine-dpit\20170303_bitnami-redmine-3.3.2.0\2nd.backup-170303\backup_dpit_20170303.sql D:\88_Svr\Bitnami\redmine-3.3.2-0\mysql\bin\mysql.exe -u bitnami -p -P3336 bitnami_redmine < D:\77_Util\redmine\redmine-dpit\20170303_bitnami-redmine-3.3.2.0\2nd.backup-170303\backup_dpit_20170303.sql - 주의 : 공백 두개 입력시 오류 발생 (경로앞 주의)
[14종 플러그인 설치 이후 정상 실행 로그]
D:\88_Svr\Bitnami\redmine-3.3.2-0\apps\redmine\htdocs>bundle install --without development test --no-deployment Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem vcard (~> 0.2.8) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`. Your Gemfile lists the gem simplecov (~> 0.9.1) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Using rake 12.0.0 Using i18n 0.7.0 Using json 1.8.3 Using minitest 5.10.1 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 nokogiri 1.7.0.1 Using rails-deprecated_sanitizer 1.0.3 Using rails-dom-testing 1.0.8 Using loofah 2.0.3 Using rails-html-sanitizer 1.0.3 Using actionview 4.2.7.1 Using rack 1.6.5 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.4 Using activerecord 4.2.7.1 Using public_suffix 2.0.5 Using addressable 2.5.0 Using coderay 1.1.1 Using concurrent-ruby 1.0.4 Using css_parser 1.4.7 Using daemons 1.2.4 Using eventmachine 1.0.3 Using tilt 2.0.6 Using haml 4.0.7 Using sexp_processor 4.8.0 Using ruby_parser 3.8.4 Using html2haml 2.1.0 Using thor 0.19.4 Using railties 4.2.7.1 Using haml-rails 0.9.0 Using htmlentities 4.3.1 Using jquery-rails 3.1.4 Using liquid 2.6.3 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.1 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 redmine_crm 0.0.23 Using request_store 1.0.5 Using require_patch 0.1.0 Using rmagick 2.15.4 Using roadie 3.2.1 Using roadie-rails 1.1.1 Using ruby-ole 1.2.12 Using rubyzip 1.2.0 Using sass 3.4.23 Using spreadsheet 0.6.9 Using thin 1.6.1 Using tzinfo-data 1.2016.6 Using vcard 0.2.15 Using zip-zip 0.3 Using write_xlsx 0.83.0 Updating files in vendor/cache Bundle complete! 50 Gemfile dependencies, 76 gems now installed. Gems in the groups development and test were not installed. Use `bundle show [gemname]` to see where a bundled gem is installed. D:\88_Svr\Bitnami\redmine-3.3.2-0\apps\redmine\htdocs>bundle exec rake redmine:plugins:migrate RAILS_ENV=production Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem vcard (~> 0.2.8) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`. Your Gemfile lists the gem simplecov (~> 0.9.1) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. DL is deprecated, please use Fiddle Migrating clipboard_image_paste (Clipboard image paste)... Migrating progressive_projects_list (Progressive Projects List plugin)... Migrating redmine_agile (Redmine Agile plugin (Light version))... Migrating redmine_checklists (Redmine Checklists plugin (Light version))... Migrating redmine_cms (Redmine CMS plugin)... Migrating redmine_code_review (Redmine Code Review plugin)... Migrating redmine_contacts (Redmine CRM plugin (Light version))... Migrating redmine_favorite_projects (Redmine Favorite Projects plugin)... Migrating redmine_issues_tree (Redmine Issues Tree plugin)... Migrating redmine_monitoring_controlling (Redmine (Monitoring & Controlling | Monitoramento & Controle))... Migrating redmine_people (Redmine People plugin (Light version))... Migrating redmine_questions (Redmine Q&A plugin)... Migrating redmine_spent_time (Redmine Spent Time plugin)... Migrating redmine_xlsx_format_issue_exporter (Redmine XLSX format issue exporter)... D:\88_Svr\Bitnami\redmine-3.3.2-0\apps\redmine\htdocs>
오류 발생 사례
[플러그인 설치 중 발생하는 오류유형]
[오류1] - path 지정을 하지 않은경우 D:\88_Svr\Bitnami\redmine-3.3.2-0\apps\redmine\htdocs\plugins>bundle exec rake redmine:plugins NAME=redmine_graphs RAILS_ENV=production 'bundle'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다. [오류2] - bundle exec 을 앞에 추가해야하는 경우 D:\88_Svr\Bitnami\redmine-3.3.2-0>rake redmine:plugins:migrate RAILS_ENV=production rake aborted! No Rakefile found (looking for: rakefile, Rakefile, rakefile.rb, Rakefile.rb) (See full trace by running task with --trace) [오류3] - htdocs 폴더로 이동하지 않은 경우 D:\88_Svr\Bitnami\redmine-3.3.2-0>bundle exec rake redmine:plugins:migrate RAILS_ENV=production Could not locate Gemfile or .bundle/ directory [오류4] redmine-3.3.0-0 버전을 설치하면 subversion 저장소가 기본 설정되어 있으나, 플러그인 추가시 오류 발생 [오류5] - redmine_issues_from_excel-master.zip 플러그인 설치 오류 - rubyzip 버전 오류 D:\88_Svr\Bitnami\redmine-3.3.2-0\apps\redmine\htdocs>bundle install --without development test --no-deployment Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. The source :rubygems is deprecated because HTTP requests are insecure. Please change your source to 'https://rubygems.org' if possible, or 'http://rubygems.org' if not. Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`. Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem vcard (~> 0.2.8) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`. Your Gemfile lists the gem simplecov (~> 0.9.1) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Fetching gem metadata from http://rubygems.org/........... Fetching version metadata from http://rubygems.org/... Fetching dependency metadata from http://rubygems.org/.. Fetching gem metadata from http://rubygems.org/........... Fetching gem metadata from https://rubygems.org/........... Fetching version metadata from http://rubygems.org/... Fetching version metadata from https://rubygems.org/... Fetching dependency metadata from http://rubygems.org/.. Fetching dependency metadata from https://rubygems.org/.. You have requested: rubyzip < 1.0.0 The bundle currently has rubyzip locked at 1.2.0. Try running `bundle update rubyzip` D:\88_Svr\Bitnami\redmine-3.3.2-0\apps\redmine\htdocs>bundle update rubyzip Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. The source :rubygems is deprecated because HTTP requests are insecure. Please change your source to 'https://rubygems.org' if possible, or 'http://rubygems.org' if not. Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`. Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem vcard (~> 0.2.8) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`. Your Gemfile lists the gem simplecov (~> 0.9.1) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Fetching gem metadata from http://rubygems.org/........... Fetching version metadata from http://rubygems.org/... Fetching dependency metadata from http://rubygems.org/.. Fetching gem metadata from http://rubygems.org/........... Fetching gem metadata from https://rubygems.org/........... Fetching version metadata from http://rubygems.org/... Fetching version metadata from https://rubygems.org/... Fetching dependency metadata from http://rubygems.org/.. Fetching dependency metadata from https://rubygems.org/.. Resolving dependencies...... Bundler could not find compatible versions for gem "rubyzip": In Gemfile: write_xlsx (>= 0) ruby depends on rubyzip (>= 1.0.0) ruby write_xlsx (>= 0) ruby depends on rubyzip (>= 1.0.0) x86-mingw32 write_xlsx (>= 0) ruby depends on rubyzip (>= 1.0.0) ruby write_xlsx (>= 0) ruby depends on rubyzip (>= 1.0.0) x86-mingw32 selenium-webdriver (~> 2.53.4) x86-mingw32 depends on rubyzip (~> 1.0) ruby selenium-webdriver (~> 2.53.4) x86-mingw32 depends on rubyzip (~> 1.0) x86-mingw32 rubyzip (< 1.0.0) ruby rubyzip (< 1.0.0) x86-mingw32 D:\88_Svr\Bitnami\redmine-3.3.2-0\apps\redmine\htdocs>bundle exec rake redmine:plugins:migrate RAILS_ENV=production Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. The source :rubygems is deprecated because HTTP requests are insecure. Please change your source to 'https://rubygems.org' if possible, or 'http://rubygems.org' if not. Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`. Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem vcard (~> 0.2.8) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`. Your Gemfile lists the gem simplecov (~> 0.9.1) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Could not find gem 'roo (>= 0) x86-mingw32' in any of the gem sources listed in your Gemfile or installed on this machine. Run `bundle install` to install missing gems. D:\88_Svr\Bitnami\redmine-3.3.2-0\apps\redmine\htdocs>bundle install --without development test --no-deployment Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. The source :rubygems is deprecated because HTTP requests are insecure. Please change your source to 'https://rubygems.org' if possible, or 'http://rubygems.org' if not. Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`. Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem vcard (~> 0.2.8) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Your Gemfile lists the gem redmine_crm (>= 0) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Warning: this Gemfile contains multiple primary sources. Using `source` more than once without a block is a security risk, and may result in installing unexpected gems. To resolve this warning, use a block to indicate which gems should come from the secondary source. To upgrade this warning to an error, run `bundle config disable_multisource true`. Your Gemfile lists the gem simplecov (~> 0.9.1) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of just one of them later. Fetching gem metadata from http://rubygems.org/........... Fetching version metadata from http://rubygems.org/... Fetching dependency metadata from http://rubygems.org/.. Fetching gem metadata from http://rubygems.org/........... Fetching gem metadata from https://rubygems.org/........... Fetching version metadata from http://rubygems.org/... Fetching version metadata from https://rubygems.org/... Fetching dependency metadata from http://rubygems.org/.. Fetching dependency metadata from https://rubygems.org/.. You have requested: rubyzip < 1.0.0 The bundle currently has rubyzip locked at 1.2.0. Try running `bundle update rubyzip` D:\88_Svr\Bitnami\redmine-3.3.2-0\apps\redmine\htdocs>
추가.
버전 문제로 막혔던 subversion 오류를 해결했다.
https://www.visualsvn.com/server/download/
여기서 visualsvn server를 다운받아서 설치만 하면 된다.
* 주의 (포트는 가급적 80 포트를 피하자)
아.. 끝.
# 추가 플러그인
http://www.redmine.org/plugins/mega_calendar
- https://github.com/berti92/mega_calendar
> local 파일이 없어서 en.yml 을 기준으로 ko.yml 파일을 만들어준다.
(로컬 yml 파일 중 어떤것이 적용되는지 테스트결과가 명확하지 않아서
en.yml, ko.yml을 모두 한글로 작성하여 구동하니 한글로 잘 보임. - 발테스트)
> 버그 : 상단에 추가된 메뉴의 엑션이 sub_path값이 지정되지 않아서 오류가 난다.
apps\redmine\htdocs\plugins\mega_calendar\init.rb 에 지정되 sub_path 값을 수정해준다.
예 > 'sub_path' => '/', -> 'sub_path' => '/redmine/',
[오류6] - plugins 폴더에 복사 후 bundle install 을 하지 않은 경우
Could not find gem 'vpim (= 13.11.11) x86-mingw32' in any of the gem sources lis
ted in your Gemfile or installed on this machine.
Run `bundle install` to install missing gems.
참고
http://egloos.zum.com/ilovethese/v/4246681
'install > redmine' 카테고리의 다른 글
redmine 일감정보 일괄수정 쿼리 (0) | 2024.08.12 |
---|---|
redmine svn 연결 (연동은 다음기회.. ㅡ.ㅡ ) (0) | 2024.08.05 |
레드마인 설치 후 포트변경 (2) | 2023.08.31 |