Runner logs are useful for troubleshooting issues such as provisioning, and expiring requests.
If you are running a self-hosted Axiom Runner, our support engineers do not have access to these logs, and we will need you to send them to us.
If you a running the Axiom Runner as a Docker container:
docker logs -f <container_name_or_id>
Replace <container_name_or_id>
with the actual name or ID of the container.
β
If you running the Runner in a virtual machine or other server:
sudo journalctl -u axiom-runner.service
If logs are configured to a specific file, use:
bash o tail -f /var/log/axiom-runner.log
Make sure to adjust the file path as needed.
β