“ssh_exchange_identification connection closed by remote host” Error and Solution

"ssh_exchange_identification connection closed by remote host" Error and Solution

SSH protocol provides secure communication with remote systems in an easy way. When using the SSH protocol and tools to connect to the remote system there are different security checks. These checks may prevent or rejects the SSH connections. The ssh_exchange_identification connection closed by remote host error occurred when the remote system or SSH server … Read more

How To SSH Into Running Docker Container?

How To SSH Into Running Docker Container?

Docker is used to creating containers and run them isolated from the host. Docker containers are very similar to virtual machines where they provide similar services to VMs like SSH, HTTP, Telnet, etc. In this tutorial, we examine how to SSH into a running Docker Container in different ways like using the docker exec , … Read more

Install Docker On Linux

Install Docker On Linux

Docker is supported by most Linux distributions. The installation of Docker on Linux distributions may be different according to the distributions versions. Install Docker For Ubuntu, Debian, Mint, Kali Ubuntu, Debian, Mint, and Kali all of them use very similar packages and repositories with the deb packet management system. The docker can be installed for … Read more

Linux strace Command Tutorial

Linux strace Command Tutorial

Linux strace command is used to debug and troubleshoot commands and executables by providing detailed information about the process execution. The strace command simply intercepts and records the system calls called by process or threads. Install strace Command The strace command is installed by default for some popular Linux distributions by default. But in some … Read more

Docker Tag Command Tutorial

Docker Tag Command Tutorial

The docker tag command is used to manage tags for the docker images. An image consists of multiple layers which can be derived by new other docker images. Tags are used to identify and track different images easily. Tags names should only use ASCII characters. The tags are registered the registry-1.docker.io in order to be … Read more

Linux chroot Command Tutorial

Linux chroot Command Tutorial

Linux processes access the whole root directory by default. But in some cases, some processes may be required to restrict access to only specified directories or paths. The chroot command is used to change the specified process root directory into a different and fake one. For example, if we want to restrict the bash the … Read more

How To List Docker Containers?

How To List Docker Containers?

Docker is a popular containerization tool. By using docker a lot of containers can be created easily in a short time. But one of the most popular problems is how can be list docker containers. A docker container can be in different states like running, stopping, etc. In this tutorial, we examine how to list … Read more

Scp From Remote To Local

Scp From Remote To Local

The scp command is used to copy files and directories over the network in a secure way. As a command files can be copied via the command-line interface. The scp name comes from Secure Copy . The scp command is provided by most of the Linux distributions can be used to copy from the remote … Read more

Linux nohup Command/Signal Tutorial

Linux nohup Command/Signal Tutorial

Unix and Linux operating systems provide the nohup command in order to implement the nohup signal. The signal and command name are the same. The nohup command is created to prevent hop signal which is used to hang up . The hang-up signal kills all processes related to a user being killed after the user … Read more

How To Stop All Docker Containers?

How To Stop All Docker Containers?

Docker can run multiple containers at the same time. In some cases, we may need to stop all currently running containers in an easy way with a single command. In this tutorial, we provide different ways to stop all docker containers. Stop All Docker Containers with “docker stop” Docker provides the docker stop command in … Read more