Logs can be found in the directory /var/log/kolla/
/var/log/kolla/
You can also view the stdout of each container by running docker logs -f container_name
stdout
docker logs -f container_name
Each service is running in its own container, so the commands aren't available natively on the host.
Instead, you can run the commands using docker exec
docker exec
For example, for openvswitch commands: docker exec openvswitch_db ovs-vsctl show
docker exec openvswitch_db ovs-vsctl show
Last updated 2 years ago