Skip to content

For debugging

Sergio Lindo edited this page Dec 3, 2017 · 2 revisions

When something is failing on the containers, you will need to know what is happening within the containers. Here are some tips about debugging these containers.

webui

# Start the container with a bash shell and start the webui manually
user@pc:~$ docker run --rm -it --name openqa_webui -p 80:80 -p 873:873 binarysequence/openqa-webui bash
# then
root@container:~# /root/run_openqa.sh

worker

# Start the container with a bash shell and start the worker manually
docker run --privileged --rm -it --name openqa_worker --link openqa_webui:openqa-webui openqa-worker-x86_64 bash
# then
root@container:~# /usr/share/openqa/script/worker --verbose --instance 1
Clone this wiki locally