> ## Content Index
> Fetch the complete content index at: https://sgpublic.xyz/llms.txt
> Use this file to discover other available public pages before exploring further.

# Minecraft / 我的世界 基岩版 CentOS 7 开服教程
- URL: https://sgpublic.xyz/p/2021/05/6aac9cb1810a4800015335ea/
- Published: 2021-05-09T07:08:09.000Z
- Updated: 2021-05-09T07:08:09.000Z
- Author: Haven Madray
- Tags: 家庭娱乐与媒体, #wp-post

> 参考文章 [Minecraft / 我的世界 基岩版 CentOS 7 开服教程 - 哔哩哔哩专栏 (bilibili.com)](https://www.bilibili.com/read/cv2982307/?ref=sgpublic.xyz)

### 准备

这次我们主要讲的是在 CentOS 7 上运行 Minecraft Bedrock Server 。

首先，你的准备的东西有：

- 一台装有 CentOS 7 的VPS或者电脑
- SSH 软件

### 安装运行环境

安装 wget 和 unzip，若已安装跳过即可。

```
yum -y install wget unzip
```

从 GitHub 上获取 Pro 做的一个整合包并解压。

```
wget https://github.com/Sysca11/autopack/archive/bdsm.zip
unzip -q bdsm.zip
cd autopack-bdsm
unzip -q pack.zip
```

### 服务器文件获取

官方下载链接：[Bedrock Server Download | Minecraft](https://www.minecraft.net/en-us/download/server/bedrock?ref=sgpublic.xyz)

以 bedrock-server-1.11.4.2.zip 为例。

解压服务器文件

```
unzip -q bedrock-server-1.11.4.2.zip
```

启动服务器

```
LD_PRELOAD= ./ld-linux-x86-64.so.2 --inhibit-cache --library-path . ./bedrock_server
```