2012년 8월 2일 목요일

redmine 업그레이드 시 undefined local variable or method "config" for main:Object 에러

기존에 사용하던 Redmine을 2.0.X버전으로 업그레이드 중 rake db:migrate_plugins 하다가 undefined local variable or method "config" for main:Object 라는 에러를 만났을 때 아래와 같이 처리한다.

기존 버전에서 Plugin디렉토리로 사용하던 REDMINE_HOME/vendor/plugin가 REDMINE_HOME/plugin으로 바뀌어서 생긴 문제다.
REDMINE_HOME 즉 Redmine이 설치된 디렉토리에서 config/environment.rb파일을 열어 아래와 같이 수정하고, 다시 rake를 실행한다.



vendor_plugins_dir = File.join(Rails.root, "vendor", "plugins")
=> vendor_plugins_dir = File.join(Rails.root, "plugins")

> rake db:migrate_plugins RAILS_ENV=production


댓글 없음:

FIX :: ssh 접속이 느리고, /var/log/messages에 systemd-logind.service failed. 메시지가 남을 때

ssh 접속이 느릴 때가 있습니다. 보통은DNS가 제대로 설정되지 않았는데 /etc/ssh/sshd_config에 UseDNS가 yes로 되어 있을 때 발생합니다. 위와 같을 경우 /etc/ssh/sshd_config파일에서 아래와 같이 수정 후 ...