



























Is there any particular reason the major version was just bumped by... 25? Forgot a '1.'?
Looks like 1.21.7 is out. I had flagged the package with a PKGBUILD patch that got it running but it seems to be unstable. Crashes out after some time.
Pasting my patch that got it running for anyone else that wants to test it:
diff --git a/PKGBUILD b/PKGBUILD
index 2b2993f..2b70a94 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,8 +3,8 @@
# Contributer: sowieso <sowieso@dukun.de>
pkgname=minecraft-server
-pkgver=1.21.6
-_nonce=6e64dcabba3c01a7271b4fa6bd898483b794c59b
+pkgver=1.21.7
+_nonce=05e4b48fbc01f0385adb74bcff9751d34552486c
pkgrel=1
_mng_ver=1.0.4
pkgdesc="Minecraft server unit files, script, and jar"
@@ -21,7 +21,7 @@ install="${pkgname}.install"
source=("minecraft_server.${pkgver}n${_nonce:0:8}.jar"::"https://launcher.mojang.com/v1/objects/${_nonce}/server.jar"
"minecraft-server-${_mng_ver}.tar.gz"::"https://github.com/Edenhofer/minecraft-server/archive/refs/tags/v${_mng_ver}.tar.gz")
noextract=("minecraft_server.${pkgver}.jar")
-sha512sums=('ec3a239c91627b156a12944744c67acdd962346fee88922d5fcfde6a9440d62cb4f32121b32b541a15186ae60a050c42550fcb54e4bb285cc0b81a4bc4f3d97f'
+sha512sums=('6aa0cee9def31a60952c39bf59ccb2cab953436d92f927a4919138f2c9e14de6efe7dd80b7a2bc9c820cd9e77ee2a4845c7047b7d347e93cf512fc8c2ece7bf1'
'dd4d68ca061c97a1e3cb5c0bb68439f7d8d45b15092344f3c4dbd4f7f39fef433d566670ad440970061007d93055183b570c7bf98f09c111ecdf8ab0f208f556')
_game="minecraft"
Yes, I was running java 8 still :) thanks
@Alko89 You need to update your Java runtime. You apparently have an outdated Java version configured.
Tried to start my own minecraft server after a while again, but I'm getting
Exception in thread "main" java.lang.UnsupportedClassVersionError: net/minecraft/bundler/Main has been compiled by a more recent version of the Java Runtime (class file version 65.0), this version of the Java Runtime only recognizes class file versions up to 52.0
@Trevelian
Thanks for the quick fix! I accidentally broke it when hardening the script :|
Hello,
I dont know why but since I update my system and minecraft-server today, it seems that "minecraftd idle_server_daemon" is not running the command to list the user and so stop the server after the "IDLE_IF_TIME" even if player are online. I will try to find out why ;-)
@bronze Regarding the JDK issue, I feel uncomfortable removing the version requirement. I think the best approach would be to add versions to the provides of the jdk package such that the version criteria are fulfilled for this package. What do you think?
Concerning the Minecraft server management script, yes it indeed has been moved to its own repository. However, all the configuration is done during "build" time. To be specific, make configures everything. See the corresponding Makefile. Because it currently needs to be adapted to a specific server at build time, it does not make sense to package it on its own in a separate package.
The script really is just a small management script and IMHO it is not worth making some kind of pluggable library out of it that could be depended on. If you have an idea of how to provide a sensible management script package, I am happy to create and maintain it.
EDIT: In case you just want a dirty hack to not install the server but everything else, simply set /srv/minecraft to be ignored during installation by pacman, see https://wiki.archlinux.org/title/Pacman#Skip_files_from_being_installed_to_system .
I have JDK8 installed but this PKGBUILD still needs java-17-openjdk. I only need the script (and the minecraft user, etc. But not any of the servers). I see the management script has been moved to a dedicated repo. Is the management scrip in the AUR somewhere?
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。
To get an overview of the available options provided by the management script, be sure to have a look at the help page or read the according section on the ArchWiki article [1].
You can quit the console without shutting down the server by press ctrl+a d (first ctrl+a and after releasing the buttons press d; ctrl+b also works). This will detach your input from the server console. The attaching and detaching is done with tmux (previously GNU screen) since it lets you view and type into the console, send single commands to it and keep it alive without a connected user. Take a look at the the command overview at the ArchWiki [2] to get a feel for its power. (@carmelo12341)
[1] https://wiki.archlinux.org/title/Minecraft#Setup [2] https://wiki.archlinux.org/title/Tmux