2012-03-07 15:29:09,780 [main] DEBUG org.springframework.util.ClassUtils - Class [edu.emory.mathcs.backport.java.util.concurrent.ConcurrentHashMap] or one of its dependencies is not present: java.lang.ClassNotFoundException: edu.emory.mathcs.backport.java.util.concurrent.ConcurrentHashMap


위 부분은

http://backport-jsr166.sourceforge.net/ 에서

backport-util-concurrent-3.1.zip 파일을 받아

backport-util-concurrent.jar 파일을  아래 두곳에 반영후 나타나지 않도록 처리 완료.

/home2/vmail/hauth/webapps/auth/WEB-INF/lib/
/home2/vmail/hauth/common/lib/

Posted by 배터리
결국 개발자분깨 문의한 결과 fedora16 환경에서는 perl 모듈에 문제가 있어
dovecot 이 정상적으로 동작하지 않는다고 하여 , Redhat Enterprise 로 환경을 바꿔서 설치완료함.

참고로 Redhat 은 상용 OS로써 yum install 이 정상적으로 되지 않는 경우가 있으니 (온라인 등록을 안한 경우)

이럴때는 Redhat 의 CLON os 인 CentOS 를 사용하면 된다고 한다.

앞으로는 무조건 CentOS 다 --;

=============================
vi dovecot-info.log

dovecot: Mar 06 19:42:52 Info: imap-login: Disconnected (auth failed, 1 attempts): user=<admin>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, secured


vi dovecot.log

dovecot: Mar 06 19:38:14 Error: auth(default): HAUTH_INFO: Authentication Failure


hauth 의 auth.log
2012-03-07 15:38:41,623 [main] DEBUG com.hs.auth.MailboxController - Found action method [public void com.hs.auth.MailboxController.remove(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)]
2012-03-07 15:38:41,623 [main] DEBUG com.hs.auth.MailboxController - Found action method [public org.springframework.web.servlet.ModelAndView com.hs.auth.MailboxController.rename(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.lang.Exception]
2012-03-07 15:38:41,639 [main] DEBUG com.hs.auth.SieveController - Found action method [public org.springframework.web.servlet.ModelAndView com.hs.auth.SieveController.delete(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.lang.Exception]
2012-03-07 15:38:41,639 [main] DEBUG com.hs.auth.SieveController - Found action method [public org.springframework.web.servlet.ModelAndView com.hs.auth.SieveController.update(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.lang.Exception]
Posted by 배터리
dovecot 설치후 ./dovecot 실행이 안되는 경우

[root@luna init.d]# pwd
/etc/init.d
[root@luna init.d]# ./dovecot start
./dovecot: line 3: $'\r': command not found
./dovecot: line 5: $'\r': command not found
./dovecot: line 6: $'\r': command not found
./dovecot: line 7: syntax error near unexpected token `$'in\r''
'/dovecot: line 7: `case "$1" in
[root@luna init.d]#

이경우는 dovcot 파일 자체가 UNIX 모드로 저장이 안되어 있고 PC모드로 저장이 되어 있어서 발생하는 현상
Posted by 배터리