Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 365 Bytes

system.md

File metadata and controls

20 lines (17 loc) · 365 Bytes

System settings

you may need to check the number of opened files before starting the application

enter

ulimit -n
1024

means 1024 files are opened

and if you enconter this error

OSError: [Errno 24] Too many open files

then raise the number by entering

ulimit -n 2048 

and start the application again