Categories
Azure DevOps Docker Dynamics NAV Microsoft

docker : error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.40/version: open //./pipe/docker_engine: The system cannot find the file specified. In the default daemon configuration on Windows, the docker client must be run elevated to connect. This error may also indicate that the docker daemon is not running.

Solution:
Open PowerShell as Administrator and run the following command

net start docker

Did my solution solve your problem? Leave a reply.

Categories
Azure DevOps Microsoft PowerShell

DevOps Deployment Group script stuck on “Connecting to the server.”

Scenario:
I’m adding a machine to a Deployment Group in DevOps, I copied the script from DevOps page and pasted in Windows PowerShell ISE that I’m running as Administrator in the target machine.

Run the script, it starts showing the steps until it stops (no errors shown) at the step

Connecting to the server.

Solution:
Run the script using Windows PowerShell (Run as Administrator) rather than using Windows PowerShell ISE

Did my solution solve your problem? Leave a reply.