Jump to content

unraid web ui unresponsive


Recommended Posts

20 hours ago, JorgeB said:

That looks like a macvlan call trace, try switching to ipvlan.

Oh looks like that was the issue. No more traces in the logs 😀. I switched to ipvlan, but now when I reboot the docker all my dockers that uses custom network with static IP are not starting. I get this error

Screenshot2024-06-14at12_18_51PM.thumb.png.5dc31410b0b3c8661f09169342cffe57.png

 

These are the settings I have in the docker networksScreenshot2024-06-14at12_59_26PM.thumb.png.84c66c9048b2bf196793f9bc07226b59.png

 

I deleted the custom network and recreated again, but getting same issue during the docker start. Anything I am doing wrong?

 

Thank you,

Link to comment
Posted (edited)

Even with the macvlan, bridging disabled, I am getting the network not found error. switching either to ipvan or macvlan doesn't start up the custom network. All my dockers are custom, all start fine, except the one that are external are not starting up.

 image.thumb.png.33a56dde9ded7f6a2822b592ee64ba41.png

 

I think I have all the settings correct. 

image.thumb.png.62a910b3b12c6d6bf420ba55522eedfc.png

 

And this is the docker:

image.thumb.png.a48f73f873d6b2aed9e240d7963721cd.png

 

my custom networks:

Screenshot2024-06-17at1_00_27PM.thumb.png.7ab178d6c92c5361e6c9447f51c4f07a.png

 

sample of my docker compose in Portainer:

services:
  homeassistant:
    container_name: homeassistant
    image: "ghcr.io/home-assistant/home-assistant:stable"
    labels:
      - net.unraid.docker.icon=https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/homeassistant-logo.png
      - net.unraid.docker.webui=http://192.168.5.100:8123
    volumes:
      - /mnt/user/appdata/home_assistant/config:/config
      - /etc/localtime:/etc/localtime:ro
      - /run/dbus:/run/dbus:ro
    restart: always
    networks:
      eth0:
        ipv4_address: 192.168.5.100
    ports:
      - 8123:8123
networks:
    eth0:
        external: true

 

May be I am doing something wrong. Diagnostics also attached if it helps.

unraid-diagnostics-20240617-1301.zip

 

Edited by 062bel313
docker screenshot added
Link to comment

I think I might have found the issue, but I am not sure how to resolve it. Everytime I do enable/disable docker it doesn't preserve my network, with macvlan as well as ipvlan.

 

Screenshot2024-06-17at1_15_51PM.thumb.png.01476498101322bda4d11b7a7267b8f2.png

 

Now the id is different, even though I have preserve user defined networks enabled. Am I doing anything wrong?

 

Link to comment

Before recreating the docker image, I wanted to try to create a different network with parent as br0 (for ipvlan) in one container and use it in other containers. With this configuration it works somehow. If I enable/disable the docker everythig start now.

 

Created main network from pihole container and used the same network in other container as below.

 

pihole:

    networks:
      vlan_network:
        ipv4_address: 192.168.5.110

networks:
  vlan_network:
    driver: ipvlan
    driver_opts:
      parent: br0
    ipam:
      driver: default
      config:
       - subnet: 192.168.5.0/24
         ip_range: 192.168.5.0/25
         gateway: 192.168.5.1

 

and other networks:

    networks:
      pihole_vlan_network:
        ipv4_address: 192.168.5.100

networks:
    pihole_vlan_network:
        external: true
      

 

 

Is this just a fluke or was I doing it wrong before? any insights (to understand). 

 

If this fails, I will recreated= docker image as suggested.

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...