只需10步教你Centos7搭建MC服务器

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

  1. 安装java,不会网上很多。
  2. 下载spigot https://getbukkit.org/download/spigot
  3. 执行 java -jar spigot-1.12.2.jar
  4. 执行肯定是失败,因为需要同意eula.txt。
  • vim eula.txt 然后设置eula=true
  1. 再执行jar包
  2. 执行成功显示 Done!,此时需要删除进程,还需要配置。
  • jps -l 查看哪个PID,然后用kill -9 [PID]
  1. vim server.propertis
  • online-mode=false 设为 false 的被称为“盗版服务器”你懂的。
  • 端口server-port默认25565
  • 最大人数 max-players=20
  • 游戏模式 gamemode=0 1创造 0生存 2冒险模式3旁观者
  • 其他详细配置 https://minecraft-zh.gamepedia.com/index.php?title=Server.properties&variant=zh
  1. 防火墙放行25565端口
  • firewall-cmd --zone=public --add-port=25565/tcp --permanent
  • firewall-cmd --reload
  1. 让java进程后台执行,shell脚本
  • vim start.sh
#!/bin/sh
java -Xmx1G -jar spigot-1.12.2.jar &
  1. 启动 sh start.sh

转载于:https://my.oschina.net/u/2385255/blog/1631949

你可能感兴趣的:(只需10步教你Centos7搭建MC服务器)