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