K8s Lab: Crating Master
Summary In this Lab exercise we will learn step by step process for creating k8s Cluster Prerequisites 1. A compatible Linux host (Linux distributions based on Ubuntu, Debian and Red Hat) 2. 2 GB or more of RAM per machine (any less will leave little room for your apps). 3. 2 CPUs […]
DockerMsftProvider package installation failed
Issue Failed to install docker package with error: install-package : Cannot rename because item at ‘C:\Program Files\dummyName’ does not exist. Symptoms Docker package installation failed with error ” install-package : Cannot rename because item at ‘C:\Program Files\dummyName’ does not exist.” Created ‘dummyName’ folder in location ‘ C:\Program Files\’, still the package installation failed with same […]
Failed to start Containers with error “The wait operation timed out. (0x102)
Issue Container failed to start with error “docker: Error response from daemon: container <id> encountered an error during Start: failure in a Windows system call: The wait operation timed out. (0x102)” Symptoms: All the windows Containers failed to start with error message: docker: Error response from daemon: container <id> encountered an error during Start: failure in a […]
Failed to start/stop container, vmcompute.exe service terminates unexpectedly
Issue Failed to perform any activity/task on Container (eg. Stop, Start, Inspect, Exec,…) as Hyper-v Host Compute Service service terminates unexpectedly Symptoms: Failed to perform any activity/task on Container (eg. Start, Stop, Inspect, Exec,….). Container start and stop commands waits on blinking cursor, no output or response In the System Logs observed error: ‘The Hyper-V […]
Failed to start the Docker Service, error: start-service : Failed to start service ‘Docker Engine (docker)’
Issue: Failed to start the Docker Engine Service with error “start-service : Failed to start service ‘Docker Engine (docker)’” Description Using Kubernetes (Orchestrators) to collect Analytic data from Windows Container host with Azure Monitor Configure Docker Engine service using daemon.json file and Windows Registry to collect Analytical data from the Windows Containers Symptoms Added parameter, […]
Installing Docker on Windows Server 2016/2019 using Manifest File
Summary : In this article we will learn to install Docker on Window Server using Docker Manifest file Prerequisites: = Step by Step process First step is to download a “manifest” file that contains the list of known Docker package versions along with the correct URL to download them Start-BitsTransfer -Source https://dockermsft.blob.core.windows.net/dockercontainer/DockerMsftIndex.json Open DockerMsftIndex.json in […]
Create your first Container on Windows Server 2016/2019
Summary: In this article we will learn steps by step process to install Docker EE (Enterprise Edition) on Windows Server 2016/2019 server Prerequisites: Windows Server 2016, build 1607 and above, Windows Server 2019 virtual machine or physical server Step by Step process 1. Install Container feature from Server Manage Install Container Feature from Add and […]
Creating Docker Registry (Docker Hub, Local and Host)
Docker Hub: Login to Docker Hub: Create Public Repository : Select Repositories -> Create Repository Select radio button: ‘Public‘ and specify name for public repository Click on ‘Create‘ button at the bottom For Private Repository: Click of radio button: Private and specify the name for repository. New Private and Public Repository will be created under […]
Docker Build.Push.Pull.Run
Summary: In this article we will learn about Docker Build, Pull and Run command. When you run, “docker run -d -it <container-name> <image:tag>” command, docker demon search local registry for specified “Image with tag”. If the Image is found, a new container is created with the image. However, if the Image is not found in […]