Re: Quick Q: proc: table is full ?

2021-01-19 Thread Why 42? The lists account.
On Tue, Jan 19, 2021 at 05:56:16PM -, Stuart Henderson wrote: > > What causes "proc: table is full", or better asked, what limit might I be > > hitting? > Perhaps kern.maxthread; check kern.nthreads. Hi Stuart, Aha. I think you have nailed it: > mjoelnir:/etc 19.01 21:13:02 # sysctl kern |

Re: Quick Q: proc: table is full ?

2021-01-19 Thread Stuart Henderson
On 2021-01-19, Why 42? The lists account. wrote: > > Hi All, > > What causes "proc: table is full", or better asked, what limit might I be > hitting? Perhaps kern.maxthread; check kern.nthreads.

Quick Q: proc: table is full ?

2021-01-19 Thread Why 42? The lists account.
Hi All, What causes "proc: table is full", or better asked, what limit might I be hitting? I wrote a quick loop to check how many processes are running i.e. > while true > do > DATE=`date +'%Y.%m.%d %H:%M:%S'` > echo -n "${DATE}: " > ps -AHk | wc -l > sleep 90 > done > 2021.01.19