I suspect this is the root of your problem: ImportError: /var/www/eba/data/gs/env/lib/python2.7/lib-dynload/array.so: cannot open shared object file: Too many open files in system > > This means that you are hitting the limit of maximum open file descriptors (which includes tcp ports.) You should edit your /etc/sysctl.conf (system wide limit) and /etc/security/limits/conf (per user limits) to ensure the values are high enough for the number of concurrent connections you want to support. Proxying from a frontend nginx to a backend pserve will take 4 file descriptors per connection so the default limits can be exceeded with only a modest amount of traffic.
See: http://ithubinfo.blogspot.com/2013/07/how-to-increase-ulimit-open-file-and.html Laurence -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pylons-discuss. For more options, visit https://groups.google.com/d/optout.
