1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

GCPでパルワールドのサーバーを作成するTips

Last updated at Posted at 2024-04-03

想定読者

  • ある程度クラウドが分かる人orエンジニア
  • マイクラサーバーを建てたことがある人

サーバーの規模感など

  • 最大同時接続ユーザーが8人程度
  • サーバーにはパルワールドやりこみ勢ばっかり
  • パルワールドのバージョンはVer0.1.5.1

TL;DR

GCEの4c8tのcpuに32GBのRAM, 100GB程度のストレージを選ぶと良い。
palworldsettings.iniはこんな感じ

[/Script/Pal.PalGameWorldSettings]
OptionSettings=(Difficulty=None,DayTimeSpeedRate=1.000000,NightTimeSpeedRate=1.000000,ExpRate=1.500000,PalCaptureRate=1.200000,PalSpawnNumRate=0.650000,PalDamageRateAttack=1.000000,PalDamageRateDefense=1.000000,PlayerDamageRateAttack=1.000000,PlayerDamageRateDefense=1.000000,PlayerStomachDecreaceRate=1.000000,PlayerStaminaDecreaceRate=1.000000,PlayerAutoHPRegeneRate=1.000000,PlayerAutoHpRegeneRateInSleep=1.000000,PalStomachDecreaceRate=1.000000,PalStaminaDecreaceRate=1.000000,PalAutoHPRegeneRate=1.000000,PalAutoHpRegeneRateInSleep=1.000000,BuildObjectDamageRate=1.000000,BuildObjectDeteriorationDamageRate=0.000000,CollectionDropRate=1.000000,CollectionObjectHpRate=1.000000,CollectionObjectRespawnSpeedRate=1.000000,EnemyDropItemRate=1.000000,DeathPenalty=All,bEnablePlayerToPlayerDamage=False,bEnableFriendlyFire=False,bEnableInvaderEnemy=False,bActiveUNKO=False,bEnableAimAssistPad=True,bEnableAimAssistKeyboard=False,DropItemMaxNum=1000,DropItemMaxNum_UNKO=100,BaseCampMaxNum=30,BaseCampWorkerMaxNum=15,DropItemAliveMaxHours=1.000000,bAutoResetGuildNoOnlinePlayers=False,AutoResetGuildTimeNoOnlinePlayers=72.000000,GuildPlayerMaxNum=10,PalEggDefaultHatchingTime=4.300000,WorkSpeedRate=1.000000,bIsMultiplay=False,bIsPvP=False,bCanPickupOtherGuildDeathPenaltyDrop=False,bEnableNonLoginPenalty=True,bEnableFastTravel=True,bIsStartLocationSelectByMap=True,bExistPlayerAfterLogout=False,bEnableDefenseOtherGuildPlayer=False,CoopPlayerMaxNum=4,ServerPlayerMaxNum=10,ServerName="Default Palworld Server",ServerDescription="",AdminPassword="hoge",ServerPassword="huga",PublicPort=8211,PublicIP="",RCONEnabled=False,RCONPort=25575,Region="",bUseAuth=True,BanListURL="https://api.palworldgame.com/api/banlist.txt")

PalSpawnNumRateBaseCampMaxNumはかなりパフォーマンスに影響が出るので、値に注意してください

やることの流れ(あくまでTipsなので本記事で全ては説明しません。)

  • GCEでスペック構成を選ぶ
  • SSHでサーバーに接続しsteamCMDをインスコする
  • パルワールド用のライブラリなどなどを入れる
  • パルワールドのsettingファイルを弄る

手順については以下の記事がとても丁寧で詳しいのでそちらを見ていただくと良いと思います。

GCE

スクリーンショット 2024-04-03 18.29.47.png
(参照:https://cloud.google.com/compute/docs/machine-resource?hl=ja#n2d_machine_types)
このコスト最適化に特化した、E2ワークロードの4C8Tくらいで大体各使用率が誰もサーバーを使っていないときで30%前後、使ってるときで6,70%前後になります。

少し余裕が欲しい人は8C16Tとかにしておくと良いと思います。

メモリはパルワールドのサーバーが起動している間、ずっとリークし続けているので、

There are a few events which occur in the game, which are believed to cause memory leaks.

(参考:https://gist.github.com/Toakan/3c78a577c21a21fcc5fa917f3021d70e#memory-leak)
予算が許す限り32GBより大きいものを選ぶとsystemd再起動の頻度が少なくなります。

ストレージはsteamCMDに加えて、パルワールドのサーバーに必要なライブラリ、バックアップ等を入れることを想定すると50GBくらいあれば十分ですが、前述のようにメモリリークの影響からスワップ領域を作成しておくことが望ましいので、私は100GBくらいのストレージを用意してそのうちの20GBくらいをスワップに割り当てました。

systemd設定諸々

crontab

0 5,17 * * * /home/palworld/backup-palworld.sh
// 32GBなので、12時間に一回は再起動するようにしている。
30 5,17 * * * /home/palworld/restart-palworld.sh
0 * * * * /home/palworld/update-palworld.sh
  • backup-palworld.sh
#!/bin/bash

# Define source directory and backup directory
SOURCE_DIR="/home/palworld/.steam/SteamApps/common/PalServer/Pal/Saved"
BACKUP_DIR="/home/palworld/backup"
DATE=$(date +%Y%m%d_%H%M%S)

# Create a gzip compressed tarball
tar -czf "${BACKUP_DIR}/backup_${DATE}.tar.gz" -C "${SOURCE_DIR}" .

echo "Backup of ${SOURCE_DIR} completed at ${BACKUP_DIR}/backup_${DATE}.tar.gz"
  • restart-palworld.sh
#!/bin/bash
echo "Restart ."

sudo systemctl stop palworld-dedicated.service
sleep 5
sudo systemctl start palworld-dedicated.service
systemctl status palworld-dedicated.service
  • update-palworld.sh
#!/bin/bash

# Paths
Steamcmd="/home/palworld/.steam/steamcmd/steamcmd.sh"
install_dir="/home/palworld/.steam/SteamApps/common/PalServer"
service_name="palworld-dedicated.service"

echo "# Environment Check"
date

# Retrieve the current Build ID
OLD_Build=`$Steamcmd +force_install_dir $install_dir +login anonymous +app_status 2394010 +quit | grep -e "BuildID" | awk '{print $8}'`
echo "Current BuildID: $OLD_Build"

# Attempt to fetch the New Build ID using curl
NEW_Build=$(curl -s https://api.steamcmd.net/v1/info/2394010 | jq -r '.data["2394010"].depots.branches.public.buildid')

# Fallback to SteamCMD method if curl fails to retrieve data
if [ -z "$NEW_Build" ] || [ "$NEW_Build" = "null" ]; then
            echo "Failed to fetch New BuildID with curl. Resorting to SteamCMD."
            $Steamcmd +force_install_dir $install_dir +login anonymous +app_update 2394010 validate +quit > /dev/null
            NEW_Build=`$Steamcmd +force_install_dir $install_dir +login anonymous +app_status 2394010 +quit | grep -e "BuildID" | awk '{print $8}'`
fi

echo "Fetched New BuildID: $NEW_Build"

# Update the server if the Build IDs do not match
if [ "$OLD_Build" = "$NEW_Build" ]; then
            echo "No update required. Build numbers are identical."
    else
            echo "# Updating the game server..."
            $Steamcmd +force_install_dir $install_dir +login anonymous +app_update 2394010 validate +quit > /dev/null
            echo "Game server updated successfully to BuildID: $NEW_Build"
            echo "Restart ${service_name}."

            sudo systemctl stop $service_name
            sleep 5
            sudo systemctl start $service_name
            systemctl status $service_name
fi

PalworldSettings.ini

[/Script/Pal.PalGameWorldSettings]
OptionSettings=(Difficulty=None,DayTimeSpeedRate=1.000000,NightTimeSpeedRate=1.000000,ExpRate=1.500000,PalCaptureRate=1.200000,PalSpawnNumRate=0.650000,PalDamageRateAttack=1.000000,PalDamageRateDefense=1.000000,PlayerDamageRateAttack=1.000000,PlayerDamageRateDefense=1.000000,PlayerStomachDecreaceRate=1.000000,PlayerStaminaDecreaceRate=1.000000,PlayerAutoHPRegeneRate=1.000000,PlayerAutoHpRegeneRateInSleep=1.000000,PalStomachDecreaceRate=1.000000,PalStaminaDecreaceRate=1.000000,PalAutoHPRegeneRate=1.000000,PalAutoHpRegeneRateInSleep=1.000000,BuildObjectDamageRate=1.000000,BuildObjectDeteriorationDamageRate=0.000000,CollectionDropRate=1.000000,CollectionObjectHpRate=1.000000,CollectionObjectRespawnSpeedRate=1.000000,EnemyDropItemRate=1.000000,DeathPenalty=All,bEnablePlayerToPlayerDamage=False,bEnableFriendlyFire=False,bEnableInvaderEnemy=False,bActiveUNKO=False,bEnableAimAssistPad=True,bEnableAimAssistKeyboard=False,DropItemMaxNum=1000,DropItemMaxNum_UNKO=100,BaseCampMaxNum=30,BaseCampWorkerMaxNum=15,DropItemAliveMaxHours=1.000000,bAutoResetGuildNoOnlinePlayers=False,AutoResetGuildTimeNoOnlinePlayers=72.000000,GuildPlayerMaxNum=10,PalEggDefaultHatchingTime=4.300000,WorkSpeedRate=1.000000,bIsMultiplay=False,bIsPvP=False,bCanPickupOtherGuildDeathPenaltyDrop=False,bEnableNonLoginPenalty=True,bEnableFastTravel=True,bIsStartLocationSelectByMap=True,bExistPlayerAfterLogout=False,bEnableDefenseOtherGuildPlayer=False,CoopPlayerMaxNum=4,ServerPlayerMaxNum=10,ServerName="Default Palworld Server",ServerDescription="",AdminPassword="hoge",ServerPassword="huga",PublicPort=8211,PublicIP="",RCONEnabled=False,RCONPort=25575,Region="",bUseAuth=True,BanListURL="https://api.palworldgame.com/api/banlist.txt")

PalSpawnNumRateBaseCampMaxNumはかなりパフォーマンスに影響が出るので、値に注意してください。

また、ServerNameServerPassword, AdminPasswordの値は適宜変更することを強くおすすめします。

ラグ関連の対策

一応下記リンクを参考に設定してみましたが、効果は体感できませんでした。

# PalworldSettings.ini
[/Script/OnlineSubsystemUtils.IpNetDriver]
LanServerMaxTickRate=60

NetServerMaxTickRate=60

[/script/engine.player]

ConfiguredInternetSpeed=6250000

ConfiguredLanSpeed=6250000

[/script/socketsubsystemepic.epicnetdriver]

MaxClientRate=6250000

MaxInternetClientRate=6250000

[/script/engine.engine]

bSmoothFrameRate=false

bUseFixedFrameRate=true

SmoothedFrameRateRange=(LowerBound=(Type=Inclusive,Value=60.000000),UpperBound=(Type=Exclusive,Value=60.000000))

MinDesiredFrameRate=60.000000

FixedFrameRate=60.000000

参考

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?