Docker daemon can't initialize network controller

19,816

Solution 1

Your error text was cut, so i can not check if it is exactly the same error, but i got this error:

Error starting daemon: Error initializing network controller: Error creating default "bridge" network: failed to parse pool request for address space "LocalDefault" pool "" subpool "": could not find an available predefined network

This was related to the machine having several network cards (can also happen in machines with VPN, you can also temporarily stop it, start docker and restart the vpn OR apply the below workaround)

To me, the solution was to start manually docker like this:

/usr/bin/docker daemon --debug --bip=192.168.y.x/24

where the 192.168.y.x is the MAIN machine IP and /24 that ip netmask. Docker will use this network range for building the bridge and firewall riles. The --debug is not really needed, but might help if something else fails

After starting once, you can kill the docker and start as usual. AFAIK, docker have created a cache config for that --bip and should work now without it. Of course, if you clean the docker cache, you may need to do this again.

Solution 2

Apparently deleting /var/lib/docker/network/files/local-kv.db could work in some cases.

Source: https://github.com/moby/moby/issues/18113#issuecomment-161058473

Another explanation could be problem caused by using VPN: https://github.com/moby/moby/issues/31546#issuecomment-284196714

Share:
19,816
ahstro
Author by

ahstro

Enthusiastic about open source, D&D, climbing, and psychedelics.

Updated on June 13, 2022

Comments

  • ahstro
    ahstro almost 2 years

    I'm having trouble starting my docker daemon. I've installed docker but when I try to run # systemctl start docker.service it throws an error. $ systemctl status docker.service gives me this:

    ● docker.service - Docker Application Container Engine
       Loaded: loaded (/usr/lib/systemd/system/docker.service; disabled; vendor preset: disabled)
       Active: failed (Result: exit-code) since Wed 2016-09-21 14:38:24 CEST; 6s ago
         Docs: https://docs.docker.com
      Process: 5592 ExecStart=/usr/bin/dockerd -H fd:// (code=exited, status=1/FAILURE)
     Main PID: 5592 (code=exited, status=1/FAILURE)
    
    Sep 21 14:38:24 tp-x230 dockerd[5592]: time="2016-09-21T14:38:24.271068176+02:00" level=warning msg="devmapper: Base device already exists and has filesystem xfs on it. User specified filesystem  will be ignored."
    Sep 21 14:38:24 tp-x230 dockerd[5592]: time="2016-09-21T14:38:24.327814644+02:00" level=info msg="[graphdriver] using prior storage driver \"devicemapper\""
    Sep 21 14:38:24 tp-x230 dockerd[5592]: time="2016-09-21T14:38:24.329895994+02:00" level=info msg="Graph migration to content-addressability took 0.00 seconds"
    Sep 21 14:38:24 tp-x230 dockerd[5592]: time="2016-09-21T14:38:24.330707721+02:00" level=info msg="Loading containers: start."
    Sep 21 14:38:24 tp-x230 dockerd[5592]: time="2016-09-21T14:38:24.335610867+02:00" level=info msg="Firewalld running: false"
    Sep 21 14:38:24 tp-x230 dockerd[5592]: time="2016-09-21T14:38:24.461243263+02:00" level=fatal msg="Error starting daemon: Error initializing network controller: Error creating default \"bridge\" network: failed to parse pool request for ad
    Sep 21 14:38:24 tp-x230 systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE
    Sep 21 14:38:24 tp-x230 systemd[1]: Failed to start Docker Application Container Engine.
    Sep 21 14:38:24 tp-x230 systemd[1]: docker.service: Unit entered failed state.
    Sep 21 14:38:24 tp-x230 systemd[1]: docker.service: Failed with result 'exit-code'.
    

    with the relevant line being:

    Sep 21 14:38:24 tp-x230 dockerd[5592]: time="2016-09-21T14:38:24.461243263+02:00" level=fatal msg="Error starting daemon: Error initializing network controller: Error creating default \"bridge\" network: failed to parse pool request for ad
    
  • Mohsen Abasi
    Mohsen Abasi over 4 years
    Maybe executing the following command needed: $ifdown [interface] && ifup [interface]
  • xpoback
    xpoback almost 4 years
    Thanks, VPN was the issue
  • CS QGB
    CS QGB almost 3 years
    colab: can't initialize iptables table `nat': Permission denied (you must be root)
  • Peterlits Zo
    Peterlits Zo about 2 years
    unknown flag: --bip