SilverWebBuzz

 Join Silver Webbuzz at GITEX Global 2023 – The Year to Imagine AI in Everything. Meet us.

Cannot connect to the docker daemon at unix:///var/run/docker.sock. is the docker daemon running?

Cannot connect to the docker daemon at unixvarrundocker.sock. is the docker daemon running
Get in Touch With Us
Submitting the form below will ensure a prompt response from us.

    That error message means your system is trying to run a Docker command, but the Docker daemon (the background service that actually runs containers) isn’t running or can’t be reached.

    Here’s how to fix it depending on your system:

    If you're on Linux:

    Check if Docker is running:

    bash
    sudo systemctl status docker

    1.Start Docker if it’s not running

    bash
    sudo systemctl start docker

    2. Enable Docker to start on boot (optional):

    bash
    sudo systemctl enable docker

    3. Run Docker without sudo (optional but useful):

    Add your user to the docker group:
    bash
    sudo usermod -aG docker $USER

    Then log out and log back in, or run:

    bash
    newgrp docker

    If you're on macOS or Windows using Docker Desktop:

    • Make sure Docker Desktop is running. You can usually find it in the taskbar/system tray.
    • If not, start Docker Desktop and wait until it fully initializes.

    To test if it works now:

    bash

    docker info

    If that command shows Docker info, you’re good to go.

    About Author

    Bhavik Koradiya is the CEO / Co. Founder of Silver WebBuzz Pvt. Ltd. Having 18+ years Experience in LAMP technology. I have expert in Magento, Joomla, WordPress, Opencart, e-commerce and many other open source. Specialties: Magento, WordPress, OpenCart, Joomla, JQuery, Any Open source.

    Scroll to Top