The dcos task exec
command allows you to execute an arbitrary command inside of a task’s container and stream its output back to your local terminal to learn more about how a given task is behaving. It offers an experience very similar to docker exec
, without any need for SSH keys.
To use the debugging feature, the service or job must be launched using either the Mesos container runtime or the Universal container runtime. Debugging cannot be used on containers launched with the Docker runtime. See Using Mesos Containerizers for more information.
You can execute this command in the following modes.
-
dcos task exec <task-id> <command>
(no flags): streams STDOUT and STDERR from the remote terminal to your local terminal as raw bytes. -
dcos task exec --tty <task-id> <command>
: streams STDOUT and STDERR from the remote terminal to your local terminal, but not as raw bytes. Instead, this option puts your local terminal into raw mode, allocates a remote pseudo terminal (PTY), and streams the STDOUT and STDERR through the remote PTY. -
dcos task exec --interactive <task-id> <command>
streams STDOUT and STDERR from the remote terminal to your local terminal and streams STDIN from your local terminal to the remote command. -
dcos task exec --interactive --tty <task-id> <command>
: streams STDOUT and STDERR from the remote terminal to your local terminal and streams STDIN from your local terminal to the remote terminal. Also puts your local terminal into raw mode; allocates a remote pseudo terminal (PTY); and streams STDOUT, STDERR, and STDIN through the remote PTY. This mode offers the maximum functionality.
For more information on the dcos task exec
commands, see the CLI Reference section.
Tips
- We have included the text of the full flags above for readability, but each one can be shortened. Instead of typing
--interactive
, you can just type-i
. Likewise, instead of typing--tty
, you can just type-t
. - If your mode streams raw bytes, you will not be able to launch programs like
vim
, because these programs require the use of control characters.
Quick start
Use this guide to get started with the dcos task exec
debugging command.
Prerequisite:
- A container launched by using the DC/OS Universal container runtime
Pipe output from a command running inside a container
You can run commands inside a container by using the dcos task exec
command. In this example, a long running Marathon app is launched and then the dcos task exec
command is used to get the hostname of the node running the app.
-
Create a Marathon app definition and name it
my-app.json
with the following contents: -
Deploy the service on DC/OS:
-
Get the task ID of the job with this CLI command:
The output should look similar to this:
-
Run this command to show the hostname of the container running your app, where
<task-ID>
is your task ID.The output should look similar to this:
For more information on the dcos task exec
commands, see the CLI Reference section.
Run an interactive command inside a task’s container
You can run interactive commands on machines in your cluster by using the dcos task exec
command. In this example, the dcos task exec
command is used to copy a simple script from your local machine to the task container on the node. The script is then administered locally by using the dcos task exec
command.
-
Create a Marathon app definition and name it
my-interactive-app.json
with the following contents: -
Deploy the app on DC/OS:
-
Get the task ID of the app with this CLI command:
The output should look similar to this:
-
Write a script called
hello-world.sh
with the following contents: -
Upload the script to your task container:
-
Give the file executable permissions:
-
Run the script inside of the container:
The output should look similar to this:
Launch a long running interactive Bash session
In this example, a long running job is launched by using the dcos job run
command, and the dcos task exec
command is used to launch an interactive Bash shell inside the container of that job.
-
Deploy and run a job with the DC/OS CLI:
-
Create the following job definition and save as
my-job.json
. This specifies a sleep job that runs for10000000
seconds. -
Deploy the job with this CLI command:
-
Verify that the job has been successfully deployed:
The output should resemble:
-
Run the job:
-
-
Get the task ID of the job with this CLI command:
The output should look similar to this:
-
Launch a process inside of the container with the task ID (
<task_id>
) specified and attach a TTY to it. This will launch an interactive Bash session.You should now be inside the container running an interactive Bash session.
-
Run a command from the interactive Bash session. For example, the
ls
command:
Tip
You can use shorthand such as -i
for --interactive
or -t
for --tty
. Also, only the beginning unique characters of the <task_id>
are required. For example, if your task ID is exec-test_20161214195
and there are no other task IDs that begin with the letter e
, this is valid command syntax: dcos task exec -i -t e bash
. For more information, see the CLI command reference.