Page 1 of 1
Accept returned -1: Too many open files????
Posted:
Wed Mar 04, 2009 7:31 pm
by hammobru
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
Posted:
Wed Mar 04, 2009 11:55 pm
by mflorell
What is the CPU on that server?
How many concurrent calls were you running when this happened?
Asterisk version?
Posted:
Wed Mar 11, 2009 5:57 am
by linuxlover
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.
Posted:
Wed Mar 11, 2009 8:18 am
by mflorell
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.
Posted:
Thu Mar 12, 2009 1:58 am
by linuxlover
Thanks mflorell for addition.
I am using this on Centos 5.
Posted:
Thu Mar 12, 2009 12:35 pm
by enjay
What is the output of ulimit -n?
Posted:
Thu Mar 12, 2009 9:48 pm
by TritenTech
Hi, Ulimit -n shows 1024. Thats probably my problem. I need to change that.
Now I just have to figure out how.
Thanks again.
Posted:
Thu Mar 12, 2009 10:25 pm
by mflorell
keep in mind that ulimit values are per shell session, not per boot or user.
Posted:
Thu Mar 12, 2009 11:59 pm
by linuxlover
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.
Posted:
Fri Mar 13, 2009 11:07 am
by enjay
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.
Re: Accept returned -1: Too many open files????
Posted:
Thu Oct 03, 2019 9:17 am
by ruben23
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