#supervisorctl status
too many open files
Solution: 1. add the below at the end of /etc/security/limits.conf:
#open files(-n)
* soft nofile 65536
* hard nofile 65536
#max user processes(-u)
* soft nproc 65565
* hard nproc 65565
2.Restart the servce
too many open files
Solution: 1. add the below at the end of /etc/security/limits.conf:
#open files(-n)
* soft nofile 65536
* hard nofile 65536
#max user processes(-u)
* soft nproc 65565
* hard nproc 65565
2.Restart the servce
Done!