Thanks Yuriy and hi Jose,
This is how I'm starting up the [sample app](https://github.com/GluuFederation/oxd-java-sample) om the vm host machine ...
```
mvn -Doxd.sample.skip-conf-file -Doxd.server.is-https -Doxd.server.host=myoxd.co.uk -Doxd.server.port=8443 -Doxd.server.op-host=https://mygluu.co.uk jetty:run
```
when I run this I get this output on the vm host ...
```
09:33:22.496 INFO oxd.sample.bean.OxdService OxdService.java:61- Attempting registration with settings: [opHost=https://mygluu.co.uk, host=myoxd.co.uk, port=8443, https-extension=true]
09:33:23.339 TRACE oxd.sample.bean.OxdService OxdService.java:273- Sending /setup-client request to oxd-https-extension with payload
{"scope":["openid","uma_protection"],"contacts":null,"op_host":"https://mygluu.co.uk","op_discovery_path":null,"authorization_redirect_uri":"https://localhost:8463/oidc/tokens.xhtml","post_logout_redirect_uri":"https://localhost:8463/oidc/post-logout.xhtml","protection_access_token":null,"redirect_uris":null,"response_types":["code"],"claims_redirect_uri":null,"client_id":null,"client_secret":null,"client_name":"sampleapp-client-extension-1528450402518","client_jwks_uri":null,"client_token_endpoint_auth_method":null,"client_request_uris":null,"client_frontchannel_logout_uris":null,"client_sector_identifier_uri":null,"ui_locales":null,"claims_locales":null,"acr_values":["auth_ldap_server"],"grant_types":null,"trusted_client":true,"oxd_rp_programming_language":null}
```
and then a bit further down ...
```
[org.apache.http.impl.client.DefaultHttpClient] I/O exception (java.net.SocketException) caught when connecting to the target host: Resource temporarily unavailable (connect failed)
2018-06-08 09:33:44,630 INFO [org.apache.http.impl.client.DefaultHttpClient] Retrying connect....
```
I can open https://localhost:8463/settings.xhtml and play with the settings, save and try again but no combinations seem to work.
I've edited the hosts file on the vm host to associate the "https://mygluu.co.uk" with the IP of that vm. I've also edited "/etc/hosts" on the vm that has OxD server on it similarly.
I've added a mapping on the hosts file on the vm host to the IP of the vm that has the OxD server on it.
so I can ping from vm host to OxD (both IP and the mapping).
.. from OxD server to vm host
.. from OxD server to Gluu Server (both IP and mapping)
.. from Gluu server to OxD server.
Any ideas?
thanks
Aidy