https://github.com/imabanana80/minecraft-server-setup
a repository with a bunch of commands and stuff to help setup minecraft servers easily and quickly
https://github.com/imabanana80/minecraft-server-setup
install-script minecraft paper server
Last synced: 9 months ago
JSON representation
a repository with a bunch of commands and stuff to help setup minecraft servers easily and quickly
- Host: GitHub
- URL: https://github.com/imabanana80/minecraft-server-setup
- Owner: Imabanana80
- Created: 2023-07-12T05:42:21.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-12T06:24:46.000Z (almost 3 years ago)
- Last Synced: 2025-05-31T01:14:58.273Z (about 1 year ago)
- Topics: install-script, minecraft, paper, server
- Language: Shell
- Homepage: https://imabanana80.com
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Minecraft Server Setup Stuff
a repository with a bunch of commands and stuff to help setup minecraft servers easily and quickly
## Basic Server Setup
### Install Java (17)
```
apt-get update && apt-get upgrade && apt install openjdk-17-jdk openjdk-17-jre && java -version
```
### Download Server.jar
Get url from : https://papermc.io/downloads/paper
```
wget
```
### Run server for the first time
```
java -jar .jar
```
### Download start.sh
```
wget https://raw.githubusercontent.com/Imabanana80/Minecraft-Server-Setup/main/files/start.sh
```
### Install Screen
```
apt update && apt install screen && screen -v
```