An open API service indexing awesome lists of open source software.

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

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
```