Turnkey Buster

I was having an issue with MariaDB and nothing I did fixed it so I decided to do a fresh install since it had been maybe a couple years since I have done that. I need to figure out how to install Java11 and Java8 so all my server sill run?

Follow the descritpions outlined here: Upgrading to Java 16 from the MineOS Turnkey ISO

just adapt it to mirror the java versions you need. The later releases of MineOS (remember to update after install if you use an ISO) also supports adjusting what java version each minecraf server runs.

I can’t get my forge server to start, will not even change logs to why it will not start

my guess I didn’t get Java8 installed right

Only took three days, I figured out how to do this an easy way, at least to me.

mkdir /usr/lib/jvm
cd /usr/lib/jvm
I could figure out wget so I copied file in directory
tar -xvzf /usr/lib/jvm/jdk-8u311-linux-x64.tar.gz
update-alternatives --install “/usr/bin/java” “java” “/usr/lib/jvm/jdk1.8.0_311/bin/java” 1
update-alternatives --install “/usr/bin/javac” “javac” “/usr/lib/jvm/jdk1.8.0_311/bin/javac” 1
update-alternatives --list java
update-alternatives --list javac

2 Likes