Replies: 7 comments 1 reply
-
|
Beta Was this translation helpful? Give feedback.
-
|
@pivotal-jamie-klassen I've updated issue description with that information. |
Beta Was this translation helpful? Give feedback.
-
|
there are only 6 lines of output in the linked logs - is that the whole log? |
Beta Was this translation helpful? Give feedback.
-
|
It's repeated few times (as I was trying few times), but there is no stack trace or anything |
Beta Was this translation helpful? Give feedback.
-
|
The only thing that seems to be happening in those logs is the worker is attempting to get some data from the atc - for example, the container sweeper is making a 'sweep-containers' request to the TSA, and the TSA is attempting to query the Before getting much more into it, what does your docker-compose file look like? Based on the More specifically, where is your database? |
Beta Was this translation helpful? Give feedback.
-
|
I'm running exactly this same docker-compose.yml with one modification - I've changed my more logs: https://pastebin.com/NfrDqk00 Sorry for not enough details My database is located on this same machine (remote machine) along with concourse |
Beta Was this translation helpful? Give feedback.
-
|
I'm not seeing a crash in the logs. 🤔 A crash to means Just a guess, but if it seems like it's crashing because of the (Gonna convert this to a discussion.) |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
iptables blocking fly port results in no error message and app crash
After redirecting to this URL
Steps to reproduce
docker-compose up -don remote machine (i.e. some VPS)8080(default concourse port)iptables -P INPUT DROP # Accept incomming TCP connections from eth0 on port 80 and 443 iptables -A INPUT -i eth0 -p tcp --dport 80 -j ACCEPT iptables -A INPUT -i eth0 -p tcp --dport 443 -j ACCEPTfly --target example login --concourse-url=<remote_url>on local machine (i.e. your computer)Expected results
Any error message would be displayed, the app should not crash
Actual results
The web page is showing
login successful!FLY CLI hangs out, kills concourse process
Docker logs: https://pastebin.com/nSfRr6Kt
Process restarts after few seconds
Additional context
The most unexpected thing there is a process being killed but this kind of request looks like an unhandled exception.
~/.flyrcis not being createdTriaging info
Beta Was this translation helpful? Give feedback.
All reactions