Error when trying to install Better MC modpack #3070
Replies: 2 comments 3 replies
-
you won't find the answer here, these repos is bullshit that haven't been updated for months and years, i tried some examples, ten or above, none of the examples worked. Of all that is here, only one works - simple, without mods, which I can run without Docker with one command in the console in each example you will find something like this:
|
Beta Was this translation helpful? Give feedback.
-
Did you figure anything out? I'm running into the same issue |
Beta Was this translation helpful? Give feedback.
-
Hello, I am trying to follow the documentation and download a modpack for my docker server. When I look to the logs it seems to run fine for the most part a couple excluded mods, but I hit this error:
2024-09-15 15:03:36 [mc-image-helper] 22:03:36.846 ERROR : 'install-curseforge' command failed. Version is 1.39.11
2024-09-15 15:03:36 reactor.core.Exceptions$ReactiveException: io.netty.channel.unix.Errors$NativeIoException: recvAddress(..) failed: Connection reset by peer
2024-09-15 15:03:36 at reactor.core.Exceptions.propagate(Exceptions.java:408)
2024-09-15 15:03:36 at reactor.core.publisher.BlockingSingleSubscriber.blockingGet(BlockingSingleSubscriber.java:101)
2024-09-15 15:03:36 at reactor.core.publisher.Mono.block(Mono.java:1712)
2024-09-15 15:03:36 at me.itzg.helpers.curseforge.CurseForgeInstaller.processModpack(CurseForgeInstaller.java:591)
2024-09-15 15:03:36 at me.itzg.helpers.curseforge.CurseForgeInstaller.resolveModpackFileAndProcess(CurseForgeInstaller.java:402)
2024-09-15 15:03:36 at me.itzg.helpers.curseforge.CurseForgeInstaller.installByRetrievingModpackZip(CurseForgeInstaller.java:264)
2024-09-15 15:03:36 at me.itzg.helpers.curseforge.CurseForgeInstaller.lambda$install$3(CurseForgeInstaller.java:183)
2024-09-15 15:03:36 at me.itzg.helpers.curseforge.CurseForgeInstaller.install(CurseForgeInstaller.java:220)
2024-09-15 15:03:36 at me.itzg.helpers.curseforge.CurseForgeInstaller.install(CurseForgeInstaller.java:182)
2024-09-15 15:03:36 at me.itzg.helpers.curseforge.InstallCurseForgeCommand.call(InstallCurseForgeCommand.java:213)
2024-09-15 15:03:36 at me.itzg.helpers.curseforge.InstallCurseForgeCommand.call(InstallCurseForgeCommand.java:29)
2024-09-15 15:03:36 at picocli.CommandLine.executeUserObject(CommandLine.java:2045)
2024-09-15 15:03:36 at picocli.CommandLine.access$1500(CommandLine.java:148)
2024-09-15 15:03:36 at picocli.CommandLine$RunLast.executeUserObjectOfLastSubcommandWithSameParent(CommandLine.java:2465)
2024-09-15 15:03:36 at picocli.CommandLine$RunLast.handle(CommandLine.java:2457)
2024-09-15 15:03:36 at picocli.CommandLine$RunLast.handle(CommandLine.java:2419)
2024-09-15 15:03:36 at picocli.CommandLine$AbstractParseResultHandler.execute(CommandLine.java:2277)
2024-09-15 15:03:36 at picocli.CommandLine$RunLast.execute(CommandLine.java:2421)
2024-09-15 15:03:36 at picocli.CommandLine.execute(CommandLine.java:2174)
2024-09-15 15:03:36 at me.itzg.helpers.McImageHelper.main(McImageHelper.java:159)
2024-09-15 15:03:36 Suppressed: java.lang.Exception: #block terminated with an error
2024-09-15 15:03:36 at reactor.core.publisher.BlockingSingleSubscriber.blockingGet(BlockingSingleSubscriber.java:103)
2024-09-15 15:03:36 ... 18 common frames omitted
2024-09-15 15:03:36 Caused by: io.netty.channel.unix.Errors$NativeIoException: recvAddress(..) failed: Connection reset by peer
2024-09-15 15:03:36 Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException:
2024-09-15 15:03:36 Assembly trace from producer [reactor.core.publisher.MonoOnErrorResume] :
2024-09-15 15:03:36 reactor.core.publisher.Mono.checkpoint(Mono.java:2190)
2024-09-15 15:03:36 me.itzg.helpers.curseforge.CurseForgeInstaller.lambda$processFileFromModpack$19(CurseForgeInstaller.java:749)
2024-09-15 15:03:36 Error has been observed at the following site(s):
2024-09-15 15:03:36 *__checkpoint() ⇢ at me.itzg.helpers.curseforge.CurseForgeInstaller.lambda$processFileFromModpack$19(CurseForgeInstaller.java:749)
2024-09-15 15:03:36 *___checkpoint ⇢ Downloading file from modpack 852465:5441091
2024-09-15 15:03:36 | checkpoint() ⇢ at me.itzg.helpers.curseforge.CurseForgeInstaller.lambda$processModpack$15(CurseForgeInstaller.java:588)
2024-09-15 15:03:36 Original Stack Trace:
2024-09-15 15:03:37 [init] ERROR failed to auto-install CurseForge modpack
Here is my docker compose:
services:
mc:
image: itzg/minecraft-server
tty: true
stdin_open: true
ports:
- "25565:25565"
environment:
TYPE: AUTO_CURSEFORGE
CF_API_KEY: **************************************************
CF_PAGE_URL: https://www.curseforge.com/minecraft/modpacks/better-mc-forge-bmc4/files/5699247
MEMORY: "8G"
EULA: "TRUE"
VERSION: "1.20.1"
volumes:
# attach the relative directory 'data' to the container's /data path
- C:\mc-data:/data
Beta Was this translation helpful? Give feedback.
All reactions