Skip to content

Commit a6db476

Browse files
committed
updates
1 parent 9ba5889 commit a6db476

File tree

15 files changed

+285
-30
lines changed

15 files changed

+285
-30
lines changed

pages/bare_metal_cloud/virtual_private_servers/minecraft_server_on_vps/guide.de-de.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Sie können einen vorkonfigurierten Minecraft-Server mieten oder einen solchen s
2929
## In der praktischen Anwendung
3030

3131
> [!primary]
32-
> Diese Anleitung basiert auf der Minecraft Java Edition Version "1.21" und der OpenJDK Version "21.0.1".
32+
> Diese Anleitung basiert auf der Minecraft Java Edition Version "1.21" und der OpenJDK Version "24.0.1".
3333
>
3434
3535
### Schritt 1: Server vorbereiten
@@ -58,7 +58,7 @@ $ sudo apt install screen nano wget git
5858
Installieren Sie das Java-Paket:
5959

6060
```sh
61-
$ sudo apt install openjdk-21-jdk
61+
$ sudo apt install openjdk-24-jdk
6262
```
6363

6464
Um Sicherheitslücken in Ihrem System zu vermeiden, erstellen Sie einen Benutzer namens "minecraft", der die Server-Aktionen ausführen wird:
@@ -144,10 +144,27 @@ Sie können alternativ auch `Ctrl`{.action}, dann auf `a`{.action} und dann auf
144144

145145
Starten Sie den Server in der zuvor erstellten Shell "minecraft1" mit folgendem Befehl. (Verwenden Sie `ls`, um den Namen der Datei zu überprüfen, falls dieser abweicht.)
146146

147+
```sh
148+
~/server$ java -Xmx1024M -Xms1024M -jar server.jar nogui
149+
```
150+
151+
- `Xmx1024M`: Damit wird der Server so konfiguriert, dass er mit 1024 MB oder 1 GB RAM startet. Dieses Limit kann erhöht werden, wenn Sie möchten, dass Ihr Server mit mehr RAM startet.
152+
- `Xms1024M`: Dies lässt den Server maximal 1024M RAM verwenden. Sie können dieses Limit erhöhen, wenn Sie möchten, dass Ihr Server mit mehr RAM läuft, um mehr Spieler unterzubringen oder wenn Sie das Gefühl haben, dass Ihr Server langsam läuft.
153+
- `jar`: Gibt die jar-Datei des Servers an, die ausgeführt werden soll.
154+
- `nogui`: Damit wird dem Server mitgeteilt, dass er keine grafische Benutzeroberfläche starten soll.
155+
156+
Sie können auch den folgenden Befehl verwenden:
157+
147158
```sh
148159
~/server$ java -jar server.jar
149160
```
150161

162+
Sobald der Server läuft, erhalten Sie das folgende Ergebnis:
163+
164+
```console
165+
[14:52:58] [Server thread/INFO]: Done (41.530s)! For help, type "help"
166+
```
167+
151168
Um Ihren Server anzuhalten, geben Sie den Befehl `stop` ein.
152169

153170
### Schritt 3: Mit dem Server verbinden

pages/bare_metal_cloud/virtual_private_servers/minecraft_server_on_vps/guide.en-asia.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You can rent a pre-built Minecraft server or you can set it up yourself on a [VP
2828
## Instructions
2929

3030
> [!primary]
31-
> This tutorial is based on version "1.21" of Minecraft Java Edition and OpenJDK version "21.0.1".
31+
> This tutorial is based on version "1.21" of Minecraft Java Edition and OpenJDK version "24.0.1".
3232
>
3333
3434
### Step 1: Prepare the server
@@ -57,7 +57,7 @@ $ sudo apt install screen nano wget git
5757
Install the Java package:
5858

5959
```sh
60-
$ sudo apt install openjdk-21-jdk
60+
$ sudo apt install openjdk-24-jdk
6161
```
6262

6363
To avoid security vulnerabilities on your system, create a user named "minecraft" who will carry out the server actions:
@@ -140,10 +140,27 @@ You can also press `Ctrl`{.action}, then `a`{.action}, then `n`{.action} on your
140140

141141
In the previously created `minecraft1` shell, launch the Minecraft server with the following command. (Use `ls` to verify the filename in case it differs.)
142142

143+
```sh
144+
~/server$ java -Xmx1024M -Xms1024M -jar server.jar nogui
145+
```
146+
147+
- `Xmx1024M`: This sets the server to start up with 1024 MB or 1 GB of RAM. This limit can be increased if you want your server to start up with more RAM.
148+
- `Xms1024M`: This sets the server to use a maximum of 1024M RAM. You can increase this limit if you want your server to run with more RAM, to accommodate more players, or if you have the impression that your server is running slowly.
149+
- `jar`: Specifies which server jar file to run.
150+
- `nogui`: This instructs the server not to launch a GUI, since it's a server and you don't have a GUI.
151+
152+
Alternatively, you can use the command below instead:
153+
143154
```sh
144155
~/server$ java -jar server.jar
145156
```
146157

158+
Once the server is operational, you will get the following result:
159+
160+
```console
161+
[14:52:58] [Server thread/INFO]: Done (41.530s)! For help, type "help"
162+
```
163+
147164
To shut down your server, enter the command `stop`.
148165

149166
### Step 3: Connect to the server

pages/bare_metal_cloud/virtual_private_servers/minecraft_server_on_vps/guide.en-au.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You can rent a pre-built Minecraft server or you can set it up yourself on a [VP
2828
## Instructions
2929

3030
> [!primary]
31-
> This tutorial is based on version "1.21" of Minecraft Java Edition and OpenJDK version "21.0.1".
31+
> This tutorial is based on version "1.21" of Minecraft Java Edition and OpenJDK version "24.0.1".
3232
>
3333
3434
### Step 1: Prepare the server
@@ -57,7 +57,7 @@ $ sudo apt install screen nano wget git
5757
Install the Java package:
5858

5959
```sh
60-
$ sudo apt install openjdk-21-jdk
60+
$ sudo apt install openjdk-24-jdk
6161
```
6262

6363
To avoid security vulnerabilities on your system, create a user named "minecraft" who will carry out the server actions:
@@ -140,10 +140,27 @@ You can also press `Ctrl`{.action}, then `a`{.action}, then `n`{.action} on your
140140

141141
In the previously created `minecraft1` shell, launch the Minecraft server with the following command. (Use `ls` to verify the filename in case it differs.)
142142

143+
```sh
144+
~/server$ java -Xmx1024M -Xms1024M -jar server.jar nogui
145+
```
146+
147+
- `Xmx1024M`: This sets the server to start up with 1024 MB or 1 GB of RAM. This limit can be increased if you want your server to start up with more RAM.
148+
- `Xms1024M`: This sets the server to use a maximum of 1024M RAM. You can increase this limit if you want your server to run with more RAM, to accommodate more players, or if you have the impression that your server is running slowly.
149+
- `jar`: Specifies which server jar file to run.
150+
- `nogui`: This instructs the server not to launch a GUI, since it's a server and you don't have a GUI.
151+
152+
Alternatively, you can use the command below instead:
153+
143154
```sh
144155
~/server$ java -jar server.jar
145156
```
146157

158+
Once the server is operational, you will get the following result:
159+
160+
```console
161+
[14:52:58] [Server thread/INFO]: Done (41.530s)! For help, type "help"
162+
```
163+
147164
To shut down your server, enter the command `stop`.
148165

149166
### Step 3: Connect to the server

pages/bare_metal_cloud/virtual_private_servers/minecraft_server_on_vps/guide.en-ca.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You can rent a pre-built Minecraft server or you can set it up yourself on a [VP
2828
## Instructions
2929

3030
> [!primary]
31-
> This tutorial is based on version "1.21" of Minecraft Java Edition and OpenJDK version "21.0.1".
31+
> This tutorial is based on version "1.21" of Minecraft Java Edition and OpenJDK version "24.0.1".
3232
>
3333
3434
### Step 1: Prepare the server
@@ -57,7 +57,7 @@ $ sudo apt install screen nano wget git
5757
Install the Java package:
5858

5959
```sh
60-
$ sudo apt install openjdk-21-jdk
60+
$ sudo apt install openjdk-24-jdk
6161
```
6262

6363
To avoid security vulnerabilities on your system, create a user named "minecraft" who will carry out the server actions:
@@ -140,10 +140,27 @@ You can also press `Ctrl`{.action}, then `a`{.action}, then `n`{.action} on your
140140

141141
In the previously created `minecraft1` shell, launch the Minecraft server with the following command. (Use `ls` to verify the filename in case it differs.)
142142

143+
```sh
144+
~/server$ java -Xmx1024M -Xms1024M -jar server.jar nogui
145+
```
146+
147+
- `Xmx1024M`: This sets the server to start up with 1024 MB or 1 GB of RAM. This limit can be increased if you want your server to start up with more RAM.
148+
- `Xms1024M`: This sets the server to use a maximum of 1024M RAM. You can increase this limit if you want your server to run with more RAM, to accommodate more players, or if you have the impression that your server is running slowly.
149+
- `jar`: Specifies which server jar file to run.
150+
- `nogui`: This instructs the server not to launch a GUI, since it's a server and you don't have a GUI.
151+
152+
Alternatively, you can use the command below instead:
153+
143154
```sh
144155
~/server$ java -jar server.jar
145156
```
146157

158+
Once the server is operational, you will get the following result:
159+
160+
```console
161+
[14:52:58] [Server thread/INFO]: Done (41.530s)! For help, type "help"
162+
```
163+
147164
To shut down your server, enter the command `stop`.
148165

149166
### Step 3: Connect to the server

pages/bare_metal_cloud/virtual_private_servers/minecraft_server_on_vps/guide.en-gb.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You can rent a pre-built Minecraft server or you can set it up yourself on a [VP
2828
## Instructions
2929

3030
> [!primary]
31-
> This tutorial is based on version "1.21" of Minecraft Java Edition and OpenJDK version "21.0.1".
31+
> This tutorial is based on version "1.21" of Minecraft Java Edition and OpenJDK version "24.0.1".
3232
>
3333
3434
### Step 1: Prepare the server
@@ -57,7 +57,7 @@ $ sudo apt install screen nano wget git
5757
Install the Java package:
5858

5959
```sh
60-
$ sudo apt install openjdk-21-jdk
60+
$ sudo apt install openjdk-24-jdk
6161
```
6262

6363
To avoid security vulnerabilities on your system, create a user named "minecraft" who will carry out the server actions:
@@ -140,10 +140,27 @@ You can also press `Ctrl`{.action}, then `a`{.action}, then `n`{.action} on your
140140

141141
In the previously created `minecraft1` shell, launch the Minecraft server with the following command. (Use `ls` to verify the filename in case it differs.)
142142

143+
```sh
144+
~/server$ java -Xmx1024M -Xms1024M -jar server.jar nogui
145+
```
146+
147+
- `Xmx1024M`: This sets the server to start up with 1024 MB or 1 GB of RAM. This limit can be increased if you want your server to start up with more RAM.
148+
- `Xms1024M`: This sets the server to use a maximum of 1024M RAM. You can increase this limit if you want your server to run with more RAM, to accommodate more players, or if you have the impression that your server is running slowly.
149+
- `jar`: Specifies which server jar file to run.
150+
- `nogui`: This instructs the server not to launch a GUI, since it's a server and you don't have a GUI.
151+
152+
Alternatively, you can use the command below instead:
153+
143154
```sh
144155
~/server$ java -jar server.jar
145156
```
146157

158+
Once the server is operational, you will get the following result:
159+
160+
```console
161+
[14:52:58] [Server thread/INFO]: Done (41.530s)! For help, type "help"
162+
```
163+
147164
To shut down your server, enter the command `stop`.
148165

149166
### Step 3: Connect to the server

pages/bare_metal_cloud/virtual_private_servers/minecraft_server_on_vps/guide.en-ie.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You can rent a pre-built Minecraft server or you can set it up yourself on a [VP
2828
## Instructions
2929

3030
> [!primary]
31-
> This tutorial is based on version "1.21" of Minecraft Java Edition and OpenJDK version "21.0.1".
31+
> This tutorial is based on version "1.21" of Minecraft Java Edition and OpenJDK version "24.0.1".
3232
>
3333
3434
### Step 1: Prepare the server
@@ -57,7 +57,7 @@ $ sudo apt install screen nano wget git
5757
Install the Java package:
5858

5959
```sh
60-
$ sudo apt install openjdk-21-jdk
60+
$ sudo apt install openjdk-24-jdk
6161
```
6262

6363
To avoid security vulnerabilities on your system, create a user named "minecraft" who will carry out the server actions:
@@ -140,10 +140,27 @@ You can also press `Ctrl`{.action}, then `a`{.action}, then `n`{.action} on your
140140

141141
In the previously created `minecraft1` shell, launch the Minecraft server with the following command. (Use `ls` to verify the filename in case it differs.)
142142

143+
```sh
144+
~/server$ java -Xmx1024M -Xms1024M -jar server.jar nogui
145+
```
146+
147+
- `Xmx1024M`: This sets the server to start up with 1024 MB or 1 GB of RAM. This limit can be increased if you want your server to start up with more RAM.
148+
- `Xms1024M`: This sets the server to use a maximum of 1024M RAM. You can increase this limit if you want your server to run with more RAM, to accommodate more players, or if you have the impression that your server is running slowly.
149+
- `jar`: Specifies which server jar file to run.
150+
- `nogui`: This instructs the server not to launch a GUI, since it's a server and you don't have a GUI.
151+
152+
Alternatively, you can use the command below instead:
153+
143154
```sh
144155
~/server$ java -jar server.jar
145156
```
146157

158+
Once the server is operational, you will get the following result:
159+
160+
```console
161+
[14:52:58] [Server thread/INFO]: Done (41.530s)! For help, type "help"
162+
```
163+
147164
To shut down your server, enter the command `stop`.
148165

149166
### Step 3: Connect to the server

pages/bare_metal_cloud/virtual_private_servers/minecraft_server_on_vps/guide.en-sg.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You can rent a pre-built Minecraft server or you can set it up yourself on a [VP
2828
## Instructions
2929

3030
> [!primary]
31-
> This tutorial is based on version "1.21" of Minecraft Java Edition and OpenJDK version "21.0.1".
31+
> This tutorial is based on version "1.21" of Minecraft Java Edition and OpenJDK version "24.0.1".
3232
>
3333
3434
### Step 1: Prepare the server
@@ -57,7 +57,7 @@ $ sudo apt install screen nano wget git
5757
Install the Java package:
5858

5959
```sh
60-
$ sudo apt install openjdk-21-jdk
60+
$ sudo apt install openjdk-24-jdk
6161
```
6262

6363
To avoid security vulnerabilities on your system, create a user named "minecraft" who will carry out the server actions:
@@ -140,10 +140,27 @@ You can also press `Ctrl`{.action}, then `a`{.action}, then `n`{.action} on your
140140

141141
In the previously created `minecraft1` shell, launch the Minecraft server with the following command. (Use `ls` to verify the filename in case it differs.)
142142

143+
```sh
144+
~/server$ java -Xmx1024M -Xms1024M -jar server.jar nogui
145+
```
146+
147+
- `Xmx1024M`: This sets the server to start up with 1024 MB or 1 GB of RAM. This limit can be increased if you want your server to start up with more RAM.
148+
- `Xms1024M`: This sets the server to use a maximum of 1024M RAM. You can increase this limit if you want your server to run with more RAM, to accommodate more players, or if you have the impression that your server is running slowly.
149+
- `jar`: Specifies which server jar file to run.
150+
- `nogui`: This instructs the server not to launch a GUI, since it's a server and you don't have a GUI.
151+
152+
Alternatively, you can use the command below instead:
153+
143154
```sh
144155
~/server$ java -jar server.jar
145156
```
146157

158+
Once the server is operational, you will get the following result:
159+
160+
```console
161+
[14:52:58] [Server thread/INFO]: Done (41.530s)! For help, type "help"
162+
```
163+
147164
To shut down your server, enter the command `stop`.
148165

149166
### Step 3: Connect to the server

pages/bare_metal_cloud/virtual_private_servers/minecraft_server_on_vps/guide.en-us.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You can rent a pre-built Minecraft server or you can set it up yourself on a [VP
2828
## Instructions
2929

3030
> [!primary]
31-
> This tutorial is based on version "1.21" of Minecraft Java Edition and OpenJDK version "21.0.1".
31+
> This tutorial is based on version "1.21" of Minecraft Java Edition and OpenJDK version "24.0.1".
3232
>
3333
3434
### Step 1: Prepare the server
@@ -57,7 +57,7 @@ $ sudo apt install screen nano wget git
5757
Install the Java package:
5858

5959
```sh
60-
$ sudo apt install openjdk-21-jdk
60+
$ sudo apt install openjdk-24-jdk
6161
```
6262

6363
To avoid security vulnerabilities on your system, create a user named "minecraft" who will carry out the server actions:
@@ -140,10 +140,27 @@ You can also press `Ctrl`{.action}, then `a`{.action}, then `n`{.action} on your
140140

141141
In the previously created `minecraft1` shell, launch the Minecraft server with the following command. (Use `ls` to verify the filename in case it differs.)
142142

143+
```sh
144+
~/server$ java -Xmx1024M -Xms1024M -jar server.jar nogui
145+
```
146+
147+
- `Xmx1024M`: This sets the server to start up with 1024 MB or 1 GB of RAM. This limit can be increased if you want your server to start up with more RAM.
148+
- `Xms1024M`: This sets the server to use a maximum of 1024M RAM. You can increase this limit if you want your server to run with more RAM, to accommodate more players, or if you have the impression that your server is running slowly.
149+
- `jar`: Specifies which server jar file to run.
150+
- `nogui`: This instructs the server not to launch a GUI, since it's a server and you don't have a GUI.
151+
152+
Alternatively, you can use the command below instead:
153+
143154
```sh
144155
~/server$ java -jar server.jar
145156
```
146157

158+
Once the server is operational, you will get the following result:
159+
160+
```console
161+
[14:52:58] [Server thread/INFO]: Done (41.530s)! For help, type "help"
162+
```
163+
147164
To shut down your server, enter the command `stop`.
148165

149166
### Step 3: Connect to the server

0 commit comments

Comments
 (0)