Palworld loves devouring RAM so I’m trying to get an idea of what everyone’s using to host for a few players. I’m wanting to figure out next steps for my box with 16GB of RAM.

I have a small server of 5 people. We’re all over the map and sometimes uses around 14GB of RAM. To keep things pseudo-stable, the game is in a loop to restart as soon as it crashes but I have concerns with this approach…

  • ZealotOfLuna@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    8 months ago

    How’re you all handling the auto restarts? I’m running my server off of a Linux box, and I was thinking of running a cron job to do the restarts, but couldn’t think of a way to check the server status from the command line.

    • cosmic_slate@dmv.socialOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      8 months ago

      My server is going full caveman mode with: while true; do <start palworld server command>; sleep 10; done