我的世界 基岩版:官方服务器配置与使用

我的世界 基岩版:官方服务器配置与使用,第1张

Commands

You can issue commands to the server by typing in the console. The following commands are available. <>means a parameter is required, [ ] means it's optional and | denotes different allowed values. Strings can be enclosed in double quotes, ", if they contain spaces.

Command syntax Description

kick <player name or xuid><reason>Immediately kicks a player. The reason will be shown on the kicked players screen.

stopShuts down the server gracefully.

save <hold | resume | query> Used to make atomic backups while the server is running. See the backup section for more information.

whitelist <on | off | list | reload>

on and off turns the whitelist on and off. Note that this does not change the value in the server.properties file!

list prints the current whitelist used by the server

reload makes the server reload the whitelist from the file.

See the Whitelist section for more information.

whitelist <add | remove><name>Adds or removes a player from the whitelist file. The name parameter should be the Xbox Gamertag of the player you want to add or remove. You don't need to specify a XUID here, it will be resolved the first time the player connects.

See the Whitelist section for more information.

permissions <list | reload>

list prints the current used operator list.

reload makes the server reload the operator list from the ops file.

See the Permissions section for more information.

op <player>

Promote a player to operator. This will also persist in permissions.json if the player is authenticated to XBL. If permissions.json is missing it will be created. If the player is not connected to XBL, the player is promoted for the current server session and it will not be persisted on disk. Defualt server permission level will be assigned to the player after a server restart.

deop <player>

Demote a player to member. This will also persist in permissions.json if the player is authenticated to XBL. If permissions.json is missing it will be created.

changesetting <setting><value>Changes a server setting without having to restart the server. Currently only two settings are supported to be changed, allow-cheats (true or false) and difficulty (0, peaceful, 1, easy, 2, normal, 3 or hard). They do not modify the value that's specified in server.properties.

Backups

The server supports taking backups of the world files while the server is running. It's not particularly friendly for taking manual backups, but works better when automated. The backup (from the servers perspective) consists of three commands.

Command Description

save hold This will ask the server to prepare for a backup. It’s asynchronous and will return immediately.

save query After calling save hold you should call this command repeatedly to see if the preparation has finished. When it returns a success it will return a file list (with lengths for each file) of the files you need to copy. The server will not pause while this is happening, so some files can be modified while the backup is taking place. As long as you only copy the files in the given file list and truncate the copied files to the specified lengths, then the backup should be valid.

save resume When you’re finished with copying the files you should call this to tell the server that it’s okay to remove old files again.

我们就先简要的介绍一下我的世界服务器吧!

我的世界,也就是Minecraft,是一款沙盒游戏,游戏的大背景设定为模拟的现实世界。整个游戏没有剧情,玩家在游戏中自由建设和破坏,透过像乐高一样的积木来组合与拼凑,轻而易举的就能制作出小木屋、城堡甚至城市,但是若再加上玩家的想象力,天空之城、地底都市都一样能够实现。玩家不仅可以创造房屋建筑,甚至可以创造属于自己的都市和世界,玩家可以通过自己创造的作品来体验上帝一般的感觉。在这款游戏里,不仅可以单人娱乐,还可以多人联机,玩家也可以安装一些模组来增加游戏趣味性。

在我的世界的多人游戏选项中,有“在本地网络查找”还有一个就是“添加服务器”功能了,在我的世界进入中国开始火爆时,我的世界服务器就诞生了,也开始是我的世界官方发布的服务端,紧接着,其它第三方发布的服务器也渐渐地进入了大家的视线。

********

我的世界服务器的几个重要组成部分

********

1、服务端,是服务器的重要组成部分,简单的来讲,服务端就是一种针对性的程序。所谓的针对性就是专门为某一客户端设立的程序。原则上来讲,服务端是不具备运算能力,因为服务端同时会与多个客户端建立连接,一旦服务端进行运算的话,就会占用大量的资源,从而影响到其他客户端的通信。所以服务端通常都只具备认证与传输数据功能。但是我的世界服务端一般都具有运算的能力,只不过占用资源不打罢了。

2、插件,是活跃服务器的工具,插件是一种遵循一定规范的应用程序接口编写出来的程序。其只能运行在程序规定的系统平台下(可能同时支持多个平台),而不能脱离指定的平台单独运行。因为插件需要调用原纯净系统提供的函数库或者数据。很多软件都有插件,插件有无数种。例如在IE中,安装相关的插件后,WEB浏览器能够直接调用插件程序,用于处理特定类型的文件。插件的定位是开发实现原纯净系统平台、应用软件平台不具备的功能的程序,其只能运行在程序规定的系统平台下(可能同时支持多个平台),而不能脱离指定的平台单独运行。因为插件需要调用原纯净系统提供的函数库或者数据。MC服务器插件需要配套的服务端来支持它,所以并不是必选组件。

3、模组,就是修改过的东西,在安装模组之后,可以改变游戏原本内容。它是游戏的一种修改或增强程序。就是将电脑游戏中的道具、武器、角色、敌人、事物、模式、故事情节等作出修改,又或是加入新的道具及事物,多见于第一人称射击游戏及即时战略游戏。部分服务端支持模组,但这不是必要的部分。

4、开服程序,就是开服器。它是一个软件,通过运行服务端来开启服务器。简单来讲,它就是一个工具,给你提供平台来运行服务端,因为服务端不是可视化的界面,你即使运行了服务端也看不到程序到底输出了什么,但是开服器是可以让你看到的。

5、地图,就是游戏的地图,玩MC的朋友你们知道的,我的世界里是一个世界一个世界的,把它放到服务器里来说就是地图啦!

方法/步骤

1概要思路:首先的步骤是先内网开服,保证让局域网内的小朋友可以一起玩,然后想办法通过相关网络辅助,让外网的人也能联机接入。开服包的使用:在我的世界论坛上下载客户端,解压本地。注意需要与我的世界客户端版本一样的。

2开服参数的设定:如果本地电脑配置一要太多人,默认是20人玩的。内网地址使用本地固定的地址,如果IP是自动分配的,可以使用自己的计算机名称。

3启动开服文件:大多数开服包的执行文件都是cmd或bat文件。双击执行。

4本地测试:我的世界客户端,在多人游戏下,使用刚刚开服地址联机接入,看看是否可以。出现信号表示内网开服成功了。在局域网内的小伙们可以通过开服地址进行一起联机玩。

5在开服端,或开服端所在内网,安装并使用nat123,通过它将自己开服地址转换为全世界人都可以联机的外网地址。添加映射,配置映射信息。内网地址,是本地开服地址。内网端口,是配置开服参数的内网端口,你映射后的外网地址和外网端口,通过外网地址进行多人游戏联机接入。

第一步、确定名字与主题

开服之初可以根据自己的喜好选择服务器的主题与名字,因为毕竟我的世界服务器还是你(服主)的世界,所以一开始的主题选择,关系到以后玩家在你服务器里面的玩法,建筑风格管理模式,如果你喜欢建造,可能你就不希望看到服务器里面刷怪塔林立。

第二步、服务器软件选择

我的世界服务器软件现在用得比较多的有两种,分别适合不同的游戏需求。我的世界官方版服务器优点:配置简单,拥有基本功能缺点:缺乏防盗等等的高级功能适合:朋友之间联机bukkit服务器优点:功能齐全,插件多样缺点:配置非常复杂,minecraft升级的时候不能同步更新适合:专业服务器

第三步、硬件配置

一般的玩家上限与内存的关系是:

500M - 3-5玩家

1G - 6-10玩家

2G - 15-20玩家

以上是linux服务器的数据


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/205301.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-04-03
下一篇2023-04-03

发表评论

登录后才能评论

评论列表(0条)

    保存