vinteumorg / infra-signet-server

Signet Server manager for bitcoin educational cohorts
1 stars 0 forks source link

Script will fail when creating too many wallets #3

Open edilmedeiros opened 4 weeks ago

edilmedeiros commented 4 weeks ago

Operating Systems limit the amount of file descriptors that running processes can maintain. MacOS is especially aggressive on this.

Use ulimit -a to check the current limits and ulimit -n 8192 (or higher) to increase the limit of file descriptors Bitcoin Core will be allowed to handle.

See https://github.com/bitcoin/bitcoin/issues/27732 for more info.