Skip to main content

Troubleshooting Remote Docker via Syslog and Dmesg

Viewing Logs Using Syslog and Dmesg

The following can be added to assist in troubleshooting networking and other issues with Remote Docker. This should be added as the next steps immediately after setup_remote_docker.

- run:
    background: true
    command: ssh remote-docker "sudo tail -f /var/log/dmesg"
- run:
    background: true
    command: ssh remote-docker "sudo tail -f /var/log/syslog"

Additional Resources:

Did this answer your question?