We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Ensure /etc/security/limits.conf has sufficients limits for number of opened files for a process. An example configuration is
/etc/security/limits.conf
root soft nofile 65535 root hard nofile 65535 * hard nofile 65535 * soft nofile 65535 * hard nproc 65535 * soft nofile 65535
in supervisor config file (e.g. /etc/contrail/supervisord_config.conf) in the supervisord section set minfds and minprocs. for e.g.
/etc/contrail/supervisord_config.conf
supervisord
... [supervisord] minfds=10240 minprocs=200 ...
in upstart config file (e.g. in /etc/init/zookeeper.conf) set number of files with nofile for e.g.
/etc/init/zookeeper.conf
nofile
limit nofile 8192 8192
service <name> restart