I’m having problem when applying to EC2, everythin...
# replication-ask-ai
m
I’m having problem when applying to EC2, everything seems to work OK I supposed to but suddenly the proxy container in Docker keeps restarting and showing this error in logs. I’m pretty sure is something with the nginx server in the proxy container, but how can I fix that? Is there some problem with my is it to config? Here are the logs that keeps throwing forever
Copy code
2023/07/07 11:09:27 [emerg] 12#12: host not found in upstream "airbyte-webapp" in /etc/nginx/nginx.conf:17
nginx: [emerg] host not found in upstream "airbyte-webapp" in /etc/nginx/nginx.conf:17
BASIC_AUTH_USERNAME is set, requiring auth for user 'airbyte'
Adding password for user airbyte
starting nginx...
nginx version: nginx/1.25.1
2023/07/07 11:10:28 [emerg] 12#12: host not found in upstream "airbyte-webapp" in /etc/nginx/nginx.conf:17
nginx: [emerg] host not found in upstream "airbyte-webapp" in /etc/nginx/nginx.conf:17
BASIC_AUTH_USERNAME is set, requiring auth for user 'airbyte'
Adding password for user airbyte
starting nginx...
nginx version: nginx/1.25.1
2023/07/07 11:11:28 [emerg] 12#12: host not found in upstream "airbyte-webapp" in /etc/nginx/nginx.conf:17
nginx: [emerg] host not found in upstream "airbyte-webapp" in /etc/nginx/nginx.conf:17
BASIC_AUTH_USERNAME is set, requiring auth for user 'airbyte'
Adding password for user airbyte
starting nginx...
nginx version: nginx/1.25.1
2023/07/07 11:12:29 [emerg] 12#12: host not found in upstream "airbyte-webapp" in /etc/nginx/nginx.conf:17
nginx: [emerg] host not found in upstream "airbyte-webapp" in /etc/nginx/nginx.conf:17
BASIC_AUTH_USERNAME is set, requiring auth for user 'airbyte'
Adding password for user airbyte
starting nginx...
nginx version: nginx/1.25.1
2023/07/07 11:13:30 [emerg] 12#12: host not found in upstream "airbyte-webapp" in /etc/nginx/nginx.conf:17
nginx: [emerg] host not found in upstream "airbyte-webapp" in /etc/nginx/nginx.conf:17
BASIC_AUTH_USERNAME is set, requiring auth for user 'airbyte'
Adding password for user airbyte
starting nginx...
nginx version: nginx/1.25.1
2023/07/07 11:14:30 [emerg] 12#12: host not found in upstream "airbyte-webapp" in /etc/nginx/nginx.conf:17
nginx: [emerg] host not found in upstream "airbyte-webapp" in /etc/nginx/nginx.conf:17
BASIC_AUTH_USERNAME is set, requiring auth for user 'airbyte'
Adding password for user airbyte
starting nginx...
nginx version: nginx/1.25.1
k
A message from kapa.ai
Based on the logs you've provided, it seems like the Nginx server in the
airbyte-proxy
container is unable to find the
airbyte-webapp
host. This could be due to a misconfiguration in your Docker setup. One possible solution to this issue was mentioned in a [previous support conversation](https://airbytehq.slack.com/archives/C021JANJ6TY/p1668800589664159) on Slack. The user was able to resolve a similar issue by deleting the
container-name
properties and renaming
server
to
airbyte-server
in their Docker configuration. Here's the suggested fix: > Deleting the container-name properties and renaming server to airbyte-server fixed the issue for me and everything runs However, please note that this solution was specific to the user's setup and might not work in your case. If the issue persists, I would recommend reaching out to the Airbyte community on their [Slack channel](https://airbytehq.slack.com) or [forum](https://discuss.airbyte.io) for more specific assistance.