[web2py] Re: Weird Error Message From Web2py - OSError: [Errno 24] Too many open files ???????

2015-03-08 Thread 'Michael Gheith' via web2py-users
You could use the linux command lsof to see a list of open files.  You can 
do something like the following to see what these open files are (if you 
care?):

import subprocess

data = subprocess.check_output([lsof])

lines = data.split(\n)

for line in lines: print line


On Sunday, February 21, 2010 at 1:28:55 PM UTC-6, Pascal wrote:

 Hello mate,
 I'm using the latest version of Web2py and Mac OS and since few web2py
 release I have been having this problem and I don't know what is the
 cause of this...
 When it happens I can't access my application anymore I got a this
 message from the browser: Internal error
 Ticket issued: unrecoverable 
 So basicallly I just have to reboot the server to get my appl working
 again...

 Here is the exceptions I got from Web2py:

 ###
 Exception in thread Thread-106:
 Traceback (most recent call last):
   File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
 python2.5/threading.py, line 486, in __bootstrap_inner
 self.run()
   File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
 229, in run
 shell=self.shell)
   File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
 python2.5/subprocess.py, line 587, in __init__
 errread, errwrite) = self._get_handles(stdin, stdout, stderr)
   File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
 python2.5/subprocess.py, line 953, in _get_handles
 errread, errwrite = os.pipe()
 OSError: [Errno 24] Too many open files
 
 Exception in thread Thread-107:
 Traceback (most recent call last):
   File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
 python2.5/threading.py, line 486, in __bootstrap_inner
 self.run()
   File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
 229, in run
 shell=self.shell)
   File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
 python2.5/subprocess.py, line 587, in __init__
 errread, errwrite) = self._get_handles(stdin, stdout, stderr)
   File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
 python2.5/subprocess.py, line 933, in _get_handles
 p2cread, p2cwrite = os.pipe()
 OSError: [Errno 24] Too many open files
 #
 Exception in thread Thread-1:
 Traceback (most recent call last):
   File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
 python2.5/threading.py, line 486, in __bootstrap_inner
 self.run()
   File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
 55, in run
 s.run()
   File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
 python2.5/sched.py, line 114, in run
   File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
 47, in launch
 crondance(self.path, 'hard', startup = self.startup)
   File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
 261, in crondance
 f = open(crontab, 'rt')
 IOError: [Errno 24] Too many open files:
 ##

 Please any idea ?



-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
web2py-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: Weird Error Message From Web2py - OSError: [Errno 24] Too many open files ???????

2015-03-04 Thread Massimo Di Pierro
yes.

On Wednesday, 4 March 2015 07:30:09 UTC-6, Paolo Valleri wrote:

 Massimo, I suggest adding a message when web2py start using internal cron 
 in which is stated that cron is no longer supported.
 Do you agree ?

 On Tuesday, March 3, 2015 at 5:51:50 PM UTC+1, Massimo Di Pierro wrote:

 BTW. We do not support cron anymore since we have the scheduler. Cron 
 causes other problems with locking of resources and memory build-up. It is 
 not necessarily a bug, it is designed to guarantee start of execution not 
 cap resource utilization.

 On Monday, 2 March 2015 11:49:20 UTC-6, AngeloC wrote:

 Hi Yannick, 

 Probably it's a regression with hardcron, if you search the list you 
 can find several thread about that problem. 

 I had it several times in the past and simply I gave up using hard 
 cron in web2py. I ususally use the plain and simple unix cron to 
 schedule activities! 

 Sincerely, Angelo 

 2015-03-02 18:39 GMT+01:00 Massimo Di Pierro massimo@gmail.com: 
  This usually happens when you open but you do not close connections. 
 It can 
  happen if you put open connections in cache-ram. Do you open many 
 files? 
  
  
  On Monday, 2 March 2015 00:24:57 UTC-6, Yusuf Kaka wrote: 
  
  I've got the same error, was there any resolution? 
  
  On Monday, February 22, 2010 at 2:28:17 AM UTC+2, Pascal wrote: 
  
  Thanks for the note... I'm usually running Web2py through Wing IDE 
  since it is easy for debugging... 
  Please let me know if you have any questions regarding this issue 
  
  Yannick P. 
  
  On Feb 21, 4:02 pm, Massimo Di Pierro mdipie...@cs.depaul.edu 
 wrote: 
   This is interesting I will take a look asap. 
   
   Meanwhile, if you are not using cron, run web2py with -N. 
   
   Massimo 
   
   On Feb 21, 2010, at 1:28 PM, Yannick wrote: 
   
Hello mate, 
I'm using the latest version of Web2py and Mac OS and since few 
web2py 
release I have been having this problem and I don't know what is 
 the 
cause of this... 
When it happens I can't access my application anymore I got a 
 this 
message from the browser: Internal error 
Ticket issued: unrecoverable  
So basicallly I just have to reboot the server to get my appl 
 working 
again... 
   
Here is the exceptions I got from Web2py: 
   
### 
Exception in thread Thread-106: 
Traceback (most recent call last): 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/threading.py, line 486, in __bootstrap_inner 
   self.run() 
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, 
 line 
229, in run 
   shell=self.shell) 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/subprocess.py, line 587, in __init__ 
   errread, errwrite) = self._get_handles(stdin, stdout, stderr) 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/subprocess.py, line 953, in _get_handles 
   errread, errwrite = os.pipe() 
OSError: [Errno 24] Too many open files 
 
Exception in thread Thread-107: 
Traceback (most recent call last): 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/threading.py, line 486, in __bootstrap_inner 
   self.run() 
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, 
 line 
229, in run 
   shell=self.shell) 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/subprocess.py, line 587, in __init__ 
   errread, errwrite) = self._get_handles(stdin, stdout, stderr) 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/subprocess.py, line 933, in _get_handles 
   p2cread, p2cwrite = os.pipe() 
OSError: [Errno 24] Too many open files 
# 
Exception in thread Thread-1: 
Traceback (most recent call last): 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/threading.py, line 486, in __bootstrap_inner 
   self.run() 
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, 
 line 
55, in run 
   s.run() 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/sched.py, line 114, in run 
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, 
 line 
47, in launch 
   crondance(self.path, 'hard', startup = self.startup) 
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, 
 line 
261, in crondance 
   f = open(crontab, 'rt') 
IOError: [Errno 24] Too many open files: 
## 
   
Please any idea ? 
  
  -- 
  Resources: 
  - http://web2py.com 
  - http://web2py.com/book (Documentation) 
  - http://github.com/web2py/web2py (Source code) 
  - https://code.google.com/p/web2py/issues/list (Report Issues) 
  --- 
 

Re: [web2py] Re: Weird Error Message From Web2py - OSError: [Errno 24] Too many open files ???????

2015-03-04 Thread Paolo Valleri
Massimo, I suggest adding a message when web2py start using internal cron 
in which is stated that cron is no longer supported.
Do you agree ?

On Tuesday, March 3, 2015 at 5:51:50 PM UTC+1, Massimo Di Pierro wrote:

 BTW. We do not support cron anymore since we have the scheduler. Cron 
 causes other problems with locking of resources and memory build-up. It is 
 not necessarily a bug, it is designed to guarantee start of execution not 
 cap resource utilization.

 On Monday, 2 March 2015 11:49:20 UTC-6, AngeloC wrote:

 Hi Yannick, 

 Probably it's a regression with hardcron, if you search the list you 
 can find several thread about that problem. 

 I had it several times in the past and simply I gave up using hard 
 cron in web2py. I ususally use the plain and simple unix cron to 
 schedule activities! 

 Sincerely, Angelo 

 2015-03-02 18:39 GMT+01:00 Massimo Di Pierro massimo@gmail.com 
 javascript:: 
  This usually happens when you open but you do not close connections. It 
 can 
  happen if you put open connections in cache-ram. Do you open many 
 files? 
  
  
  On Monday, 2 March 2015 00:24:57 UTC-6, Yusuf Kaka wrote: 
  
  I've got the same error, was there any resolution? 
  
  On Monday, February 22, 2010 at 2:28:17 AM UTC+2, Pascal wrote: 
  
  Thanks for the note... I'm usually running Web2py through Wing IDE 
  since it is easy for debugging... 
  Please let me know if you have any questions regarding this issue 
  
  Yannick P. 
  
  On Feb 21, 4:02 pm, Massimo Di Pierro mdipie...@cs.depaul.edu 
 wrote: 
   This is interesting I will take a look asap. 
   
   Meanwhile, if you are not using cron, run web2py with -N. 
   
   Massimo 
   
   On Feb 21, 2010, at 1:28 PM, Yannick wrote: 
   
Hello mate, 
I'm using the latest version of Web2py and Mac OS and since few 
web2py 
release I have been having this problem and I don't know what is 
 the 
cause of this... 
When it happens I can't access my application anymore I got a 
 this 
message from the browser: Internal error 
Ticket issued: unrecoverable  
So basicallly I just have to reboot the server to get my appl 
 working 
again... 
   
Here is the exceptions I got from Web2py: 
   
### 
Exception in thread Thread-106: 
Traceback (most recent call last): 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/threading.py, line 486, in __bootstrap_inner 
   self.run() 
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, 
 line 
229, in run 
   shell=self.shell) 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/subprocess.py, line 587, in __init__ 
   errread, errwrite) = self._get_handles(stdin, stdout, stderr) 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/subprocess.py, line 953, in _get_handles 
   errread, errwrite = os.pipe() 
OSError: [Errno 24] Too many open files 
 
Exception in thread Thread-107: 
Traceback (most recent call last): 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/threading.py, line 486, in __bootstrap_inner 
   self.run() 
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, 
 line 
229, in run 
   shell=self.shell) 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/subprocess.py, line 587, in __init__ 
   errread, errwrite) = self._get_handles(stdin, stdout, stderr) 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/subprocess.py, line 933, in _get_handles 
   p2cread, p2cwrite = os.pipe() 
OSError: [Errno 24] Too many open files 
# 
Exception in thread Thread-1: 
Traceback (most recent call last): 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/threading.py, line 486, in __bootstrap_inner 
   self.run() 
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, 
 line 
55, in run 
   s.run() 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/sched.py, line 114, in run 
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, 
 line 
47, in launch 
   crondance(self.path, 'hard', startup = self.startup) 
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, 
 line 
261, in crondance 
   f = open(crontab, 'rt') 
IOError: [Errno 24] Too many open files: 
## 
   
Please any idea ? 
  
  -- 
  Resources: 
  - http://web2py.com 
  - http://web2py.com/book (Documentation) 
  - http://github.com/web2py/web2py (Source code) 
  - https://code.google.com/p/web2py/issues/list (Report Issues) 
  --- 
  You received this message because you are subscribed to the 

Re: [web2py] Re: Weird Error Message From Web2py - OSError: [Errno 24] Too many open files ???????

2015-03-03 Thread Massimo Di Pierro
BTW. We do not support cron anymore since we have the scheduler. Cron 
causes other problems with locking of resources and memory build-up. It is 
not necessarily a bug, it is designed to guarantee start of execution not 
cap resource utilization.

On Monday, 2 March 2015 11:49:20 UTC-6, AngeloC wrote:

 Hi Yannick, 

 Probably it's a regression with hardcron, if you search the list you 
 can find several thread about that problem. 

 I had it several times in the past and simply I gave up using hard 
 cron in web2py. I ususally use the plain and simple unix cron to 
 schedule activities! 

 Sincerely, Angelo 

 2015-03-02 18:39 GMT+01:00 Massimo Di Pierro massimo.dipie...@gmail.com: 

  This usually happens when you open but you do not close connections. It 
 can 
  happen if you put open connections in cache-ram. Do you open many files? 
  
  
  On Monday, 2 March 2015 00:24:57 UTC-6, Yusuf Kaka wrote: 
  
  I've got the same error, was there any resolution? 
  
  On Monday, February 22, 2010 at 2:28:17 AM UTC+2, Pascal wrote: 
  
  Thanks for the note... I'm usually running Web2py through Wing IDE 
  since it is easy for debugging... 
  Please let me know if you have any questions regarding this issue 
  
  Yannick P. 
  
  On Feb 21, 4:02 pm, Massimo Di Pierro mdipie...@cs.depaul.edu 
 wrote: 
   This is interesting I will take a look asap. 
   
   Meanwhile, if you are not using cron, run web2py with -N. 
   
   Massimo 
   
   On Feb 21, 2010, at 1:28 PM, Yannick wrote: 
   
Hello mate, 
I'm using the latest version of Web2py and Mac OS and since few 
web2py 
release I have been having this problem and I don't know what is 
 the 
cause of this... 
When it happens I can't access my application anymore I got a this 
message from the browser: Internal error 
Ticket issued: unrecoverable  
So basicallly I just have to reboot the server to get my appl 
 working 
again... 
   
Here is the exceptions I got from Web2py: 
   
### 
Exception in thread Thread-106: 
Traceback (most recent call last): 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/threading.py, line 486, in __bootstrap_inner 
   self.run() 
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, 
 line 
229, in run 
   shell=self.shell) 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/subprocess.py, line 587, in __init__ 
   errread, errwrite) = self._get_handles(stdin, stdout, stderr) 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/subprocess.py, line 953, in _get_handles 
   errread, errwrite = os.pipe() 
OSError: [Errno 24] Too many open files 
 
Exception in thread Thread-107: 
Traceback (most recent call last): 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/threading.py, line 486, in __bootstrap_inner 
   self.run() 
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, 
 line 
229, in run 
   shell=self.shell) 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/subprocess.py, line 587, in __init__ 
   errread, errwrite) = self._get_handles(stdin, stdout, stderr) 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/subprocess.py, line 933, in _get_handles 
   p2cread, p2cwrite = os.pipe() 
OSError: [Errno 24] Too many open files 
# 
Exception in thread Thread-1: 
Traceback (most recent call last): 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/threading.py, line 486, in __bootstrap_inner 
   self.run() 
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, 
 line 
55, in run 
   s.run() 
 File 
 /System/Library/Frameworks/Python.framework/Versions/2.5/lib/ 
python2.5/sched.py, line 114, in run 
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, 
 line 
47, in launch 
   crondance(self.path, 'hard', startup = self.startup) 
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, 
 line 
261, in crondance 
   f = open(crontab, 'rt') 
IOError: [Errno 24] Too many open files: 
## 
   
Please any idea ? 
  
  -- 
  Resources: 
  - http://web2py.com 
  - http://web2py.com/book (Documentation) 
  - http://github.com/web2py/web2py (Source code) 
  - https://code.google.com/p/web2py/issues/list (Report Issues) 
  --- 
  You received this message because you are subscribed to the Google 
 Groups 
  web2py-users group. 
  To unsubscribe from this group and stop receiving emails from it, send 
 an 
  email to web2py+unsubscr...@googlegroups.com. 
  For more options, visit https://groups.google.com/d/optout. 




[web2py] Re: Weird Error Message From Web2py - OSError: [Errno 24] Too many open files ???????

2015-03-03 Thread Joe Barnhart
By strange coincidence, I got the same error tonight, using web2py 
v.2.9.12-stable on the latest version of pypy (python written in python). 
 In my case, I'm pretty sure it is a file handle leak caused by my code 
which handles scheduled insertion of files into the database.  If pypy were 
dramatically faster at something, I'd pursue it, but my initial tests did 
not show a dramatic improvement so I'll probably just deploy on regular 
Python.

Just thought I'd mention it in case you're using some weird version of 
Python on your mac.  Speaking of which, is there some reason you're using 
Python 2.5 instead of a version, say, something like five years newer?

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
web2py-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Weird Error Message From Web2py - OSError: [Errno 24] Too many open files ???????

2015-03-02 Thread Massimo Di Pierro
This usually happens when you open but you do not close connections. It can 
happen if you put open connections in cache-ram. Do you open many files?

On Monday, 2 March 2015 00:24:57 UTC-6, Yusuf Kaka wrote:

 I've got the same error, was there any resolution?

 On Monday, February 22, 2010 at 2:28:17 AM UTC+2, Pascal wrote:

 Thanks for the note... I'm usually running Web2py through Wing IDE
 since it is easy for debugging...
 Please let me know if you have any questions regarding this issue

 Yannick P.

 On Feb 21, 4:02 pm, Massimo Di Pierro mdipie...@cs.depaul.edu wrote:
  This is interesting I will take a look asap.
 
  Meanwhile, if you are not using cron, run web2py with -N.
 
  Massimo
 
  On Feb 21, 2010, at 1:28 PM, Yannick wrote:
 
   Hello mate,
   I'm using the latest version of Web2py and Mac OS and since few web2py
   release I have been having this problem and I don't know what is the
   cause of this...
   When it happens I can't access my application anymore I got a this
   message from the browser: Internal error
   Ticket issued: unrecoverable 
   So basicallly I just have to reboot the server to get my appl working
   again...
 
   Here is the exceptions I got from Web2py:
 
   ###
   Exception in thread Thread-106:
   Traceback (most recent call last):
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/threading.py, line 486, in __bootstrap_inner
  self.run()
File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
   229, in run
  shell=self.shell)
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/subprocess.py, line 587, in __init__
  errread, errwrite) = self._get_handles(stdin, stdout, stderr)
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/subprocess.py, line 953, in _get_handles
  errread, errwrite = os.pipe()
   OSError: [Errno 24] Too many open files
   
   Exception in thread Thread-107:
   Traceback (most recent call last):
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/threading.py, line 486, in __bootstrap_inner
  self.run()
File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
   229, in run
  shell=self.shell)
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/subprocess.py, line 587, in __init__
  errread, errwrite) = self._get_handles(stdin, stdout, stderr)
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/subprocess.py, line 933, in _get_handles
  p2cread, p2cwrite = os.pipe()
   OSError: [Errno 24] Too many open files
   #
   Exception in thread Thread-1:
   Traceback (most recent call last):
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/threading.py, line 486, in __bootstrap_inner
  self.run()
File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
   55, in run
  s.run()
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/sched.py, line 114, in run
File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
   47, in launch
  crondance(self.path, 'hard', startup = self.startup)
File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
   261, in crondance
  f = open(crontab, 'rt')
   IOError: [Errno 24] Too many open files:
   ##
 
   Please any idea ?



-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
web2py-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: Weird Error Message From Web2py - OSError: [Errno 24] Too many open files ???????

2015-03-02 Thread Angelo Compagnucci
Hi Yannick,

Probably it's a regression with hardcron, if you search the list you
can find several thread about that problem.

I had it several times in the past and simply I gave up using hard
cron in web2py. I ususally use the plain and simple unix cron to
schedule activities!

Sincerely, Angelo

2015-03-02 18:39 GMT+01:00 Massimo Di Pierro massimo.dipie...@gmail.com:
 This usually happens when you open but you do not close connections. It can
 happen if you put open connections in cache-ram. Do you open many files?


 On Monday, 2 March 2015 00:24:57 UTC-6, Yusuf Kaka wrote:

 I've got the same error, was there any resolution?

 On Monday, February 22, 2010 at 2:28:17 AM UTC+2, Pascal wrote:

 Thanks for the note... I'm usually running Web2py through Wing IDE
 since it is easy for debugging...
 Please let me know if you have any questions regarding this issue

 Yannick P.

 On Feb 21, 4:02 pm, Massimo Di Pierro mdipie...@cs.depaul.edu wrote:
  This is interesting I will take a look asap.
 
  Meanwhile, if you are not using cron, run web2py with -N.
 
  Massimo
 
  On Feb 21, 2010, at 1:28 PM, Yannick wrote:
 
   Hello mate,
   I'm using the latest version of Web2py and Mac OS and since few
   web2py
   release I have been having this problem and I don't know what is the
   cause of this...
   When it happens I can't access my application anymore I got a this
   message from the browser: Internal error
   Ticket issued: unrecoverable 
   So basicallly I just have to reboot the server to get my appl working
   again...
 
   Here is the exceptions I got from Web2py:
 
   ###
   Exception in thread Thread-106:
   Traceback (most recent call last):
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/threading.py, line 486, in __bootstrap_inner
  self.run()
File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
   229, in run
  shell=self.shell)
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/subprocess.py, line 587, in __init__
  errread, errwrite) = self._get_handles(stdin, stdout, stderr)
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/subprocess.py, line 953, in _get_handles
  errread, errwrite = os.pipe()
   OSError: [Errno 24] Too many open files
   
   Exception in thread Thread-107:
   Traceback (most recent call last):
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/threading.py, line 486, in __bootstrap_inner
  self.run()
File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
   229, in run
  shell=self.shell)
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/subprocess.py, line 587, in __init__
  errread, errwrite) = self._get_handles(stdin, stdout, stderr)
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/subprocess.py, line 933, in _get_handles
  p2cread, p2cwrite = os.pipe()
   OSError: [Errno 24] Too many open files
   #
   Exception in thread Thread-1:
   Traceback (most recent call last):
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/threading.py, line 486, in __bootstrap_inner
  self.run()
File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
   55, in run
  s.run()
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/sched.py, line 114, in run
File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
   47, in launch
  crondance(self.path, 'hard', startup = self.startup)
File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
   261, in crondance
  f = open(crontab, 'rt')
   IOError: [Errno 24] Too many open files:
   ##
 
   Please any idea ?

 --
 Resources:
 - http://web2py.com
 - http://web2py.com/book (Documentation)
 - http://github.com/web2py/web2py (Source code)
 - https://code.google.com/p/web2py/issues/list (Report Issues)
 ---
 You received this message because you are subscribed to the Google Groups
 web2py-users group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to web2py+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.



-- 
Profile: http://it.linkedin.com/in/compagnucciangelo

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
web2py-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Weird Error Message From Web2py - OSError: [Errno 24] Too many open files ???????

2015-03-01 Thread Yusuf Kaka
I've got the same error, was there any resolution?

On Monday, February 22, 2010 at 2:28:17 AM UTC+2, Pascal wrote:

 Thanks for the note... I'm usually running Web2py through Wing IDE
 since it is easy for debugging...
 Please let me know if you have any questions regarding this issue

 Yannick P.

 On Feb 21, 4:02 pm, Massimo Di Pierro mdipie...@cs.depaul.edu wrote:
  This is interesting I will take a look asap.
 
  Meanwhile, if you are not using cron, run web2py with -N.
 
  Massimo
 
  On Feb 21, 2010, at 1:28 PM, Yannick wrote:
 
   Hello mate,
   I'm using the latest version of Web2py and Mac OS and since few web2py
   release I have been having this problem and I don't know what is the
   cause of this...
   When it happens I can't access my application anymore I got a this
   message from the browser: Internal error
   Ticket issued: unrecoverable 
   So basicallly I just have to reboot the server to get my appl working
   again...
 
   Here is the exceptions I got from Web2py:
 
   ###
   Exception in thread Thread-106:
   Traceback (most recent call last):
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/threading.py, line 486, in __bootstrap_inner
  self.run()
File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
   229, in run
  shell=self.shell)
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/subprocess.py, line 587, in __init__
  errread, errwrite) = self._get_handles(stdin, stdout, stderr)
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/subprocess.py, line 953, in _get_handles
  errread, errwrite = os.pipe()
   OSError: [Errno 24] Too many open files
   
   Exception in thread Thread-107:
   Traceback (most recent call last):
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/threading.py, line 486, in __bootstrap_inner
  self.run()
File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
   229, in run
  shell=self.shell)
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/subprocess.py, line 587, in __init__
  errread, errwrite) = self._get_handles(stdin, stdout, stderr)
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/subprocess.py, line 933, in _get_handles
  p2cread, p2cwrite = os.pipe()
   OSError: [Errno 24] Too many open files
   #
   Exception in thread Thread-1:
   Traceback (most recent call last):
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/threading.py, line 486, in __bootstrap_inner
  self.run()
File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
   55, in run
  s.run()
File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
   python2.5/sched.py, line 114, in run
File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
   47, in launch
  crondance(self.path, 'hard', startup = self.startup)
File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
   261, in crondance
  f = open(crontab, 'rt')
   IOError: [Errno 24] Too many open files:
   ##
 
   Please any idea ?



-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
web2py-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Weird Error Message From Web2py - OSError: [Errno 24] Too many open files ???????

2010-02-21 Thread Massimo Di Pierro

This is interesting I will take a look asap.

Meanwhile, if you are not using cron, run web2py with -N.

Massimo



On Feb 21, 2010, at 1:28 PM, Yannick wrote:


Hello mate,
I'm using the latest version of Web2py and Mac OS and since few web2py
release I have been having this problem and I don't know what is the
cause of this...
When it happens I can't access my application anymore I got a this
message from the browser: Internal error
Ticket issued: unrecoverable 
So basicallly I just have to reboot the server to get my appl working
again...

Here is the exceptions I got from Web2py:

###
Exception in thread Thread-106:
Traceback (most recent call last):
 File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/threading.py, line 486, in __bootstrap_inner
   self.run()
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
229, in run
   shell=self.shell)
 File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/subprocess.py, line 587, in __init__
   errread, errwrite) = self._get_handles(stdin, stdout, stderr)
 File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/subprocess.py, line 953, in _get_handles
   errread, errwrite = os.pipe()
OSError: [Errno 24] Too many open files

Exception in thread Thread-107:
Traceback (most recent call last):
 File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/threading.py, line 486, in __bootstrap_inner
   self.run()
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
229, in run
   shell=self.shell)
 File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/subprocess.py, line 587, in __init__
   errread, errwrite) = self._get_handles(stdin, stdout, stderr)
 File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/subprocess.py, line 933, in _get_handles
   p2cread, p2cwrite = os.pipe()
OSError: [Errno 24] Too many open files
#
Exception in thread Thread-1:
Traceback (most recent call last):
 File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/threading.py, line 486, in __bootstrap_inner
   self.run()
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
55, in run
   s.run()
 File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
python2.5/sched.py, line 114, in run
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
47, in launch
   crondance(self.path, 'hard', startup = self.startup)
 File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
261, in crondance
   f = open(crontab, 'rt')
IOError: [Errno 24] Too many open files:
##

Please any idea ?


--
You received this message because you are subscribed to the Google Groups 
web2py-users group.
To post to this group, send email to web...@googlegroups.com.
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en.



[web2py] Re: Weird Error Message From Web2py - OSError: [Errno 24] Too many open files ???????

2010-02-21 Thread Yannick
Thanks for the note... I'm usually running Web2py through Wing IDE
since it is easy for debugging...
Please let me know if you have any questions regarding this issue

Yannick P.

On Feb 21, 4:02 pm, Massimo Di Pierro mdipie...@cs.depaul.edu wrote:
 This is interesting I will take a look asap.

 Meanwhile, if you are not using cron, run web2py with -N.

 Massimo

 On Feb 21, 2010, at 1:28 PM, Yannick wrote:

  Hello mate,
  I'm using the latest version of Web2py and Mac OS and since few web2py
  release I have been having this problem and I don't know what is the
  cause of this...
  When it happens I can't access my application anymore I got a this
  message from the browser: Internal error
  Ticket issued: unrecoverable 
  So basicallly I just have to reboot the server to get my appl working
  again...

  Here is the exceptions I got from Web2py:

  ###
  Exception in thread Thread-106:
  Traceback (most recent call last):
   File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
  python2.5/threading.py, line 486, in __bootstrap_inner
     self.run()
   File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
  229, in run
     shell=self.shell)
   File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
  python2.5/subprocess.py, line 587, in __init__
     errread, errwrite) = self._get_handles(stdin, stdout, stderr)
   File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
  python2.5/subprocess.py, line 953, in _get_handles
     errread, errwrite = os.pipe()
  OSError: [Errno 24] Too many open files
  
  Exception in thread Thread-107:
  Traceback (most recent call last):
   File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
  python2.5/threading.py, line 486, in __bootstrap_inner
     self.run()
   File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
  229, in run
     shell=self.shell)
   File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
  python2.5/subprocess.py, line 587, in __init__
     errread, errwrite) = self._get_handles(stdin, stdout, stderr)
   File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
  python2.5/subprocess.py, line 933, in _get_handles
     p2cread, p2cwrite = os.pipe()
  OSError: [Errno 24] Too many open files
  #
  Exception in thread Thread-1:
  Traceback (most recent call last):
   File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
  python2.5/threading.py, line 486, in __bootstrap_inner
     self.run()
   File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
  55, in run
     s.run()
   File /System/Library/Frameworks/Python.framework/Versions/2.5/lib/
  python2.5/sched.py, line 114, in run
   File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
  47, in launch
     crondance(self.path, 'hard', startup = self.startup)
   File /Users/OnemeWs/App Server/web2py/gluon/contrib/cron.py, line
  261, in crondance
     f = open(crontab, 'rt')
  IOError: [Errno 24] Too many open files:
  ##

  Please any idea ?

-- 
You received this message because you are subscribed to the Google Groups 
web2py-users group.
To post to this group, send email to web...@googlegroups.com.
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en.