Minecraft服务器的创建和配置

Minecraft服务器的创建和配置

Serendy Magician

本文暂不考虑插件服务器,因为都是自己人玩,插件服麻烦

服务器搭建(Windows)

原版服务端

Java Edition原版服务端核心 到这里找到对应版本的核心服务端,然后按照官网教程 做好启动脚本,就可以成功搭建一个原版服务端了。

注意:请注意自己的Java版本和游戏所支持的Java版本的对应,否则会出现无法加载主类的报错。

Forge服务端

在PCL上手动安装部分下载对应版本的Forge,选择Install for Server,然后再选择服务器所需要安装的路径就可以安装成功了。

Fabric服务端

和Forge服务端操作类似,很简单就可以安装。

注:有的版本Fabric端可以进Forge服务器而有的版本不行

Bedrock Edition服务端

官网 下载服务端,解压即用

服务器配置

server.properties各字段作用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#Minecraft server properties
#Fri Jun 14 17:21:18 CST 2024

# 是否启用JMX监控
enable-jmx-monitoring=false

# RCON(远程控制台)端口
rcon.port=25575

# 世界生成种子
level-seed=-8723366411114572095

# 游戏模式(生存模式)
gamemode=survival

# 是否启用命令方块
enable-command-block=true

# 是否启用查询
enable-query=false

# 自定义世界生成设置
generator-settings={}

# 是否强制使用安全配置文件
enforce-secure-profile=true

# 世界名称
level-name=world

# MOTD(消息通知)内容
motd=养老生存服务器

# 查询端口
query.port=25565

# 是否开启PVP
pvp=true

# 是否生成结构
generate-structures=true

# 最大链式邻居更新次数
max-chained-neighbor-updates=1000000

# 游戏难度(困难)
difficulty=hard

# 网络压缩阈值
network-compression-threshold=256

# 最大每tick时间(毫秒)
max-tick-time=60000

# 是否要求使用资源包
require-resource-pack=false

# 是否使用原生传输
use-native-transport=true

# 最大玩家数量
max-players=8

# 是否在线模式
online-mode=false

# 是否启用服务器状态查询
enable-status=true

# 是否允许飞行
allow-flight=true

# 初始禁用包
initial-disabled-packs=

# 是否向管理员广播RCON消息
broadcast-rcon-to-ops=true

# 视距
view-distance=16

# 服务器IP地址
server-ip=

# 资源包提示
resource-pack-prompt=

# 是否允许进入下界
allow-nether=true

# 服务器端口
server-port=25565

# 是否启用RCON
enable-rcon=false

# 是否同步区块写入
sync-chunk-writes=true

# 管理员权限等级
op-permission-level=4

# 是否阻止代理连接
prevent-proxy-connections=false

# 是否隐藏在线玩家
hide-online-players=false

# 资源包URL
resource-pack=

# 实体广播范围百分比
entity-broadcast-range-percentage=100

# 模拟距离
simulation-distance=12

# RCON密码
rcon.password=

# 玩家空闲超时时间(分钟)
player-idle-timeout=0

# 是否强制游戏模式
force-gamemode=false

# 速率限制
rate-limit=0

# 是否为极限模式
hardcore=false

# 是否启用白名单
white-list=false

# 是否向管理员广播控制台消息
broadcast-console-to-ops=true

# 是否生成NPC
spawn-npcs=true

# 是否生成动物
spawn-animals=true

# 功能权限等级
function-permission-level=2

# 初始启用包
initial-enabled-packs=vanilla

# 世界类型
level-type=minecraft\:normal

# 文本过滤配置
text-filtering-config=

# 是否生成怪物
spawn-monsters=true

# 是否强制白名单
enforce-whitelist=false

# 出生保护区块半径
spawn-protection=0

# 资源包SHA1校验码
resource-pack-sha1=

# 最大世界大小
max-world-size=29999984

  • Title: Minecraft服务器的创建和配置
  • Author: Serendy
  • Created at : 2024-06-14 14:58:12
  • Updated at : 2024-06-14 19:31:00
  • Link: https://mapleqian.github.io/2024/06/14/Minecraft服务器的创建和配置/
  • License: This work is licensed under CC BY-NC-SA 4.0.
Comments