메모

메일서버 접속문제 해결

by 모아레 posted Sep 25, 2009
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 게시글 수정 내역 댓글로 가기 인쇄

문제 : 메일서버 로그인시 Error connecting to IMAP server 111 : connection refused 메시지 발생

ftp 서버 접속 불가

 

해결 : telnet localhost 143 이나 telnet localhost 21로 접속이 자꾸 안되어서 왜 안되나 싶었는데 143포트 문제는 해결

/etc/xinetd.d에 imap 파일이 존재하지 않아서였음.

구글링으로 imap파일을 만들어서 문제 해결.

 

# default: on
# description: imapd
service imap
{
        disable = no
        socket_type              = stream
        wait                    = no
        user                    = root
        server                 = /usr/sbin/imapd
        log_on_success          += DURATION USERID
        log_on_failure             += USERID
        nice                     = 10
}

 

service xinetd restart로 xinetd 재시작

 

http://www.directadmin.com/forum/showthread.php?s=&threadid=829

 

pop3의 경우 ipop3 파일을 만들고 편집하여 해결

 

edit /etc/proftpd/proftpd.conf
change:
DisplayFirstChdir .message
to:
#DisplayFirstChdir .message

 

이렇게 하여 ftp 문제 해결