I am fresh for docker and kong .
I have 2 ECS instances just call them “A” and “B” ;
I install docker and build kong 1.3 on “A” ;
The “B” has a postgressql ;
The I try to migrations kong on “A” linking to postgresql on “B”, like:
docker run --rm
-e “KONG_DATABASE=postgres”
-e “KONG_PG_HOST=10.47.136.45”
-e “KONG_PG_PORT=6506”
-e “KONG_PG_DATABASE=devauth”
-e “KONG_PG_USER=devauthdata”
-e “KONG_PG_PASSWORD=Paic1234#”
ay/kong:1.3 kong migrations bootstrap
it failed :
Error: [PostgreSQL error] failed to retrieve server_version_num: FATAL: password authentication failed for user “devauthdata”
but the username and password are valid !!!