One of the ways to log in to a Docker container (requires root access)

Source: Internet
Author: User
Tags requires root access

Nsenter

The Nsenter tool is part of the Util-linux package since version 2.23. It provides access to the namespace of another process. Nsenter requires root privileges to work properly. Unfortunately, Util-linux is still at version 2.20 in Ubuntu 14.04. To install the latest version (2.24) Proceed as follows:

Cd/tmp
Curl https://www.kernel.org/pub/linux/utils/util-linux/v2.24/util-linux-2.24.tar.gz | tar-zxf-
CD util-linux-2.24
./configure--without-ncurses make
nsenter
CP Nsenter/usr/local/bin

In order to connect to a container, you had to find out the PID of the first process in the container.

Docker Inspect--format "{{. State.pid}} "<container-id>

With this PID you can connect to the container:

Nsenter--target $PID--mount--uts--ipc--net--pid

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.