-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
panic when running docker-compose up #23
Comments
Hey @sizgiyaev, It might be that you missed the step regarding key generation. From the
So, that'd mean that Please let me know if that helps! Thx |
@cirocosta That is not it, I've run Here's full stacktrace with 2 important messages from ATC:
|
it helped me |
Also experiencing this with MacOS - seems to be some kind of weirdness with Resolved with |
I rewrited keygen script because in modern systems ssh-keygen generated keys didn't work property with #!/usr/bin/env bash
set -e -u -x
mkdir -p keys/web keys/worker
openssl genpkey -algorithm RSA -out ./keys/web/tsa_host_key -pkeyopt rsa_keygen_bits:4096
ssh-keygen -y -f ./keys/web/tsa_host_key > ./keys/web/tsa_host_key.pub
openssl genpkey -algorithm RSA -out ./keys/web/session_signing_key -pkeyopt rsa_keygen_bits:4096
ssh-keygen -y -f ./keys/web/session_signing_key > ./keys/web/session_signing_key.pub
openssl genpkey -algorithm RSA -out ./keys/worker/worker_key -pkeyopt rsa_keygen_bits:4096
ssh-keygen -y -f ./keys/worker/worker_key > ./keys/worker/worker_key.pub
cp ./keys/worker/worker_key.pub ./keys/web/authorized_worker_keys
cp ./keys/web/tsa_host_key.pub ./keys/worker It is a temporary solution. |
Great, thanks for the workaround. |
I have also seen this issue on fedora, @tnwhitwell solution was simple and lightweight to get those keys generated easliy. |
Why no update concourse to work with it? |
@danielrs merge request has been merged. @sizgiyaev it seems to be working for you. So could you come back and close this issue if you are happy go lucky 👍 Cool and have a great one. |
I don't think that fixed the key issue.
|
@dzirg44 suggested had helped me to solve the issue, don't forget to re-create docker-machine if you're mapping generated keys as volumes |
concourse-web_1 | panic: runtime error: invalid memory address or nil pointer dereference
concourse-web_1 | [signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0xfe3485]
Any idea?
The text was updated successfully, but these errors were encountered: