[web2py] Re: web2py rocket error on vps

2012-03-25 Thread Unyo
I finally figured out why this is happens. If you have a small VPN like i do (tinyvpn on ipxcore, 96MB ram), the thread size (8MB) will cause a very small amount of threads to be allowed. To fix this, enter the command below: ulimit -s 1024

[web2py] Re: web2py rocket error on vps

2011-12-22 Thread Cody M
I'm getting this error with the latest version of web2py as well. Which is confusing, since all the web2py's I've used before the most recent version has worked fine.

[web2py] Re: web2py rocket error on vps

2010-07-31 Thread mdipierro
which python version? On Jul 30, 11:41 am, Johan jo...@johan.ro wrote: Hello. I'm new here. I just bought a vps at intovps.com , I installed archlinux on it with everything that I'm used to work with, and tried launching web2py, but to no avail. $ python web2py.py --nogui --password=a

[web2py] Re: web2py rocket error on vps

2010-07-31 Thread Johan
I'm using python 2.6.5 On 31 iul., 11:00, mdipierro mdipie...@cs.depaul.edu wrote: which python version? On Jul 30, 11:41 am, Johan jo...@johan.ro wrote: Hello. I'm new here. I just bought a vps at intovps.com , I installed archlinux on it with everything that I'm used to work with,

[web2py] Re: web2py rocket error on vps

2010-07-31 Thread mdipierro
Can you try with the -N option? On Jul 31, 3:20 am, Johan jo...@johan.ro wrote: I'm using python 2.6.5 On 31 iul., 11:00, mdipierro mdipie...@cs.depaul.edu wrote: which python version? On Jul 30, 11:41 am, Johan jo...@johan.ro wrote: Hello. I'm new here. I just bought a vps at

[web2py] Re: web2py rocket error on vps

2010-07-31 Thread Johan
I tried with -N 1, 2, 3, etc., same error message. On a side note: I configured web2py to work with apache and mod_wsgi, it works , but I noticed an exception in the apache error_log [error] Exception KeyError: KeyError(-1211209984,) in module 'threading' from '/usr/lib/python2.6/threading.pyc'

[web2py] Re: web2py rocket error on vps

2010-07-31 Thread mdipierro
I have never seen this before but it seems something is wrong in the threading module in python 2.6.5. Has anybody else seen this with other Python versions? On Jul 31, 3:49 am, Johan jo...@johan.ro wrote: I tried with -N 1, 2, 3, etc., same error message. On a side note: I configured web2py

[web2py] Re: web2py rocket error on vps

2010-07-31 Thread Graham Dumpleton
Did you actually try Googling for it? Python 2.6.5 and 3.1.2 (???) made a change to C api behaviour. The message is harmless all the same. Upgrade to mod_wsgi 3.3 where the message has been suppressed. Go read ticket 197 on mod_wsgi site and read mod_wsgi release notes for version 3.3. Graham