Accept returned -1: Too many open files????

All installation and configuration problems and questions

Moderators: gerski, enjay, williamconley, Op3r, Staydog, gardo, mflorell, MJCoate, mcargile, Kumba, Michael_N

Accept returned -1: Too many open files????

Postby hammobru » Wed Mar 04, 2009 7:31 pm

Hi, I was watching the "CLI" and saw the following message run across. What exactly does this mean?

Thanks in advance. I am running the following :


Intel Quad Core Xeon 2.83 MHZ 2 Gg Ram

VERSION: 2.0.4-121 BUILD: 80424-0442

Running All VOIP. Server load average is at 1.53 1.63 1.49 When this happened.

Thanks in advance.

Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
Mar 4 18:17:22 NOTICE[3096]: manager.c:1452 accept_thread: Accept returned -1: Too many open files
hammobru
 
Posts: 32
Joined: Tue Sep 23, 2008 12:00 pm

Postby mflorell » Wed Mar 04, 2009 11:55 pm

What is the CPU on that server?

How many concurrent calls were you running when this happened?

Asterisk version?
mflorell
Site Admin
 
Posts: 18384
Joined: Wed Jun 07, 2006 2:45 pm
Location: Florida

Postby linuxlover » Wed Mar 11, 2009 5:57 am

I was facing the same problem and have solved it by




Code: Select all
 

How are you starting Asterisk? We had the same problem when we were starting Asterisk from an init script. The problem was that we were increasing the open file limit in "/etc/security/limits.conf". From a system prompt ulimit was showing the increased open file limit, but here's the catch:

"limits.conf" is only applied to logins, so when Asterisk was run from an init script it was still bound to the default limit for open files: 1024. The solution was to add the command "ulimit -n 65536" to the init script, prior to starting Asterisk.

This was a tricky problem to debug, because once Asterisk bombed we would log in, stop the process, and restart it from the prompt. The new instance inherited the settings from "limits.conf" and everything ran fine until the next reboot.

I hope this helps, but if it doesn't here is some more useful information. "/proc/<pid_of_asterisk>/fd/" contains a list of Asterisk's open files. "ls -l /proc/<pid_of_asterisk>/fd | wc -l" will give you a rough count of the number of files Asterisk has open at any given moment. "lsof" will also list the open files on the system. Check out its man page for details




solution was to increase the open file limit before starting the asterisk.
linuxlover
 
Posts: 28
Joined: Wed Feb 18, 2009 11:37 am

Postby mflorell » Wed Mar 11, 2009 8:18 am

It should be noted that this solution does not work on all Linux distros. Sometimes you have to recompile bash with higher default open file values.
mflorell
Site Admin
 
Posts: 18384
Joined: Wed Jun 07, 2006 2:45 pm
Location: Florida

Postby linuxlover » Thu Mar 12, 2009 1:58 am

Thanks mflorell for addition.

I am using this on Centos 5.
linuxlover
 
Posts: 28
Joined: Wed Feb 18, 2009 11:37 am

Postby enjay » Thu Mar 12, 2009 12:35 pm

What is the output of ulimit -n?
enjay
 
Posts: 806
Joined: Mon Jun 19, 2006 12:40 pm
Location: Utah

Postby TritenTech » Thu Mar 12, 2009 9:48 pm

Hi, Ulimit -n shows 1024. Thats probably my problem. I need to change that.

Now I just have to figure out how.

Thanks again.
TritenTech
 
Posts: 15
Joined: Wed Feb 18, 2009 11:37 pm

Postby mflorell » Thu Mar 12, 2009 10:25 pm

keep in mind that ulimit values are per shell session, not per boot or user.
mflorell
Site Admin
 
Posts: 18384
Joined: Wed Jun 07, 2006 2:45 pm
Location: Florida

Postby linuxlover » Thu Mar 12, 2009 11:59 pm

Hi,

To make it permanent add this in file /etc/security/limits.conf

Code: Select all
* soft nofile 16384
* hard nofile 16384


to increase the value immediately give at command prompt

Code: Select all
#ulimit -n 16384





To set this this limit on start up before starting asterisk and this line in /etc/rc.local file (above the line of asterik startup script)

Code: Select all
#ulimit -n 16384



Let me know if you still face any problem regarding that.
linuxlover
 
Posts: 28
Joined: Wed Feb 18, 2009 11:37 am

Postby enjay » Fri Mar 13, 2009 11:07 am

Definitely instantiate the ulimit command in the rc file...


linuxlover wrote:Hi,

To make it permanent add this in file /etc/security/limits.conf

Code: Select all
* soft nofile 16384
* hard nofile 16384


to increase the value immediately give at command prompt

Code: Select all
#ulimit -n 16384





To set this this limit on start up before starting asterisk and this line in /etc/rc.local file (above the line of asterik startup script)

Code: Select all
#ulimit -n 16384



Let me know if you still face any problem regarding that.
enjay
 
Posts: 806
Joined: Mon Jun 19, 2006 12:40 pm
Location: Utah

Re: Accept returned -1: Too many open files????

Postby ruben23 » Thu Oct 03, 2019 9:17 am

hi there guys im having this error on my asterisk-11.22.0-vici install on latest Vicidial trunk also
Version: 2.14b0.5
SVN Version: 0
DB Schema Version: 1540
DB Schema Update Date: 2018-04-07 04:23:58


and keeps getting this error log

[Oct 3 07:16:47] ERROR[20031]: res_timing_timerfd.c:93 timerfd_timer_open: Failed to create timerfd timer: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] WARNING[20031]: alertpipe.c:48 ast_alertpipe_init: Failed to create alert pipe with eventfd(), falling back to pipe(): Too many open files
[Oct 3 07:16:47] ERROR[20032]: res_timing_timerfd.c:93 timerfd_timer_open: Failed to create timerfd timer: Too many open files
[Oct 3 07:16:47] WARNING[20032]: alertpipe.c:48 ast_alertpipe_init: Failed to create alert pipe with eventfd(), falling back to pipe(): Too many open files
[Oct 3 07:16:47] WARNING[20031]: alertpipe.c:55 ast_alertpipe_init: Failed to create alert pipe: Too many open files
== Spawn extension (default, 9CQC12152368402, 3) exited non-zero on 'Local/9CQC12152368402@default-0000123d;2'
[Oct 3 07:16:47] WARNING[20032]: alertpipe.c:55 ast_alertpipe_init: Failed to create alert pipe: Too many open files
[Oct 3 07:16:47] WARNING[20031]: core_unreal.c:980 ast_unreal_new_channels: Unable to allocate owner channel structure
[Oct 3 07:16:47] WARNING[20032]: core_unreal.c:980 ast_unreal_new_channels: Unable to allocate owner channel structure
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
-- Executing [h@default:1] AGI("Local/9CQC12152368402@default-0000123d;2", "agi://127.0.0.1:4577/call_log--HVcauses--PRI-----NODEBUG-----1-----CHANUNAVAIL---------------SIP 404 Not Found)") in new stack
[Oct 3 07:16:47] WARNING[19979][C-0000186b]: res_agi.c:2077 launch_netscript: Unable to create socket: Too many open files
[Oct 3 07:16:47] WARNING[19979][C-0000186b]: res_agi.c:2104 launch_netscript: Couldn't connect to any host. FastAGI failed.
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
== Manager 'sendcron' logged on from 127.0.0.1
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
== Manager 'sendcron' logged on from 127.0.0.1
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[20035]: res_timing_timerfd.c:93 timerfd_timer_open: Failed to create timerfd timer: Too many open files
[Oct 3 07:16:47] WARNING[20035]: alertpipe.c:48 ast_alertpipe_init: Failed to create alert pipe with eventfd(), falling back to pipe(): Too many open files
[Oct 3 07:16:47] WARNING[20035]: alertpipe.c:55 ast_alertpipe_init: Failed to create alert pipe: Too many open files
[Oct 3 07:16:47] WARNING[20035]: core_unreal.c:980 ast_unreal_new_channels: Unable to allocate owner channel structure
[Oct 3 07:16:47] ERROR[20033]: res_timing_timerfd.c:93 timerfd_timer_open: Failed to create timerfd timer: Too many open files
[Oct 3 07:16:47] WARNING[20033]: alertpipe.c:48 ast_alertpipe_init: Failed to create alert pipe with eventfd(), falling back to pipe(): Too many open files
[Oct 3 07:16:47] WARNING[20033]: alertpipe.c:55 ast_alertpipe_init: Failed to create alert pipe: Too many open files
[Oct 3 07:16:47] WARNING[20033]: core_unreal.c:980 ast_unreal_new_channels: Unable to allocate owner channel structure
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
[Oct 3 07:16:47] ERROR[1464]: tcptls.c:825 ast_tcptls_server_root: TCP/TLS accept failed: Too many open files
== Manager 'sendcron' logged on from 127.0.0.1
SkypeID: rlacumba
IBM x3200 Dual Core 2.4 Ghz.
4GB Ram
VERSION: 2.4-311a
BUILD: 110514-1351
© 2011 ViciDial Group
Asterisk 1.4.27-vici
Another VICI_day, same trunK, same Channel-->Transcode...
ruben23
 
Posts: 1161
Joined: Thu Jul 31, 2008 10:35 am
Location: Davao City, Philippines


Return to Support

Who is online

Users browsing this forum: No registered users and 104 guests