Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

一些更新 #211

Merged
merged 1 commit into from
Feb 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions docs/server/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,59 @@
如果您在连接到服务器时出错,请自行根据报错文案上网搜索或求助他人。
:::

## 基础知识

Minecraft 服务端,是 Minecraft 游戏本身一大组成部分。通俗来说,玩家游玩的 Minecraft 游戏本身就会连接到一个本地或远程服务器。

服务端需要完整的 Java 环境。

请注意,目前文档仅处理 Java 版服务端的问题,关于 Bedrock 版服务端的问题,您可以前往 [基岩版服务器下载](https://www.minecraft.net/zh-hans/download/server/bedrock) 了解更多。

:::tip
如果您对 Minecraft 服务端有较详细的理解,那么您不必完整阅读。
:::

## 服务端分类

与客户端不同的是,服务端有着大量的分支,因此我们只能在此处列举一部分

### 原版服务端

即由 Mojang 提供的最原始的服务端文件,可前往[官方网站](https://www.minecraft.net/zh-hans/download/server)
下载。

### 插件服务端

| 服务端名称 | 官网链接 | 开发者 |
| ---------- | --------------------------------------------------------- | ---------------------------------- |
| Bukkit | [Bukkit Forums](https://bukkit.org/) | SpigotMC,此前为The Bukkit Project |
| Spigot | [Spigot 官方网站](https://www.spigotmc.org/) | SpigotMC |
| Sponge | [Sponge 官方网站](https://spongepowered.org/) | Sponge |
| Paper | [PaperMC 官方网站](https://papermc.io/) | PaperMC |
| …… | …… | …… |

注:这里没有列出 Paper 和 Spigot 的分支服务器端。

### 模组服务端

| 服务端名称 | 官网链接 | 开发者 |
| ---------- | --------------------------------------------------------- | ---------------------------------- |
| Forge | [Forge Forums](https://forums.minecraftforge.net/) | MinecraftForge |
| Fabric | [Fabric 官方网站](https://fabricmc.net/) | FabricMC |
| …… | …… | …… |

### 混合服务端

即同时兼容插件和模组的服务端。

| 服务端名称 | 官网链接 | 开发者 | 兼容的模组端 | 兼容的插件端 |
| ------------| --------------------------------------------------------- | ---------------------------------- | ------------ | ------------ |
| SpongeForge | [Sponge 官方网站](https://spongepowered.org/) | Sponge | Forge | Sponge |
| Mohist | [Mohist 官方网站](https://mohistmc.com/) | MohistMC | Forge | Spigot |
| Arclight | [Arclight Github](https://github.com/IzzelAliz/Arclight) | IzzelAliz | Forge | Bukkit |
| CatServer | [CatServer Github](https://github.com/Luohuayu/CatServer) | Luohuayu | Forge | Spigot |
| …… | …… | …… |

## 日志文件的位置

客户端的崩溃通常会由启动器自动打包崩溃报告,但是服务端没有启动器,需要您自行寻找日志文件。
Expand Down
4 changes: 2 additions & 2 deletions docs/server/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
本页文档仍在编写,如果你感兴趣的话,可以帮助我们完善它!
:::

## Spigot 系服务端
## Bukkit 系服务端

### 通用问题

Expand All @@ -25,7 +25,7 @@ ServerMain ERROR Cannot access RandomAccessFile java.io. FileNotFoundException:
at java.base/java.io.RandomAccessFile.<init>(RandomAccessFile.java:127)
// 该处虽然只是表示了无权限写入 latest.log ,但一般情况下这意味着服务端没有所在文件夹的写入权限,除非您单独为 latest.log 设置了操作权限
```
### Spigot
### Spigot 及其衍生服务器端

### Paper 及其衍生服务器端

Expand Down
Loading