分散式進階 九 Ubuntu下使用nsenter進入Docker容器
使用nsenter進入Docker容器
Docker容器執行後,如何進入容器進行操作呢?起初我是用SSH。如果只啟動一個容器,用SSH還能應付,只需要將容器的22埠對映到本機的一個埠即可。當我啟動了五個容器後,每個容器預設是沒有配置SSH Server的,安裝配置SSHD,對映容器SSH埠,實在是麻煩。
我發現很多Docker映象都是沒有安裝SSHD服務的,難道有其他方法進入Docker容器?
瀏覽了Docker的文件,我沒有找到答案。還是要求助於無所不能的Google,萬能的Google告訴我用nsenter吧。
在大多數Linux
cd /tmp
curl https://www.kernel.org/pub/linux/utils/util-linux/v2.24/util-linux-2.24.tar.gz
tar -zxvf util-linux-2.24.tar.gz
cd util-linux-2.24
./configure --without-ncurses
make nsenter
cp nsenter /usr/local/bin
使用shell指令碼 docker-enter,將如下程式碼儲存為docker-enter, chmod 777 docker-enter
#!/bin/sh
if [ -e $(dirname "$0")/nsenter ]; then
# with boot2docker, nsenter is not in the PATH but it is in the same folder
NSENTER=$(dirname "$0")/nsenter
else
NSENTER=nsenter
fi
if [ -z "$1" ]; then
echo "Usage: `basename "$0"` CONTAINER [COMMAND [ARG]...]"
echo ""
echo "Enters the Docker CONTAINER and executes the specified COMMAND."
echo "If COMMAND is not specified, runs an interactive shell in CONTAINER."
else
PID=$(docker inspect --format "{{.State.Pid}}" "$1")
if [ -z "$PID" ]; then
exit 1
fi
shift
OPTS="--target $PID --mount --uts --ipc --net --pid --"
if [ -z "$1" ]; then
# No command given.
# Use su to clear all host environment variables except for TERM,
# initialize the environment variables HOME, SHELL, USER, LOGNAME, PATH,
# and start a login shell.
"$NSENTER" $OPTS su - root
else
# Use env to clear all host environment variables.
"$NSENTER" $OPTS env --ignore-environment -- "[email protected]"
fi
fi
執行 docker-enter <container id> (前提是必須存在已經已經執行的容器),這樣就進入到指定的容器中
再分享一下我老師大神的人工智慧教程吧。零基礎!通俗易懂!風趣幽默!還帶黃段子!希望你也加入到我們人工智慧的隊伍中來!https://www.cnblogs.com/captainbed