DomiStyle / docker-idrac6

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

Docker starts and restarts #48

Open JuniorGamingTime opened 2 years ago

JuniorGamingTime commented 2 years ago

So im having an issue with the idrac docker boot looping. i get an error in the logs saying: Failed to download avctKVM.jar, please check your settings

In the Web Gui the screen goes black and then just shuts off with the error "1006" just like in #34

docker compose:

version: '3.1'

services:
  idrac1:
    image: domistyle/idrac6
    restart: always
    ports:
      - 5800:5800
      - 5900:5900
    environment:
      - IDRAC_HOST=10.xx.xx.xx
      - IDRAC_USER=user
      - IDRAC_PASSWORD=12345678
    volumes:
      - /Automation/iDrac/app:/app
      - /Automation/iDrac/media:/vmedia
      - /Automation/iDrac/screenshots:/screenshots
DomiStyle commented 2 years ago

Can you post the full logs?

JuniorGamingTime commented 2 years ago

idrac-6-juniorgamingtime.log Sorry about that, here you go

DomiStyle commented 2 years ago

Can you try again with no volumes mounted in the container?

JuniorGamingTime commented 2 years ago

Can you try again with no volumes mounted in the container?

Seems like that made it work. Could it be an issue with permissions in the volumes?

DomiStyle commented 2 years ago

Could it be an issue with permissions in the volumes?

Yes, it can't write the downloaded jar files to /app and it can't create the /app/lib folder.

JuniorGamingTime commented 2 years ago

Ok ill look into that later on because I'm moving my dockers to a different server. But right now the logs are filled with:

couldn't flush user prefs And could not lock User prefs

I'm guessing that's do to no volumes?

DomiStyle commented 2 years ago

That's normal.

WhiteNight121 commented 1 year ago

to fix this i just did a chmod 777 on each folder that it makes as a workaround for now.

ssmoss commented 12 months ago

@WhiteNight121 does this solve your issue https://github.com/DomiStyle/docker-idrac6/pull/47 ?

WhiteNight121 commented 12 months ago

The chmod did not sure about the original poster