Re: [exim] exim4 needs CAP_SYS_RESOURCE?

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Michael Haardt
Data:  
Para: exim-users
Asunto: Re: [exim] exim4 needs CAP_SYS_RESOURCE?
> > > > Does Apache start Exim with less than 1000 descriptors?

> core file size        (blocks, -c) 0
> data seg size         (kbytes, -d) unlimited
> file size             (blocks, -f) unlimited
> max locked memory     (kbytes, -l) unlimited
> max memory size       (kbytes, -m) unlimited
> open files                    (-n) 1024
> pipe size          (512 bytes, -p) 8
> stack size            (kbytes, -s) 8192
> cpu time             (seconds, -t) unlimited
> max user processes            (-u) 4087
> virtual memory        (kbytes, -v) unlimited

>
> So I gues this is not too restrictive...


Indeed. Try removing setting RLIMIT_NPROC and see if that causes the
problem. I noticed that deliver.c also uses setrlimit() unconditionally,
so I suggest to try that one as well, in case your Exim performs local
deliveries. Once you found which calls cause your problem, try using
getrlimit() to obtain their values, like Exim does with file descriptors,
and only call setrlimit() if needed.

Michael