FTB (Self Hosted) - Startup Errors - Logs included

  • Tech Support section is for getting help with FTB related problems. If there's a repeatable issue that can be labeled as a bug, then please use the issue tracker for the pack or the app at GitHub issue trackers - If there's no repository for a pack that means that the pack is old and/or will not be updated. Bugs for older packs will not be fixed, unless they are critical.
  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

soyboy911

New Member
Sep 6, 2021
1
0
2
The server seems to be working fine but there are lots of errors, basically Java exceptions (I run it server side with openjdk-11, client side jre8).
People don't seem to have problems, but my suspicion is they might affect or deactivate otherwise good mods.
This is my first post, excuse me for breaking any conventions.

Startup paste client side (MultiMC):
https://paste.ee/p/CWyvU

Server start log:
http://ftb.oakheim.com/paste.txt
^ started up an nginx webserver real quick since it was too large for paste.ee or pastebin

I'm using the usual startup script with the following content:
Bash:
#!/bin/sh
if ! grep -q "eula=true" eula.txt; then
    echo "Do you agree to the Mojang EULA available at https://account.mojang.com/documents/minecraft_eula ?"
    read  -n 1 -p "[y/n] " EULA
    if [ "$EULA" = "y" ]; then
        echo "eula=true" > eula.txt
        echo
    fi
fi
java -XX:+UseG1GC -XX:+UnlockExperimentalVMOptions -Xmx5120M -Xms4096M -jar forge-1.15.2-31.2.33.jar nogui

Apprecite your help, stay healthy.

Kind regards