FAQ

API Settings Issues

vRA is reachable via IP, but not via hostname

If the VM-Scheduler cannot reach the hostname of vRA but can reach it when entering the IP of vRA, you have to map the hostname to the ip within the VM-Scheduler Web app. Do this by adding the following to the docker-compose.yml file:

web:
    ...
    extra_hosts:
        - "vrahostname.com:123.456.78.90"
    ...

This is especially important to do when using oAuth, because if you are using the IP in your API settings, oAuth won't work.

Last Updated: