Aumentare il numero di processi dovecot: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
|||
| Line 4: | Line 4: | ||
* Provare innanzitutto a impostare la modalità high performance: | * Provare innanzitutto a impostare la modalità high performance: | ||
sudoedit /etc/dovecot/conf.d/10- | sudoedit /etc/dovecot/conf.d/10-master.conf | ||
service_count = 0 | service_count = 0 | ||
systemctl restart dovecot | |||
==Riferimenti== | ==Riferimenti== | ||
* [http://dovecot.org/pipermail/dovecot/2012-January/080624.html [Dovecot] imap-login process_limit reached] | * [http://dovecot.org/pipermail/dovecot/2012-January/080624.html [Dovecot] imap-login process_limit reached] | ||
*[ | * [https://doc.dovecot.org/2.3/configuration_manual/service_configuration/#service-count Service configuration — Dovecot documentation] | ||
=Dovecot v1= | =Dovecot v1= | ||
Latest revision as of 13:48, 11 September 2024
Dovecot v2
In caso di errori:
dovecot: master: Warning: service(imap-login): process_limit (100) reached, client connections are being dropped
- Provare innanzitutto a impostare la modalità high performance:
sudoedit /etc/dovecot/conf.d/10-master.conf
service_count = 0
systemctl restart dovecot
Riferimenti
- [Dovecot imap-login process_limit reached]
- Service configuration — Dovecot documentation
Dovecot v1
- Se si ottengono spesso delle disconnssioni dei client imap, e l'errore nei log /var/log/mail.log
All login processes are in use. You may need to increase login_max_processes_count
- Aumentare il numero di processi in ascolto
sudoedit /etc/dovecot/dovecot.conf
login_max_processes_count = 400
- Riavviare dovecot
sudo invoke-rc.d dovecot restart
- Se si ottiene il warning
Starting IMAP/POP3 mail server: dovecot Warning: fd limit 1024 is lower than what Dovecot can use under full load (more than 1112). Either grow the limit or change login_max_processes_count and max_mail_processes settings
- Occorre aumentare il numero massimo di files apribili.
- Il modo migliore è
sudoedit /etc/default/dovecot
... ulimit -n 2048
sudo invoke-rc.d dovecot restart