Installieren

  • Views Views: 2,844
  • Last updated Last updated:

Navigation

   Installieren
      Commands
      Configs
      Listener
  • Nukkit ist eine atombetriebene Server Software für die Minecraft: Bedrock Edition. Sie hat einige entscheidende Vorteile gegenüber anderer Server Softwares:
    • Nukkit wurde in Java geschrieben, es ist also schneller und viel stabiler.
    • Durch die benutzerfreundliche Struktur ist es einfach, zur Entwicklung von Nukkit beizutragen und Plugins von anderen Plattformen in Nukkit-Plugins zu übersetzen.

    Voraussetzungen

    1. Java 8 oder höher [Windows, Ubuntu, CentOS, OS X]
    2. Die Server jar Datei, die auf unserem Jenkins Server zu finden ist: https://ci.nukkitx.com/job/NukkitX/job/Nukkit/job/master/
    3. Die Nukkit Server jar Datei muss in einen leeren Ordner auf deinem Server hochgeladen werden.

    Installation

    Windows


    1. Füge den folgenden Text in eine Textdatei ein und speichere sie als start.bat im selben Ordner, wo sich deine nukkit-1.0-SNAPSHOT.jar Datei befindet:
    2. Code:
      @echo off
      java -Xms1G -Xmx1G -jar nukkit-1.0-SNAPSHOT.jar
      pause
    3. Führe einen Doppelklick auf die Datei aus.

    Linux


    1. Erstelle ein neues Start-Script (start.sh) im Ordner deines Servers, um die JAR Datei auszuführen:
      Bash:
      #!/bin/sh

      java -Xms1G -Xmx1G -jar nukkit-1.0-SNAPSHOT.jar
    2. Öffne das Terminal und führe folgenden Befehl im Ordner deines Servers aus:
      Bash:
      chmod +x start.sh
    3. Führe das Script aus:
    4. Bash:
      ./start.sh

    Mac OS X


    1. Erstelle ein neues Start-Script (start.command) im Ordner deines Servers, um die JAR Datei auszuführen:
      Bash:
      #!/bin/sh

      cd "$( dirname "$0" )"
      java -Xms512M -Xmx1G -jar nukkit-1.0-SNAPSHOT.jar
    2. Öffne das Terminal und tippe folgendes in die Befehlszeile: (kein Enter drücken!)
      Bash:
      chmod a+x
    3. Ziehe dein Start-Script in das Terminal. (Stelle sicher, das eine Lücke zwischen "chmod", "a+x" und deinem Start-Script ist.)
    4. Führe einen Doppelklick auf dein Start-Script aus.

    Multicraft

    Depending on your Minecraft host's configuration, you will have two ways to enable the use of Nukkit through Multicraft.

    • If there's already an option for Nukkit in the JAR file selection menu, you can simply select it and restart your server upon save. However, this may not be recommended if your host does not keep up to date with the latest Nukkit builds.
    • If you have access to upload custom server JARs (FTP), download the Nukkit JAR and enter in the name of the file via the JAR file input box located on the index of the panel. Some hosts may require you to rename your JAR to a specific name (like custom.jar) and then select it from the dropdown menu.

    Post-Installation

    After the nukkit-1.0-SNAPSHOT.jar has been run the first time, folders and config files will be created. You will need to edit these config files to have the server work properly in your environment.
    For information on:

    If the server is working incorrectly, be sure you have port forwarded and you have followed the steps closely. If you are having issues, you can create a help thread in the Nukkit forum or come chat to us on Discord.


    Plugins

    Check out our Resources section or Nukkit.ru to find a wide variety of plugins. If you cannot find what you are looking for, Pokkit offers limited compatibility with Spigot plugins.

    You can add your plugins by dropping the JAR file into your plugins folder in your server directory and restarting the server. If it does not work or if you see errors seek help on the Nukkit Forums or Discord.
  • Loading…
Top