Назад | Перейти на главную страницу

Ограничено 1024 файловыми дескрипторами [относится к ulimit -n]

У меня проблема с настройкой shoutcastv2 для более чем 1000 слушателей. Я всегда получаю сообщение из журнала shoutcast. С shoutcast v1 у меня нет этой проблемы.

INFO    [MAIN] Limited to 1024 file descriptors [relates to ulimit -n]

Все файлы настроены правильно.

/etc/security/limits.d/90-nproc.conf 
/etc/security/limits.conf

См. Вывод сервера:

[root@live ~]# ulimit -a
core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 96349
max locked memory       (kbytes, -l) 64
max memory size         (kbytes, -m) unlimited
open files                      (-n) 65535
pipe size            (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 8192
cpu time               (seconds, -t) unlimited
max user processes              (-u) 65535


cat /etc/security/limits.conf
*          soft     nproc          65535
*          hard     nproc          65535
*          soft     nofile         65535
*          hard     nofile         65535

Может кто-нибудь знать о?

Спасибо вам.

Я предполагаю, что вы запускаете процесс shoutcastv2 как пользователь root. В этом случае вам необходимо изменить файл limits.conf и указать «root» вместо «wildcard».

man limits.conf

NOTE: group and wildcard limits are not applied to the root user.
To set a limit for the root user, this field must contain the
literal username root.