NAME¶ 名称
podman-kill - Kill the main process in one or more containers
podman-kill - 在一个或多个容器中终止主进程
SYNOPSIS¶ 概要
podman kill [options] [container …]
podman kill [选项] [容器 …]
podman container kill [options] [container …]
podman 容器终止 [选项] [容器 …]
DESCRIPTION¶ 描述
The main process inside each container specified is sent SIGKILL or any signal specified with the --signal
option.
每个指定容器内的主要进程都会收到 SIGKILL 或使用 --signal
选项指定的任何信号。
OPTIONS¶ 选项
--all, -a¶
Signal all running and paused containers.
发送信号给所有正在运行和暂停的容器。
--cidfile=file¶
Read container ID from the specified file and kill the container.
Can be specified multiple times.
从指定文件中读取容器 ID 并终止容器。可以多次指定。
--latest, -l¶
Instead of providing the container name or ID, use the last created container.
Note: the last started container can be from other users of Podman on the host machine.
(This option is not available with the remote Podman client, including Mac and Windows
(excluding WSL2) machines)
不要提供容器名称或 ID,而是使用最后创建的容器。注意:最后启动的容器可能来自主机上其他 Podman 用户。(此选项在远程 Podman 客户端中不可用,包括 Mac 和 Windows(不包括 WSL2)主机)
--signal, -s=signal¶ --信号, -s=信号 ¶
Signal to send to the container. For more information on Linux signals, refer to signal(7).
The default is SIGKILL.
发送到容器的信号。有关 Linux 信号的更多信息,请参考 signal(7)。默认值为 SIGKILL。
EXAMPLE¶ 例子 ¶
Kill container with a given name:
使用给定名称杀死容器:
podman kill mywebserver
Kill container with a given ID:
使用给定的 ID 杀死容器:
podman kill 860a4b23
Terminate container by sending TERM
signal:
通过发送 TERM
信号终止容器:
podman kill --signal TERM 860a4b23
Kill the latest container. (This option is not available with the remote Podman client, including Mac and Windows
(excluding WSL2) machines):
杀死最新的容器。(此选项在远程 Podman 客户端中不可用,包括 Mac 和 Windows(不包括 WSL2)机器):
podman kill --latest
Terminate all containers by sending KILL
signal:
通过发送 KILL
信号终止所有容器:
podman kill --signal KILL -a
Kill containers using ID specified in a given files:
使用给定文件中指定的 ID 杀死容器:
podman kill --cidfile /home/user/cidfile-1
podman kill --cidfile /home/user/cidfile-1 --cidfile ./cidfile-2
SEE ALSO¶ 参见 ¶
podman(1), podman-stop(1)
podman(1),podman-stop(1)
HISTORY¶ 历史 ¶
September 2017, Originally compiled by Brent Baude bbaude@redhat.com
2017 年 9 月,最初由 Brent Baude bbaude@redhat.com 编写