Dewey Du
2013-Sep-26 13:07 UTC
[Dovecot] service anvil and ssl-params not starts with dovecot started
Hi My dovecot started with the error below. What's the most possible reason for the error? ?2013-08-28 11:41:40 ?master: Info: Dovecot v2.2.5 starting up (core dumps disabled) ?2013-08-28 11:42:00 ?anvil: Fatal: Error reading configuration: Timeout reading config from /var/run/dovecot/config ?2013-08-28 11:42:00 ?master: Error: service(anvil): command startup failed, throttling for 2 secs ?2013-08-28 11:42:00 ?ssl-params: Fatal: Error reading configuration: Timeout reading config from /var/run/dovecot/config ?2013-08-28 11:42:00 ?master: Error: service(ssl-params): command startup failed, throttling for 2 secs Actually, After dovecot starts, I can telnet 110, but it takes 30seconds or so to get through the authentication. I suspect whether the error above cause the issue or not. Other information: dovecot version v2.2.5 use posfix, dovecot sasl, and mysql Attached my dovecot.conf: #auth_debug = yes auth_mechanisms = plain login #debug_log_path /var/log/dovecot.debug default_internal_user = postfix default_login_user postfix disable_plaintext_auth = no first_valid_uid = 1000 last_valid_uid 1000 mail_gid = 1000 mail_uid = 1000 log_path = /var/log/dovecot.log mail_location = maildir:/var/vmail/%d/%u mail_privileged_group = vmail protocols = imap pop3 listen = * base_dir = /var/run/dovecot/ service auth { unix_listener /var/spool/postfix/private/auth { group = postfix mode 0666 user = postfix } user = root } ssl = no userdb { args /etc/dovecot/dovecot-mysql.conf driver = sql } passdb { args /etc/dovecot/dovecot-mysql.conf driver = sql } protocol pop3 { pop3_uidl_format = %08Xu%08Xv }
Timo Sirainen
2013-Sep-27 15:20 UTC
[Dovecot] service anvil and ssl-params not starts with dovecot started
On 26.9.2013, at 15.07, Dewey Du <deweyto at gmail.com> wrote:> My dovecot started with the error below. What's the most possible reason > for the error? > > ?2013-08-28 11:41:40 ?master: Info: Dovecot v2.2.5 starting up (core dumps > disabled) > ?2013-08-28 11:42:00 ?anvil: Fatal: Error reading configuration: Timeout > reading config from /var/run/dovecot/configThe config process is stuck for some reason. Try to find out what it's doing. Immediately after you start dovecot, find the config process pid, and do: 1) strace -tt -p <pid> (for about a second or so) 2) gdb -p <pid> bt full and mail the results.