DomiStyle / docker-idrac6

iDRAC 6 web interface and VNC proxy
https://hub.docker.com/r/domistyle/idrac6/
MIT License
769 stars 140 forks source link

Container abends with out of memory errors #53

Closed weeglos closed 1 year ago

weeglos commented 1 year ago

I have just installed the container on my Fedora 36 box with Docker version 20.10.22, Build 3a2c30b

The container starts up, runs for a bit, and dies. I am able to connect to it briefly, but never make it to the iDRAC.

Ran it using -it and discovered some errors.

The errors are showing up as follows:

library initialization failed - unable to allocate file descriptor table - out of memoryAborted (core dumped)

Very odd.

Logs attached.

dockerlog.log

weeglos commented 1 year ago

Fixed this issue by modifying the systemd startup parameters as suggested here: https://stackoverflow.com/questions/68776387/docker-library-initialization-failed-unable-to-allocate-file-descriptor-tabl

I fixed this problem by override commands arguments ExecStart in docker.service

sudo systemctl edit docker and then enter

[Service] ExecStart= ExecStart=/usr/bin/dockerd --default-ulimit nofile=65536:65536 -H fd:// Save and run sudo systemctl daemon-reload and sudo systemctl restart docker.