Error while creating signature: OS_Rng: open /dev/urandom operation failed with error 9
February 15th, 2007 by Busindre
Vamos a dar la solución al error que muestra el amule, en este caso en OpenBSD gracias a nuestro amigo warlock:
2007-02-15 18:30:03: Credits: Error while creating signature: OS_Rng: open /dev/urandom operation failed with error 9
El problema se debe al limite de archivos abiertos por el usuario el cual podemos modificar en /etc/login.conf y poner el parámetro :openfiles-cur=128:\ en 1024, quedando de la siguiente manera:
# Any value changed in the daemon class should be reset in default
# class.
#
default:\
:path=/usr/bin /bin /usr/sbin /sbin /usr/X11R6/bin /usr/local/bin:\
:umask=022:\
:datasize-max=512M:\
:datasize-cur=512M:\
:maxproc-max=128:\
:maxproc-cur=64:\
:openfiles-cur=1024:\
:stacksize-cur=4M:\
:localcipher=blowfish,6:\
:ypcipher=old:\
:tc=auth-defaults:\
:tc=auth-ftp-defaults:
#
# Settings used by /etc/rc and root
# This must be set properly for daemons started as root by inetd as well.
# Be sure reset these values back to system defaults in the default class!
#
daemon:\
:ignorenologin:\
:datasize=infinity:\
:maxproc=infinity:\
:openfiles-cur=1024:\
:stacksize-cur=8M:\
:localcipher=blowfish,8:\
:tc=default:
NOTA: Se debe reiniciar la sesión de login para volver a cargar el /etc/login.conf
Posted in General |
