Replies: 3 comments
-
Thanks for sharing. I’m going to convert this to a discussion so it doesn’t get closed out. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks @AnyOfYou! This was causing me an issue this morning and sure enough your temporary fix got me going again as well. |
Beta Was this translation helpful? Give feedback.
0 replies
-
+1ok with:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I have a old linux server(Ubuntu 16.04 with glibc 2.23) running bedrock server with this project for years. Today when i try to pull the latest image and update the server version, it ends quickly with this error 'Download error with curl: (6) getaddrinfo() thread failed to start', the debug log is down below.
Details
++ pwd
current directory is /data
Looking up latest version...
++ restify --user-agent=itzg/minecraft-bedrock-server --headers 'accept-language:*' --attribute=data-platform=serverBedrockLinux https://www.minecraft.net/en-us/download/server/bedrock
++ jq -r '.[0].href'
++ basename https://minecraft.azureedge.net/bin-linux/bedrock-server-1.20.32.03.zip
Downloading Bedrock server version 1.20.32.03 ...
curl: (6) getaddrinfo() thread failed to start
Its weird because the previous step (use restify to get latest server version) is successful, and i could download the zip file no problem with curl command on my server manually, the network of my server is okay.
So I go dig more about this issue, and found some related posts, u could read more at here and here. Although the details may have some differents, but I believe this issue is related with system's glibc version/docker/curl.
My temporary fix is add "--security-opt seccomp=unconfined" option with docker run command, its succeed, so I shard this finding to help.
Beta Was this translation helpful? Give feedback.
All reactions