diff --git a/docs/server/index.md b/docs/server/index.md index be079524..925f16c4 100644 --- a/docs/server/index.md +++ b/docs/server/index.md @@ -53,11 +53,12 @@ Minecraft 服务端,是 Minecraft 游戏本身一大组成部分。通俗来 ### 模组服务端 -| 服务端名称 | 官网链接 | 开发者 | -| ---------- | --------------------------------------------------------- | ---------------------------------- | +| 服务端名称 | 官网链接 | 开发者 | +| ---------- | --------------------------------------------------------- | ---------------------------------- | | Forge | [Forge Forums](https://forums.minecraftforge.net/) | MinecraftForge | | Fabric | [Fabric 官方网站](https://fabricmc.net/) | FabricMC | -| …… | …… | …… | +| NeoForge | [NeoForge官网](https://neoforged.net/) | NeoForged Foundation | +| …… | …… | …… | ### 混合服务端 diff --git a/docs/server/proxy.md b/docs/server/proxy.md index f198b5bc..af475c15 100644 --- a/docs/server/proxy.md +++ b/docs/server/proxy.md @@ -7,3 +7,26 @@ ## BungeeCord 及其衍生服务端 ## Velocity 及其衍生服务端 + +### 无法链接到后端服务器 + +解释:Velocity 无法链接到你设定的服务器上。 + +解决方案:检查后端服务器是否开启,或检查配置文件中的链接地址是否正确。 + +关键词: +``` +io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: +Caused by: java.net.ConnectException: Connection refused: no further information +``` + +### 后端服务器正版验证未关闭 + +解释:后端服务器开启了正版验证 + +解决方案:打开服务端所在目录下的 `server.properties`,修改 `online-mode` 的值为 `false`。 + +关键词: +``` +java.lang.IllegalStateException: Backend server is online-mode! +``` \ No newline at end of file