Hi Will, thanks for you time helping me figure this out.
_(I posted this reply a few minutes ago, but realized the wording was a bit awkward, so I'm replacing it with this post)_
I did see that ticket, and several others documenting similar problems, but none of them seemed to help.
The AWS Instance Type that I am trying to launch this on is a `t2.xlarge`, which has 4 "vCPUs" and 16GiB of Memory. As you can see in the properties file I'm using when running `setup.py`, I'm allocating 12,288 MB of the 16GiB to Gluu's applications. Unless I'm missing something fundamental about what a "vCPU" is, this should be plenty of power and memory for everything I selected to run.
Here's the output of checking on the LDAP server:
```
root@idp-dev:~# netstat -antlp | grep 1636 | grep LISTEN
tcp 0 0 127.0.0.1:1636 0.0.0.0:* LISTEN 4708/slapd
```
```
root@idp-dev:~# ps -ef | grep slapd`
ldap 4708 1 0 Apr27 ? 00:00:00 /opt/symas/lib64/slapd -u ldap -g ldap -h ldaps://127.0.0.1:1636/
root 6511 6246 0 11:33 pts/0 00:00:00 grep --color=auto slapd
```
So I tried restarting the services:
```
root@idp-dev:~# service oxauth stop
Stopping Jetty: OK
root@idp-dev:~# service identity stop
Stopping Jetty: OK
root@idp-dev:~# service oxauth start
Starting Jetty: . OK Fri Apr 28 11:11:40 UTC 2017
root@idp-dev:~# service identity start
Starting Jetty: . . OK Fri Apr 28 11:11:59 UTC 2017
```
Unfortunately, I am still getting the `503 SERVICE UNAVAILABLE` response to the `/identity/` endpoint.
`oxtrust.log` contains the same `Failed to load configuration from LDAP` message:
```
2017-04-28 11:11:55,572 INFO [main] [org.gluu.oxtrust.config.OxTrustConfiguration] (OxTrustConfiguration.java:206) - Loading configuration from LDAP...
2017-04-28 11:11:55,586 ERROR [main] [org.gluu.oxtrust.config.OxTrustConfiguration] (OxTrustConfiguration.java:240) - Failed to load configuration from LDAP
org.gluu.site.ldap.persistence.exception.EntryPersistenceException: Failed to find entry: ou=oxtrust,ou=configuration,inum=@!813D.9FF0.8BA3.6B8E!0002!C615.B4DF,ou=appliances,o=gluu
at org.gluu.site.ldap.persistence.LdapEntryManager.find(LdapEntryManager.java:259) ~[oxLdap-3.0.1.jar:?]
```