7
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

aws Lightsailでminecraftのサーバを立ち上げる

Posted at

1. インスタンス立ち上げ

スクリーンショット 2020-07-29 23.24.48.png スクリーンショット 2020-07-29 23.27.03.png スクリーンショット 2020-07-29 23.29.22.png スクリーンショット 2020-07-29 23.31.07.png

2. 設定と接続

スクリーンショット 2020-07-29 23.36.53.png スクリーンショット 2020-07-29 23.38.18.png スクリーンショット 2020-07-29 23.39.02.png スクリーンショット 2020-07-29 23.39.23.png スクリーンショット 2020-07-29 23.39.56.png スクリーンショット 2020-07-29 23.44.09.png スクリーンショット 2020-07-29 23.44.29.png スクリーンショット 2020-07-29 23.45.29.png スクリーンショット 2020-07-29 23.46.32.png スクリーンショット 2020-07-29 23.46.52.png
$ sudo apt -y update && sudo apt -y install default-jre screen
スクリーンショット 2020-07-29 23.49.44.png

3. マインクラフトサーバ起動

https://launcher.mojang.com/v1/objects/a412fd69db1f81db3f511c1463fd304675244077/server.jar

$ sudo mkdir /usr/games/minecraft
$ cd /usr/games/minecaft
$ sudo wget -O mcserver.jar https://launcher.mojang.com/v1/objects/a412fd69db1f81db3f511c1463fd304675244077/server.jar
$ sudo java -Xmx1G -Xms1G -jar mcserver.jar nogui
$ sudo chown ubuntu eula.txt
$ echo 'eula=true' > eula.txt
$ sudo java -Xmx1G -Xms1G -jar mcserver.jar nogui
スクリーンショット 2020-07-30 0.03.17.png

メモ

  • メモリ1GBプランだと今の最新バージョンではスペック不足で1人入っただけで落ちる
  • 1つ上のメモリ2GBのプランだと3人入っても余裕
7
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?