Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 788 Bytes

troubleshoot.md

File metadata and controls

27 lines (17 loc) · 788 Bytes

Troubleshooting Guide

1. Failures

If Ansitheus fails, you can add -vvv to provide more information (actually it's Ansible verbose option).

The fastest way during to recover from a deployment failure is to remove the failed deployment:

./tools/ansitheus destroy -i <inventory-file>

2. Debugging

The status of containers after deployment can be determined on the deployment targets by executing:

docker ps -a

If any of the containers exited, this indicates a bug in the container. Check out the stdout logs:

docker logs <container-name>

To learn more about Docker command line operation please refer to Docker documentation.