Replies: 2 comments 5 replies
-
This isn't really the right forum to ask about server crashes. You should probably ask around on support communities specific to the mod loader. Container wise you can add whatever JVM args are needed and add additional port mappings, such as attaching a debugger. I can further help with that specifically if you still have questions there. |
Beta Was this translation helpful? Give feedback.
-
I might have the same thing. The server starts as I would expect it to, and mysteriously crashes after some time. It's gotten really regular by now. Without anything having been logged many seconds, it goes like this:
After that, I'd expect to get a crash report, but I don't have one. There is no information to work here for me. My compose file for reference: version: "3"
networks:
snowboard:
name: snowboard
external: true
services:
minecraft:
networks:
- snowboard
image: itzg/minecraft-server
container_name: minecraft
restart: unless-stopped
ports:
- 25565:25565
environment:
EULA: "TRUE"
tty: true
stdin_open: true
VERSION: 1.19.4
MOTD: "PlexSheep's personal server"
DIFFICULTY: normal
OPS: PlexSheep
ICON: https://static.cscherr.de/images/profile/profile.png
MAX_PLAYERS: 20
MAX_WORLD_SIZE: 65536 # radius in blocks to border
SPAWN_PROTECTION: 0
SERVER_NAME: PlexServ
MEMORY: 4G
TYPE: "PAPER"
UID: 1003
GID: 1005
# EssentialsX (needs preload) 9089, Vault, LuckPerms
SPIGET_RESOURCES: 28140,34315
DEBUG: true
DEBUG_MEMORY: true
DEBUG_EXEC: true
healthcheck:
test: mc-health
start_period: 1m
interval: 5s
retries: 20
volumes:
- /srv/minecraft/data:/data The solution? Update
I don't get it. |
Beta Was this translation helpful? Give feedback.
-
The problem:
DEBUG
,DEBUG_EXEC
andDEBUG_MEMORY
toTRUE
. Unfortunately there is no stack trace or other crash info.I'd really like to diagnose this because I want to start using world eaters and fancier storage systems which can be corrupted / damaged if chunks are suddenly unloaded.
The Big Question:
System:
log-8-5-23.log
Any ideas?
Beta Was this translation helpful? Give feedback.
All reactions