Paper Minecraft 24/7 Always Free Cloud Hosted Server

Опубликовано: 09 Ноябрь 2022
на канале: TechTutelage
2,268
43

Build your own Always Free Paper Minecraft Server on Oracle Cloud Free Tier instance available 24/7, install and load plugin from Bukkit, use tmux to keep your server running even if you are not logged in the terminal.

🔔 SUBSCRIBE: If you find my videos helpful, you can support me by subscribing and leaving a comment.    / @techtute  

-Timeline
00:00 Paper Minecraft Server
00:25 Create Always Free Virtual Server OCI
03:15 Install Java 17 on Oracle Linux
04:30 Open Ports 25565 Linux Firewall and OCI Console
05:40 Download and Install Paper Server
08:13 Install tmux and Start Paper in Terminal Session
09:30 Download and Install Plugin from Bukkit
12:33 Fix Running Paper Server as Administrator Warning

-Commands Used in The Video
sudo su && cd ~
wget https://download.java.net/java/GA/jdk...
tar xvf openjdk-17.0.2_linux-aarch64_bin.tar.gz
mv jdk-17.0.2/ /opt/jdk-17/
nano /etc/profile.d/jdk.sh
export JAVA_HOME=/opt/jdk-17
export PATH=$PATH:$JAVA_HOME/bin
source /etc/profile.d/jdk.sh
java --version
firewall-cmd --zone=public --permanent --add-port=25565/tcp
firewall-cmd --reload
mkdir /opt/papermc && cd /opt/papermc
wget https://api.papermc.io/v2/projects/pa...
java -Xms16G -Xmx20G -jar paper-1.19.2-263.jar nogui
yum install tmux
tmux new -s papermc
tmux ls
tmux a -t papermc
ctrl+b d - detach from session
ctrl+b x - kill session