Replies: 1 comment 1 reply
-
Thanks for the information and research. I'll prefer to wait until OpenJDK/Temurin, etc includes a fix upstream. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My ram was defective. If you are receiving seemingly random SIGSEGV errors check your ram.
I have been attempting to run a Fabric Minecraft 1.21 server, first in Manjaro linux (Kernel 6.9) then in Debian (Kernel 6.1) and was having periodic SIGSEGV errors. I could sit in a world and wait, and it would crash in any amount of time from 2 minutes to an hour, but it would never stay up for more than an hour if someone was logged in. The exact same setup runs fine in Linus Mint (Kernel 5.15). I think that Linux kernel version 6 introduced an error with linking that breaks some Fabric functions. I managed to fix the issue for myself with the following Dockerfile:
FROM itzg/minecraft-server:latest
ENV LD_BIND_NOW=1
RUN wget https://chriswhocodes.com/hsdis/hsdis-amd64.so -P /opt/java/openjdk/lib
Beta Was this translation helpful? Give feedback.
All reactions