mbround18 / valheim-docker

Valheim Docker powered by Odin. The Valheim dedicated gameserver manager which is designed with resiliency in mind by providing automatic updates, world backup support, and a user friendly cli interface.
https://hub.docker.com/r/mbround18/valheim
BSD 3-Clause "New" or "Revised" License
772 stars 82 forks source link

Server starting up really slowly #903

Closed lucrenauld closed 2 months ago

lucrenauld commented 4 months ago

Hello there,

symptom : Server takes at least 60 minutes to start now. Stucking during Chainloader startup.

Tasks before incident : After a severe situation in game, I tried to copy my save locally to do a bit of cheating commands on it. After that I uploaded the new saves files (db and fwl) on server.

Things tried by myself : Update to 3.0.3 of valheim server. Roll back to old saves before copy. Restart server and host. Switched type from BepInExFull to BepInEx

Other things : I still can see the odin start process in my container. And my ciontainer doesn't log anymore after these lines :

[ODIN][INFO]: [valheim_server.log]: 07/28/2024 16:57:35: Starting to load scene:start.unity (169d7618616154c03be07e9ad3af5893)
[ODIN][INFO]: [valheim_server.log]: 07/28/2024 16:57:35: Set background loading budget to Normal
[ODIN][INFO]: [valheim_server.log]: 07/28/2024 16:57:39: Set background loading budget to High

Wait one hour

[ODIN][INFO]: [valheim_server.log]: Couldn't create a Convex Mesh from source mesh "default" within the maximum polygons limit (256). The partial hull will be used. Consider simplifying your mesh.
[ODIN][INFO]: [valheim_server.log]: The referenced script on this Behaviour (Game Object '<null>') is missing!
[ODIN][INFO]: [valheim_server.log]: The referenced script on this Behaviour (Game Object '<null>') is missing!
[ODIN][INFO]: [valheim_server.log]: Couldn't create a Convex Mesh from source mesh "default" within the maximum polygons limit (256). The partial hull will be used. Consider simplifying your mesh.
[ODIN][INFO]: [valheim_server.log]: [Message:   BepInEx] Chainloader startup complete

Versions :

Files :

mbround18 commented 3 months ago

maybe the mod is slow? i know it takes a bit to start up

lucrenauld commented 3 months ago

For me it's related to odin. Is there a way to preconfigure some things on Odin to make it start a bit faster ?

mbround18 commented 3 months ago

odin runs in sub 200ms and its runtime is only 4mb what are you seeing thats slow? thats why its built in rust vs something like python.

Odin Info with Log Name is just a log parser which watches logs for changes using inotify then logging them to stdout/stderr due to there being ~6 logs or so.

That waiting 1hr between log outputs, are you able to see if the log is generated before odin logs it out? that could be an odin issue vs mod issue and id be curious to see

lucrenauld commented 3 months ago

I don't know how I could verify it. I'm just reading docker container logs which are copied un valheim server log file.

mbround18 commented 3 months ago

docker compose exec valheim tail -f /home/steam/valheim/logs/*

and monitor odins log output as well

see if the logs appear at the same time

lucrenauld commented 3 months ago

I don't have more logs during the process tailing all logs on startup. Maybe setting up DEBUG_MODE to 1 as shown here could help ? Do I have to set it in the environment vars in docker compose ?

mbround18 commented 3 months ago

if you set that in your compose it will be very verbose and is an excellent debug tool

lucrenauld commented 3 months ago

I don't get more logs with this option enabled

mbround18 commented 3 months ago

what processor are you running on?

lucrenauld commented 3 months ago

Running on one single core of a AMD EPYC 7543P 32-Core Processor.

g-otn commented 3 weeks ago

Hello @mbround18, I haven't waited ~60 minutes to confirm it, but I believe I had the same issue.

I'm running the v3.0.6 (568696a2172b digest) container, with most recent Valheim version and no mods in an AWS EC2 instance.

In single-core instances types, the container never finishes startup while the CPU stays at 100%. Same startup log behavior.

Tried with:

In multi-core, it works normally.

Not sure if this is an issue with Valheim itself or this project.

docker-compose.yml:

"cap_add":
- "SYS_NICE"
"container_name": "valheim"
"environment":
  "AUTO_BACKUP": 1
  "AUTO_BACKUP_ON_SHUTDOWN": 1
  "AUTO_BACKUP_PAUSE_WITH_NO_PLAYERS": 1
  "NAME": "..."
  "PASSWORD": "..."
  "PLAYER_EVENT_NOTIFICATIONS": 1
  "PORT": 2456
  "PUBLIC": 1
  "TZ": "..."
  "WEBHOOK_INCLUDE_PUBLIC_IP": 1
  "WEBHOOK_URL": "..."
  "WORLD": "..."
"image": "mbround18/valheim:latest"
"ports":
- "2456-2458:2456-2458/udp"
"restart": "no"
"stop_grace_period": "2m"
"volumes":
- "/srv/valheim/backups:/home/steam/backups"
- "/srv/valheim/saves:/home/steam/.config/unity3d/IronGate/Valheim"
- "/srv/valheim/server:/home/steam/valheim"
mbround18 commented 3 weeks ago

Hey @g-otn

if you roll back to v3.0.3 does it start up quicker? In 3.0.6 i changed the logic around how i tail logs which is the only thing i can think of off the top of my head

https://github.com/mbround18/valheim-docker/commit/c390f6d6f3e0717c61cbeaa1bd4075556def52ed#diff-d66d88a5d8ec0be4e2b1d73fff473f3897fad056ebd719c474788f18df497af5R65-R94

I'm running the v3.0.6 (568696a2172b digest) container, with most recent Valheim version and no mods in an AWS EC2 instance.

g-otn commented 2 weeks ago

Hey @g-otn

if you roll back to v3.0.3 does it start up quicker? In 3.0.6 i changed the logic around how i tail logs which is the only thing i can think of off the top of my head

c390f6d#diff-d66d88a5d8ec0be4e2b1d73fff473f3897fad056ebd719c474788f18df497af5R65-R94

Same problem happens when using 3.0.3, server never starts (I've waited around 10 minutes) and stays at 100% cpu usage.

No startup webhook got triggered and I could not connect to the server.

docker-compose.yml ```yml "services": "valheim": "cap_add": - "SYS_NICE" "container_name": "valheim" "environment": "AUTO_BACKUP": 1 "AUTO_BACKUP_ON_SHUTDOWN": 1 "AUTO_BACKUP_PAUSE_WITH_NO_PLAYERS": 1 "DEBUG_MODE": "1" "NAME": "..." "PASSWORD": "..." "PLAYER_EVENT_NOTIFICATIONS": "1" "PORT": 2456 "PUBLIC": 1 "WEBHOOK_INCLUDE_PUBLIC_IP": 1 "WEBHOOK_URL": "..." "WORLD": "..." "TZ": "..." "image": "mbround18/valheim:3.0.3" "ports": - "2456-2458:2456-2458/udp" "restart": "no" "stop_grace_period": "2m" "volumes": - "/srv/valheim/backups:/home/steam/backups" - "/srv/valheim/saves:/home/steam/.config/unity3d/IronGate/Valheim" - "/srv/valheim/server:/home/steam/valheim" ```
docker compose logs ``` [ec2-user@ip-xxx valheim]$ docker compose logs -f -t valheim | 2024-11-06T05:42:14.493783799Z Wed Nov 6 02:42:14 AM -03 2024 - Valheim Server - Wed Nov 6 02:42:14 AM -03 2024 valheim | 2024-11-06T05:42:14.493820379Z Wed Nov 6 02:42:14 AM -03 2024 - Initializing your container... valheim | 2024-11-06T05:42:14.495324652Z steam valheim | 2024-11-06T05:42:14.496760034Z 111 valheim | 2024-11-06T05:42:14.510669314Z 1000 valheim | 2024-11-06T05:42:14.536752627Z ... valheim | 2024-11-06T05:42:14.543832598Z (standard_in) 1: syntax error valheim | 2024-11-06T05:42:14.545049659Z 2024-11-06 02:42:14 - [Valheim][INFO]: Total memory: 7.5i GB valheim | 2024-11-06T05:42:14.546027277Z 2024-11-06 02:42:14 - [Valheim][INFO]: Setting up file systems valheim | 2024-11-06T05:42:14.782408664Z usermod: no changes valheim | 2024-11-06T05:42:14.784314370Z 2024-11-06 02:42:14 - [Valheim][INFO]: Configuring Preset Env valheim | 2024-11-06T05:42:14.790694685Z export DEBUG_MODE="1" valheim | 2024-11-06T05:42:14.796800428Z export ODIN_CONFIG_FILE="/home/steam/valheim/config.json" valheim | 2024-11-06T05:42:14.803080531Z export ODIN_DISCORD_FILE="/home/steam/valheim/discord.json" valheim | 2024-11-06T05:42:14.809177903Z export SAVE_LOCATION="/home/steam/.config/unity3d/IronGate/Valheim" valheim | 2024-11-06T05:42:14.815425377Z export MODS_LOCATION="/home/steam/staging/mods" valheim | 2024-11-06T05:42:14.821663021Z export GAME_LOCATION="/home/steam/valheim" valheim | 2024-11-06T05:42:14.827691753Z export BACKUP_LOCATION="/home/steam/backups" valheim | 2024-11-06T05:42:14.834094628Z export NAME="..." valheim | 2024-11-06T05:42:14.840309541Z export PORT="2456" valheim | 2024-11-06T05:42:14.846743286Z export PUBLIC="1" valheim | 2024-11-06T05:42:14.853011219Z export UPDATE_ON_STARTUP="1" valheim | 2024-11-06T05:42:14.859217023Z export WEBHOOK_URL="..." valheim | 2024-11-06T05:42:14.865392876Z export WEBHOOK_STATUS_SUCCESSFUL="1" valheim | 2024-11-06T05:42:14.871678090Z export WEBHOOK_STATUS_FAILED="1" valheim | 2024-11-06T05:42:14.878018514Z export WEBHOOK_INCLUDE_PUBLIC_IP="1" valheim | 2024-11-06T05:42:14.884222267Z export AUTO_UPDATE="0" valheim | 2024-11-06T05:42:14.890576041Z export AUTO_BACKUP="1" valheim | 2024-11-06T05:42:14.896826525Z export AUTO_BACKUP_REMOVE_OLD="1" valheim | 2024-11-06T05:42:14.903143160Z export AUTO_BACKUP_DAYS_TO_LIVE="3" valheim | 2024-11-06T05:42:14.909479394Z export AUTO_BACKUP_ON_UPDATE="0" valheim | 2024-11-06T05:42:14.915696927Z export AUTO_BACKUP_ON_SHUTDOWN="1" valheim | 2024-11-06T05:42:14.922060091Z export AUTO_BACKUP_PAUSE_WITH_NO_PLAYERS="1" valheim | 2024-11-06T05:42:14.928119244Z export AUTO_BACKUP_SCHEDULE="*/15 * * * *" valheim | 2024-11-06T05:42:14.934566449Z export BEPINEX_RELEASES_URL="https://thunderstore.io/api/experimental/package/denikson/BepInExPack_Valheim/" valheim | 2024-11-06T05:42:14.940962824Z export SCHEDULED_RESTART_SCHEDULE="0 2 * * *" valheim | 2024-11-06T05:42:14.946964425Z export WORLD="..." valheim | 2024-11-06T05:42:14.953312999Z export PASSWORD="..." valheim | 2024-11-06T05:42:14.959869806Z export TYPE="Vanilla" valheim | 2024-11-06T05:42:14.965951448Z export TZ="..." valheim | 2024-11-06T05:42:14.972241302Z export PUID="111" valheim | 2024-11-06T05:42:14.978363585Z export PGID="1000" valheim | 2024-11-06T05:42:14.980470633Z 2024-11-06 02:42:14 - [Valheim][INFO]: Preset Env Configured valheim | 2024-11-06T05:42:14.980601094Z Setting up cron job: auto-backup valheim | 2024-11-06T05:42:14.983413628Z */15 * * * * BASH_ENV=/env.sh /bin/bash /home/steam/scripts/auto_backup.sh >> /home/steam/valheim/logs/auto-backup.out 2>&1 valheim | 2024-11-06T05:42:14.985251704Z 2024-11-06 02:42:14 - [Valheim][INFO]: Checking if cron directory and files exist... valheim | 2024-11-06T05:42:14.992461125Z 2024-11-06 02:42:14 - [Valheim][INFO]: Navigating to steam home... valheim | 2024-11-06T05:42:14.996771092Z 2024-11-06 02:42:14 - [Valheim][INFO]: Launching server... valheim | 2024-11-06T05:42:15.005496137Z 2024-11-06 02:42:15 - [Valheim][INFO]: ------------------------------------------------------------- valheim | 2024-11-06T05:42:15.007297473Z 2024-11-06 02:42:15 - [Valheim][INFO]: Valheim Server - Wed Nov 6 02:42:15 AM -03 2024 valheim | 2024-11-06T05:42:15.008243291Z 2024-11-06 02:42:15 - [Valheim][INFO]: STEAM_UID 111 - STEAM_GID 1000 valheim | 2024-11-06T05:42:15.009215779Z 2024-11-06 02:42:15 - [Valheim][INFO]: Installing Valheim via odin 2.1.0... valheim | 2024-11-06T05:42:15.010389689Z 2024-11-06 02:42:15 - [Valheim][INFO]: ------------------------------------------------------------- valheim | 2024-11-06T05:42:15.011367388Z 2024-11-06 02:42:15 - [Valheim][INFO]: Variables loaded..... valheim | 2024-11-06T05:42:15.012319856Z 2024-11-06 02:42:15 - [Valheim][INFO]: Port: 2456 valheim | 2024-11-06T05:42:15.013294814Z 2024-11-06 02:42:15 - [Valheim][INFO]: Name: ... valheim | 2024-11-06T05:42:15.014247122Z 2024-11-06 02:42:15 - [Valheim][INFO]: World: ... valheim | 2024-11-06T05:42:15.015207720Z 2024-11-06 02:42:15 - [Valheim][INFO]: Public: 1 valheim | 2024-11-06T05:42:15.016157718Z 2024-11-06 02:42:15 - [Valheim][INFO]: With Crossplay: valheim | 2024-11-06T05:42:15.017116866Z 2024-11-06 02:42:15 - [Valheim][INFO]: Password: (REDACTED) valheim | 2024-11-06T05:42:15.018062524Z 2024-11-06 02:42:15 - [Valheim][INFO]: Preset: valheim | 2024-11-06T05:42:15.019017392Z 2024-11-06 02:42:15 - [Valheim][INFO]: Modifiers: valheim | 2024-11-06T05:42:15.020109652Z 2024-11-06 02:42:15 - [Valheim][INFO]: Set Key: valheim | 2024-11-06T05:42:15.021160981Z 2024-11-06 02:42:15 - [Valheim][INFO]: Has Webhook: true valheim | 2024-11-06T05:42:15.022110659Z 2024-11-06 02:42:15 - [Valheim][INFO]: Auto Update: 0 valheim | 2024-11-06T05:42:15.023056487Z 2024-11-06 02:42:15 - [Valheim][INFO]: Auto Backup: 1 valheim | 2024-11-06T05:42:15.024004795Z 2024-11-06 02:42:15 - [Valheim][INFO]: Auto Backup On Update: 0 valheim | 2024-11-06T05:42:15.024971734Z 2024-11-06 02:42:15 - [Valheim][INFO]: Auto Backup On Shutdown: 1 valheim | 2024-11-06T05:42:15.025927352Z 2024-11-06 02:42:15 - [Valheim][INFO]: Auto Backup Pause With No Players: 1 valheim | 2024-11-06T05:42:15.026887730Z 2024-11-06 02:42:15 - [Valheim][INFO]: Auto Backup Pause With Players: valheim | 2024-11-06T05:42:15.027834128Z 2024-11-06 02:42:15 - [Valheim][INFO]: Auto Backup Remove Old: 1 valheim | 2024-11-06T05:42:15.028795917Z 2024-11-06 02:42:15 - [Valheim][INFO]: Auto Backup Days To Live: 3 valheim | 2024-11-06T05:42:15.029863716Z 2024-11-06 02:42:15 - [Valheim][INFO]: Auto Backup Nice Level: valheim | 2024-11-06T05:42:15.030889655Z 2024-11-06 02:42:15 - [Valheim][INFO]: Update On Startup: 1 valheim | 2024-11-06T05:42:15.031854523Z 2024-11-06 02:42:15 - [Valheim][INFO]: Mods: valheim | 2024-11-06T05:42:15.032820661Z 2024-11-06 02:42:15 - [Valheim][INFO]: ------------------------------------------------------------- valheim | 2024-11-06T05:42:15.033786130Z 2024-11-06 02:42:15 - [Valheim][INFO]: Running Install... valheim | 2024-11-06T05:42:15.035096711Z 2024-11-06 02:42:15 - [Valheim][DEBUG]: Current Directory: /home/steam/valheim valheim | 2024-11-06T05:42:15.036960187Z 2024-11-06 02:42:15 - [Valheim][DEBUG]: Current User: steam valheim | 2024-11-06T05:42:15.037944855Z 2024-11-06 02:42:15 - [Valheim][DEBUG]: Current UID: 111 valheim | 2024-11-06T05:42:15.038906984Z 2024-11-06 02:42:15 - [Valheim][DEBUG]: Current GID: 1000 valheim | 2024-11-06T05:42:15.040008153Z 2024-11-06 02:42:15 - [Valheim][DEBUG]: Home Directory: /home/steam valheim | 2024-11-06T05:42:15.041554357Z [ODIN][DEBUG]: Logger initialized valheim | 2024-11-06T05:42:15.041581637Z [ODIN][DEBUG]: Debug mode enabled! valheim | 2024-11-06T05:42:15.041634387Z [ODIN][DEBUG]: Env var default 'ODIN_WORKING_DIR': '/home/steam/valheim' valheim | 2024-11-06T05:42:15.041659007Z [ODIN][INFO]: Installing 896660 to /home/steam/valheim valheim | 2024-11-06T05:42:15.041680138Z [ODIN][DEBUG]: Env var default 'ODIN_WORKING_DIR': '/home/steam/valheim' valheim | 2024-11-06T05:42:15.041813129Z [ODIN][INFO]: steamcmd found in path valheim | 2024-11-06T05:42:15.041834969Z [ODIN][DEBUG]: Env var found 'DEBUG_MODE': '1' valheim | 2024-11-06T05:42:15.041855059Z [ODIN][DEBUG]: Env var default 'USE_PUBLIC_BETA': '0' valheim | 2024-11-06T05:42:15.041915880Z [ODIN][DEBUG]: Launching install command: Command { valheim | 2024-11-06T05:42:15.041935080Z program: "/usr/bin/steamcmd", valheim | 2024-11-06T05:42:15.041953960Z args: [ valheim | 2024-11-06T05:42:15.041983230Z "/usr/bin/steamcmd", valheim | 2024-11-06T05:42:15.042007930Z "+force_install_dir /home/steam/valheim", valheim | 2024-11-06T05:42:15.042026391Z "+login anonymous", valheim | 2024-11-06T05:42:15.042044621Z "verbose", valheim | 2024-11-06T05:42:15.042090291Z "+app_update 896660", valheim | 2024-11-06T05:42:15.042109021Z "validate", valheim | 2024-11-06T05:42:15.042127291Z "+quit", valheim | 2024-11-06T05:42:15.042145432Z ], valheim | 2024-11-06T05:42:15.042182062Z stdout: Some( valheim | 2024-11-06T05:42:15.042201212Z Inherit, valheim | 2024-11-06T05:42:15.042226272Z ), valheim | 2024-11-06T05:42:15.042261323Z stderr: Some( valheim | 2024-11-06T05:42:15.042279283Z Inherit, valheim | 2024-11-06T05:42:15.042297233Z ), valheim | 2024-11-06T05:42:15.042338183Z create_pidfd: false, valheim | 2024-11-06T05:42:15.042360103Z } valheim | 2024-11-06T05:42:24.510282999Z Redirecting stderr to '/home/steam/.steam/steam/logs/stderr.txt' valheim | 2024-11-06T05:42:24.510322510Z Logging directory: '/home/steam/.steam/steam/logs' valheim | 2024-11-06T05:42:24.510325660Z [ 0%] Checking for available updates... valheim | 2024-11-06T05:42:24.510328100Z [----] Downloading update (0 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510330540Z [ 0%] Downloading update (1,370 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510332840Z [ 2%] Downloading update (4,874 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510335540Z [ 10%] Downloading update (7,708 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510337760Z [ 15%] Downloading update (10,444 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510339880Z [ 21%] Downloading update (12,916 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510341990Z [ 26%] Downloading update (15,396 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510344050Z [ 31%] Downloading update (17,876 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510346130Z [ 37%] Downloading update (20,604 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510348240Z [ 42%] Downloading update (23,088 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510350340Z [ 47%] Downloading update (25,552 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510352410Z [ 53%] Downloading update (28,272 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510354480Z [ 58%] Downloading update (30,768 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510356550Z [ 63%] Downloading update (33,232 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510358630Z [ 68%] Downloading update (35,728 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510360700Z [ 74%] Downloading update (38,444 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510362810Z [ 79%] Downloading update (40,592 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510364910Z [ 84%] Downloading update (41,808 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510367000Z [ 86%] Downloading update (43,040 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510369080Z [ 89%] Downloading update (44,416 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510381620Z [ 92%] Downloading update (45,648 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510383800Z [ 94%] Downloading update (46,880 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510385910Z [ 97%] Downloading update (48,184 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510388040Z [100%] Downloading update (48,184 of 48,184 KB)... valheim | 2024-11-06T05:42:24.510390180Z [100%] Download complete. valheim | 2024-11-06T05:42:24.510392380Z [----] Installing update... valheim | 2024-11-06T05:42:24.510394480Z [----] Extracting package... valheim | 2024-11-06T05:42:24.510396570Z [----] Extracting package... valheim | 2024-11-06T05:42:24.510405810Z [----] Extracting package... valheim | 2024-11-06T05:42:24.510408080Z [----] Extracting package... valheim | 2024-11-06T05:42:24.510410150Z [----] Installing update... valheim | 2024-11-06T05:42:24.510412250Z [----] Installing update... valheim | 2024-11-06T05:42:24.510414320Z [----] Installing update... valheim | 2024-11-06T05:42:24.510416430Z [----] Installing update... valheim | 2024-11-06T05:42:24.510418530Z [----] Installing update... valheim | 2024-11-06T05:42:24.510420600Z [----] Installing update... valheim | 2024-11-06T05:42:24.510422670Z [----] Installing update... valheim | 2024-11-06T05:42:24.510424720Z [----] Installing update... valheim | 2024-11-06T05:42:24.510426790Z [----] Installing update... valheim | 2024-11-06T05:42:24.510428850Z [----] Cleaning up... valheim | 2024-11-06T05:42:24.510430940Z [----] Update complete, launching Steamcmd... valheim | 2024-11-06T05:42:24.510433130Z UpdateUI: skip show logoCWorkThreadPool::~CWorkThreadPool: work processing queue not empty: 5 items discarded. valheim | 2024-11-06T05:42:24.511851912Z steamcmd.sh[222]: Restarting steamcmd by request... valheim | 2024-11-06T05:42:25.194464582Z Redirecting stderr to '/home/steam/.steam/steam/logs/stderr.txt' valheim | 2024-11-06T05:42:25.194500282Z Logging directory: '/home/steam/.steam/steam/logs' valheim | 2024-11-06T05:42:25.194506282Z [ 0%] Checking for available updates... valheim | 2024-11-06T05:42:25.194508722Z [----] Verifying installation... valheim | 2024-11-06T05:42:25.194511002Z UpdateUI: skip show logoSteam Console Client (c) Valve Corporation - version 1730854361 valheim | 2024-11-06T05:42:25.194513372Z -- type 'quit' to exit -- valheim | 2024-11-06T05:42:25.229405335Z Loading Steam API...OK valheim | 2024-11-06T05:42:25.229418475Z valheim | 2024-11-06T05:42:26.585524688Z Connecting anonymously to Steam Public...OK valheim | 2024-11-06T05:42:26.585556978Z Waiting for client config...OK valheim | 2024-11-06T05:44:02.255297019Z Waiting for user info...OK valheim | 2024-11-06T05:44:02.255326849Z Update state (0x3) reconfiguring, progress: 0.00 (0 / 0) valheim | 2024-11-06T05:44:02.255330149Z Update state (0x61) downloading, progress: 0.00 (0 / 2444741987) valheim | 2024-11-06T05:44:02.255332740Z Update state (0x61) downloading, progress: 3.21 (78382436 / 2444741987) valheim | 2024-11-06T05:44:02.255334950Z Update state (0x61) downloading, progress: 6.82 (166838044 / 2444741987) valheim | 2024-11-06T05:44:02.255337130Z Update state (0x61) downloading, progress: 10.84 (264996794 / 2444741987) valheim | 2024-11-06T05:44:02.255339360Z Update state (0x61) downloading, progress: 13.63 (333180975 / 2444741987) valheim | 2024-11-06T05:44:02.255341500Z Update state (0x61) downloading, progress: 16.41 (401220767 / 2444741987) valheim | 2024-11-06T05:44:02.255343620Z Update state (0x61) downloading, progress: 18.98 (463912687 / 2444741987) valheim | 2024-11-06T05:44:02.255345790Z Update state (0x61) downloading, progress: 21.80 (533039551 / 2444741987) valheim | 2024-11-06T05:44:02.255354500Z Update state (0x61) downloading, progress: 24.38 (596064743 / 2444741987) valheim | 2024-11-06T05:44:02.255356670Z Update state (0x61) downloading, progress: 26.95 (658859919 / 2444741987) valheim | 2024-11-06T05:44:02.255358820Z Update state (0x61) downloading, progress: 29.41 (718965311 / 2444741987) valheim | 2024-11-06T05:44:02.255360900Z Update state (0x61) downloading, progress: 31.79 (777100927 / 2444741987) valheim | 2024-11-06T05:44:02.255363000Z Update state (0x61) downloading, progress: 35.36 (864511311 / 2444741987) valheim | 2024-11-06T05:44:02.255375740Z Update state (0x61) downloading, progress: 37.89 (926322959 / 2444741987) valheim | 2024-11-06T05:44:02.255377880Z Update state (0x61) downloading, progress: 40.52 (990584327 / 2444741987) valheim | 2024-11-06T05:44:02.255379990Z Update state (0x61) downloading, progress: 42.74 (1044804015 / 2444741987) valheim | 2024-11-06T05:44:02.255382110Z Update state (0x61) downloading, progress: 44.82 (1095852943 / 2444741987) valheim | 2024-11-06T05:44:02.255384230Z Update state (0x61) downloading, progress: 47.16 (1152956639 / 2444741987) valheim | 2024-11-06T05:44:02.255386300Z Update state (0x61) downloading, progress: 48.81 (1193238543 / 2444741987) valheim | 2024-11-06T05:44:02.255388440Z Update state (0x61) downloading, progress: 50.49 (1234272319 / 2444741987) valheim | 2024-11-06T05:44:02.255390510Z Update state (0x61) downloading, progress: 51.77 (1265729599 / 2444741987) valheim | 2024-11-06T05:44:02.255392590Z Update state (0x61) downloading, progress: 52.80 (1290895423 / 2444741987) valheim | 2024-11-06T05:44:02.255394660Z Update state (0x61) downloading, progress: 53.49 (1307672639 / 2444741987) valheim | 2024-11-06T05:44:02.255396770Z Update state (0x61) downloading, progress: 54.26 (1326547007 / 2444741987) valheim | 2024-11-06T05:44:02.255398870Z Update state (0x61) downloading, progress: 55.15 (1348294847 / 2444741987) valheim | 2024-11-06T05:44:02.255400990Z Update state (0x61) downloading, progress: 56.69 (1385908639 / 2444741987) valheim | 2024-11-06T05:44:02.255403950Z Update state (0x61) downloading, progress: 58.75 (1436208631 / 2444741987) valheim | 2024-11-06T05:44:02.255406110Z Update state (0x61) downloading, progress: 60.77 (1485621991 / 2444741987) valheim | 2024-11-06T05:44:02.255408220Z Update state (0x61) downloading, progress: 63.44 (1551039447 / 2444741987) valheim | 2024-11-06T05:44:02.255410300Z Update state (0x61) downloading, progress: 65.59 (1603500839 / 2444741987) valheim | 2024-11-06T05:44:02.255412410Z Update state (0x61) downloading, progress: 67.81 (1657836039 / 2444741987) valheim | 2024-11-06T05:44:02.255414550Z Update state (0x61) downloading, progress: 70.69 (1728260943 / 2444741987) valheim | 2024-11-06T05:44:02.255416650Z Update state (0x61) downloading, progress: 73.48 (1796321871 / 2444741987) valheim | 2024-11-06T05:44:02.255418740Z Update state (0x61) downloading, progress: 75.73 (1851445471 / 2444741987) valheim | 2024-11-06T05:44:02.255420840Z Update state (0x61) downloading, progress: 78.93 (1929669663 / 2444741987) valheim | 2024-11-06T05:44:02.255422960Z Update state (0x61) downloading, progress: 81.36 (1989092649 / 2444741987) valheim | 2024-11-06T05:44:02.255425060Z Update state (0x61) downloading, progress: 83.02 (2029644876 / 2444741987) valheim | 2024-11-06T05:44:02.255429860Z Update state (0x61) downloading, progress: 84.89 (2075311500 / 2444741987) valheim | 2024-11-06T05:44:02.255432030Z Update state (0x61) downloading, progress: 88.03 (2152043212 / 2444741987) valheim | 2024-11-06T05:44:02.255434140Z Update state (0x61) downloading, progress: 90.77 (2219131108 / 2444741987) valheim | 2024-11-06T05:44:02.255436260Z Update state (0x61) downloading, progress: 93.55 (2287070954 / 2444741987) valheim | 2024-11-06T05:44:02.255438360Z Update state (0x61) downloading, progress: 96.30 (2354328899 / 2444741987) valheim | 2024-11-06T05:44:02.255440440Z Update state (0x61) downloading, progress: 99.16 (2424101075 / 2444741987) valheim | 2024-11-06T05:44:02.255451931Z Update state (0x81) verifying update, progress: 27.97 (683896163 / 2444741987) valheim | 2024-11-06T05:44:02.255454111Z Update state (0x81) verifying update, progress: 75.08 (1835554893 / 2444741987) valheim | 2024-11-06T05:44:02.255456301Z Success! App '896660' fully installed. valheim | 2024-11-06T05:44:02.289727745Z [ODIN][INFO]: Successfully installed Valheim! valheim | 2024-11-06T05:44:02.291535880Z 2024-11-06 02:44:02 - [Valheim][INFO]: Initializing Variables.... valheim | 2024-11-06T05:44:02.297928163Z [ODIN][DEBUG]: Logger initialized valheim | 2024-11-06T05:44:02.298017084Z [ODIN][DEBUG]: Debug mode enabled! valheim | 2024-11-06T05:44:02.298062365Z [ODIN][INFO]: Checking directory permissions: "/home/steam/valheim" valheim | 2024-11-06T05:44:02.298119335Z [ODIN][INFO]: Checking directory permissions: "/home/steam/scripts" valheim | 2024-11-06T05:44:02.298179036Z [ODIN][INFO]: Checking file permissions: "/home/steam/.bashrc" valheim | 2024-11-06T05:44:02.298216676Z [ODIN][DEBUG]: Pulling config file... valheim | 2024-11-06T05:44:02.298257966Z [ODIN][DEBUG]: Env var found 'ODIN_CONFIG_FILE': '/home/steam/valheim/config.json' valheim | 2024-11-06T05:44:02.298293326Z [ODIN][DEBUG]: Config file set to: /home/steam/valheim/config.json valheim | 2024-11-06T05:44:02.298320897Z [ODIN][DEBUG]: Writing config file... valheim | 2024-11-06T05:44:02.298383667Z [ODIN][DEBUG]: Writing config content: valheim | 2024-11-06T05:44:02.298441288Z { valheim | 2024-11-06T05:44:02.298443868Z "port": "2456", valheim | 2024-11-06T05:44:02.298446158Z "name": "...", valheim | 2024-11-06T05:44:02.298448488Z "world": "...", valheim | 2024-11-06T05:44:02.298450808Z "public": "1", valheim | 2024-11-06T05:44:02.298452978Z "password": "...", valheim | 2024-11-06T05:44:02.298455168Z "command": "/home/steam/valheim/valheim_server.x86_64" valheim | 2024-11-06T05:44:02.298534478Z } valheim | 2024-11-06T05:44:02.298589069Z [ODIN][DEBUG]: Managed File: Path - /home/steam/valheim/config.json valheim | 2024-11-06T05:44:02.298625559Z [ODIN][DEBUG]: Writing file path: /home/steam/valheim/config.json valheim | 2024-11-06T05:44:02.298692610Z [ODIN][DEBUG]: Managed File: Path - /home/steam/valheim/config.json valheim | 2024-11-06T05:44:02.298730160Z [ODIN][DEBUG]: Managed File: Path - /home/steam/valheim/config.json valheim | 2024-11-06T05:44:02.298865641Z [ODIN][DEBUG]: Managed File: Path - /home/steam/valheim/config.json valheim | 2024-11-06T05:44:02.298906932Z [ODIN][INFO]: Successfully written /home/steam/valheim/config.json valheim | 2024-11-06T05:44:02.298963792Z [ODIN][DEBUG]: Pulling Discord config file... valheim | 2024-11-06T05:44:02.298995422Z [ODIN][DEBUG]: Env var found 'ODIN_DISCORD_FILE': '/home/steam/valheim/discord.json' valheim | 2024-11-06T05:44:02.299042033Z [ODIN][DEBUG]: Config file set to: /home/steam/valheim/discord.json valheim | 2024-11-06T05:44:02.299069213Z [ODIN][DEBUG]: Writing Discord config file... valheim | 2024-11-06T05:44:02.299125903Z [ODIN][DEBUG]: Writing discord config: valheim | 2024-11-06T05:44:02.299155464Z { valheim | 2024-11-06T05:44:02.299157834Z "events": { valheim | 2024-11-06T05:44:02.299171214Z "update": { valheim | 2024-11-06T05:44:02.299173434Z "content": "Notification: {{server_name}}", valheim | 2024-11-06T05:44:02.299175734Z "embeds": [ valheim | 2024-11-06T05:44:02.299177874Z { valheim | 2024-11-06T05:44:02.299180044Z "title": "{{title}}", valheim | 2024-11-06T05:44:02.299182264Z "description": "{{description}}", valheim | 2024-11-06T05:44:02.299184514Z "color": 16388413 valheim | 2024-11-06T05:44:02.299186694Z } valheim | 2024-11-06T05:44:02.299188744Z ] valheim | 2024-11-06T05:44:02.299190934Z }, valheim | 2024-11-06T05:44:02.299193134Z "start": { valheim | 2024-11-06T05:44:02.299195284Z "content": "Notification: {{server_name}}", valheim | 2024-11-06T05:44:02.299197484Z "embeds": [ valheim | 2024-11-06T05:44:02.299199574Z { valheim | 2024-11-06T05:44:02.299201764Z "title": "{{title}}", valheim | 2024-11-06T05:44:02.299203874Z "description": "{{description}}", valheim | 2024-11-06T05:44:02.299205994Z "color": 16388413 valheim | 2024-11-06T05:44:02.299208104Z } valheim | 2024-11-06T05:44:02.299210134Z ] valheim | 2024-11-06T05:44:02.299212184Z }, valheim | 2024-11-06T05:44:02.299214234Z "stop": { valheim | 2024-11-06T05:44:02.299216324Z "content": "Notification: {{server_name}}", valheim | 2024-11-06T05:44:02.299218504Z "embeds": [ valheim | 2024-11-06T05:44:02.299220554Z { valheim | 2024-11-06T05:44:02.299222624Z "title": "{{title}}", valheim | 2024-11-06T05:44:02.299224714Z "description": "{{description}}", valheim | 2024-11-06T05:44:02.299226824Z "color": 16388413 valheim | 2024-11-06T05:44:02.299228914Z } valheim | 2024-11-06T05:44:02.299231004Z ] valheim | 2024-11-06T05:44:02.299233014Z }, valheim | 2024-11-06T05:44:02.299235054Z "broadcast": { valheim | 2024-11-06T05:44:02.299246624Z "content": "Notification: {{server_name}}", valheim | 2024-11-06T05:44:02.299252304Z "embeds": [ valheim | 2024-11-06T05:44:02.299254444Z { valheim | 2024-11-06T05:44:02.299256474Z "title": "{{title}}", valheim | 2024-11-06T05:44:02.299258574Z "description": "{{description}}", valheim | 2024-11-06T05:44:02.299260675Z "color": 16388413 valheim | 2024-11-06T05:44:02.299262765Z } valheim | 2024-11-06T05:44:02.299264855Z ] valheim | 2024-11-06T05:44:02.299266895Z } valheim | 2024-11-06T05:44:02.299268935Z } valheim | 2024-11-06T05:44:02.299516367Z } valheim | 2024-11-06T05:44:02.299545437Z [ODIN][DEBUG]: Managed File: Path - /home/steam/valheim/discord.json valheim | 2024-11-06T05:44:02.299603757Z [ODIN][DEBUG]: Path /home/steam/valheim/discord.json does not exist valheim | 2024-11-06T05:44:02.299650728Z [ODIN][DEBUG]: Managed File: Path - /home/steam/valheim/discord.json valheim | 2024-11-06T05:44:02.299794659Z [ODIN][DEBUG]: Writing file path: /home/steam/valheim/discord.json valheim | 2024-11-06T05:44:02.299854709Z [ODIN][DEBUG]: Managed File: Path - /home/steam/valheim/discord.json valheim | 2024-11-06T05:44:02.299896160Z [ODIN][DEBUG]: Managed File: Path - /home/steam/valheim/discord.json valheim | 2024-11-06T05:44:02.299995151Z [ODIN][DEBUG]: Managed File: Path - /home/steam/valheim/discord.json valheim | 2024-11-06T05:44:02.300035221Z [ODIN][INFO]: Successfully written /home/steam/valheim/discord.json valheim | 2024-11-06T05:44:02.301480733Z 2024-11-06 02:44:02 - [Valheim][INFO]: Checking for TYPE flag valheim | 2024-11-06T05:44:02.303833483Z 2024-11-06 02:44:02 - [Valheim][INFO]: Found Type Vanilla valheim | 2024-11-06T05:44:02.305259184Z 2024-11-06 02:44:02 - [Valheim][INFO]: Running with Vanilla Valheim <3 valheim | 2024-11-06T05:44:02.306520985Z 2024-11-06 02:44:02 - [Valheim][INFO]: Starting server... valheim | 2024-11-06T05:44:02.308368040Z [ODIN][DEBUG]: Logger initialized valheim | 2024-11-06T05:44:02.308560082Z [ODIN][DEBUG]: Debug mode enabled! valheim | 2024-11-06T05:44:02.309077446Z [ODIN][INFO]: Setting up start scripts... valheim | 2024-11-06T05:44:02.309468189Z [ODIN][DEBUG]: Checking for notification information... valheim | 2024-11-06T05:44:02.309639041Z [ODIN][DEBUG]: Env var found 'WEBHOOK_URL': 'https://discord.com/api/webhooks/... valheim | 2024-11-06T05:44:02.309875723Z [ODIN][DEBUG]: Webhook Url found!: https://discord.com/api/webhooks/... valheim | 2024-11-06T05:44:02.310060884Z [ODIN][DEBUG]: Webhook found! Starting notification process... valheim | 2024-11-06T05:44:02.310258436Z [ODIN][DEBUG]: Checking ENV Var: WEBHOOK_STATUS_RUNNING valheim | 2024-11-06T05:44:02.310417737Z [ODIN][DEBUG]: Env var default 'WEBHOOK_STATUS_RUNNING': '0' valheim | 2024-11-06T05:44:02.310575379Z [ODIN][DEBUG]: Skipping notification, WEBHOOK_STATUS_RUNNING is set to 0 valheim | 2024-11-06T05:44:02.310719510Z [ODIN][DEBUG]: Loading config file... valheim | 2024-11-06T05:44:02.310883851Z [ODIN][DEBUG]: Env var found 'ODIN_CONFIG_FILE': '/home/steam/valheim/config.json' valheim | 2024-11-06T05:44:02.311033552Z [ODIN][DEBUG]: Config file set to: /home/steam/valheim/config.json valheim | 2024-11-06T05:44:02.311178864Z [ODIN][DEBUG]: Managed File: Path - /home/steam/valheim/config.json valheim | 2024-11-06T05:44:02.311332695Z [ODIN][DEBUG]: Managed File: Path - /home/steam/valheim/config.json valheim | 2024-11-06T05:44:02.311507156Z [ODIN][DEBUG]: Checking password compliance... valheim | 2024-11-06T05:44:02.311666788Z [ODIN][DEBUG]: Dry run condition: false valheim | 2024-11-06T05:44:02.311815019Z [ODIN][INFO]: Looking for burial mounds... valheim | 2024-11-06T05:44:02.311958990Z [ODIN][DEBUG]: Starting server daemonized... valheim | 2024-11-06T05:44:02.312173582Z [ODIN][INFO]: Executing: /home/steam/valheim/valheim_server.x86_64 ..... valheim | 2024-11-06T05:44:02.312333083Z [ODIN][DEBUG]: -------------------------------------------------------------------------------------------------------------- valheim | 2024-11-06T05:44:02.312518935Z [ODIN][DEBUG]: Launching With Args: valheim | 2024-11-06T05:44:02.312670996Z ValheimArguments { valheim | 2024-11-06T05:44:02.313657584Z port: "2456", valheim | 2024-11-06T05:44:02.313724845Z name: "...", valheim | 2024-11-06T05:44:02.313767015Z world: "...", valheim | 2024-11-06T05:44:02.314270679Z public: "1", valheim | 2024-11-06T05:44:02.314423530Z password: "...", valheim | 2024-11-06T05:44:02.314480701Z command: "/home/steam/valheim/valheim_server.x86_64", valheim | 2024-11-06T05:44:02.314520391Z preset: None, valheim | 2024-11-06T05:44:02.314558502Z modifiers: None, valheim | 2024-11-06T05:44:02.314594222Z set_key: None, valheim | 2024-11-06T05:44:02.314620972Z save_interval: None, valheim | 2024-11-06T05:44:02.314861064Z } valheim | 2024-11-06T05:44:02.315029056Z [ODIN][DEBUG]: Base Command: Command { valheim | 2024-11-06T05:44:02.315077316Z program: "/home/steam/valheim/valheim_server.x86_64", valheim | 2024-11-06T05:44:02.315225717Z args: [ valheim | 2024-11-06T05:44:02.315271948Z "/home/steam/valheim/valheim_server.x86_64", valheim | 2024-11-06T05:44:02.315390189Z ], valheim | 2024-11-06T05:44:02.315533450Z env: CommandEnv { valheim | 2024-11-06T05:44:02.315675781Z clear: false, valheim | 2024-11-06T05:44:02.315814612Z vars: { valheim | 2024-11-06T05:44:02.315956193Z "SteamAppId": Some( valheim | 2024-11-06T05:44:02.316093044Z "892970", valheim | 2024-11-06T05:44:02.316219155Z ), valheim | 2024-11-06T05:44:02.316359237Z }, valheim | 2024-11-06T05:44:02.316499898Z }, valheim | 2024-11-06T05:44:02.316637539Z cwd: Some( valheim | 2024-11-06T05:44:02.316782430Z "/home/steam/valheim", valheim | 2024-11-06T05:44:02.316926561Z ), valheim | 2024-11-06T05:44:02.317065262Z stdout: Some( valheim | 2024-11-06T05:44:02.317204784Z Fd( valheim | 2024-11-06T05:44:02.317348135Z FileDesc( valheim | 2024-11-06T05:44:02.317473396Z OwnedFd { valheim | 2024-11-06T05:44:02.317613967Z fd: 11, valheim | 2024-11-06T05:44:02.317811409Z }, valheim | 2024-11-06T05:44:02.317816329Z ), valheim | 2024-11-06T05:44:02.317818749Z ), valheim | 2024-11-06T05:44:02.317820889Z ), valheim | 2024-11-06T05:44:02.317823089Z stderr: Some( valheim | 2024-11-06T05:44:02.317825299Z Fd( valheim | 2024-11-06T05:44:02.318642116Z FileDesc( valheim | 2024-11-06T05:44:02.318647726Z OwnedFd { valheim | 2024-11-06T05:44:02.318650196Z fd: 12, valheim | 2024-11-06T05:44:02.318652406Z }, valheim | 2024-11-06T05:44:02.318654486Z ), valheim | 2024-11-06T05:44:02.318656736Z ), valheim | 2024-11-06T05:44:02.318658796Z ), valheim | 2024-11-06T05:44:02.318660906Z create_pidfd: false, valheim | 2024-11-06T05:44:02.318662976Z } valheim | 2024-11-06T05:44:02.318665176Z [ODIN][DEBUG]: Setting up base command valheim | 2024-11-06T05:44:02.318667276Z [ODIN][DEBUG]: Env var found 'NAME': '...' valheim | 2024-11-06T05:44:02.318669356Z [ODIN][DEBUG]: Setting name to: ... valheim | 2024-11-06T05:44:02.318671436Z [ODIN][DEBUG]: Env var found 'PORT': '2456' valheim | 2024-11-06T05:44:02.318673556Z [ODIN][DEBUG]: Setting port to: 2456 valheim | 2024-11-06T05:44:02.318675656Z [ODIN][DEBUG]: Env var found 'WORLD': '...' valheim | 2024-11-06T05:44:02.318677746Z [ODIN][DEBUG]: Env var found 'WORLD': '...' valheim | 2024-11-06T05:44:02.318679816Z [ODIN][DEBUG]: Setting world to: ... valheim | 2024-11-06T05:44:02.318681906Z [ODIN][DEBUG]: Env var found 'PUBLIC': '1' valheim | 2024-11-06T05:44:02.318683996Z [ODIN][DEBUG]: Setting public to: 1 valheim | 2024-11-06T05:44:02.318686056Z [ODIN][DEBUG]: Env var default 'SERVER_EXTRA_LAUNCH_ARGS': '' valheim | 2024-11-06T05:44:02.318688176Z [ODIN][DEBUG]: Env var found 'TYPE': 'vanilla' valheim | 2024-11-06T05:44:02.318690306Z [ODIN][INFO]: Password found, adding password flag. valheim | 2024-11-06T05:44:02.318692406Z [ODIN][DEBUG]: Env var default 'ENABLE_CROSSPLAY': '0' valheim | 2024-11-06T05:44:02.318694496Z [ODIN][INFO]: No Crossplay Enabled! valheim | 2024-11-06T05:44:02.318696626Z [ODIN][DEBUG]: Executable: /home/steam/valheim/valheim_server.x86_64 valheim | 2024-11-06T05:44:02.318713416Z [ODIN][INFO]: Launching Command... valheim | 2024-11-06T05:44:02.318715666Z [ODIN][DEBUG]: Env var default 'LD_LIBRARY_PATH': '/home/steam/valheim/linux64' valheim | 2024-11-06T05:44:02.318717866Z [ODIN][DEBUG]: Parsing Doorstop locations. valheim | 2024-11-06T05:44:02.318719996Z [ODIN][DEBUG]: Env var default 'DOORSTOP_LIB': 'libdoorstop_x64.so' valheim | 2024-11-06T05:44:02.318726346Z [ODIN][DEBUG]: Env var default 'DOORSTOP_LIBS': '/home/steam/valheim/doorstop_libs' valheim | 2024-11-06T05:44:02.318728596Z [ODIN][DEBUG]: Path /home/steam/valheim/doorstop_libs does not exist valheim | 2024-11-06T05:44:02.318730716Z [ODIN][DEBUG]: Path /home/steam/valheim/BepInEx/doorstop does not exist valheim | 2024-11-06T05:44:02.320059477Z [ODIN][DEBUG]: Env var default 'DOORSTOP_INVOKE_DLL_PATH': '/home/steam/valheim/BepInEx/core/BepInEx.Preloader.dll' valheim | 2024-11-06T05:44:02.320556891Z [ODIN][DEBUG]: Env var default 'DOORSTOP_CORLIB_OVERRIDE_PATH': '/home/steam/valheim/unstripped_corlib' valheim | 2024-11-06T05:44:02.320617682Z [ODIN][DEBUG]: Path /home/steam/valheim/unstripped_corlib does not exist valheim | 2024-11-06T05:44:02.320670282Z [ODIN][DEBUG]: Path /home/steam/valheim/BepInEx/core_lib does not exist valheim | 2024-11-06T05:44:02.320698193Z [ODIN][DEBUG]: Parsing LD locations. valheim | 2024-11-06T05:44:02.320742773Z [ODIN][DEBUG]: Env var default 'LD_PRELOAD': '' valheim | 2024-11-06T05:44:02.320770853Z [ODIN][DEBUG]: Env var default 'LD_LIBRARY_PATH': './linux64:/home/steam/valheim/doorstop_libs' valheim | 2024-11-06T05:44:02.323781948Z [ODIN][DEBUG]: Parsing LD locations. valheim | 2024-11-06T05:44:02.323788598Z [ODIN][DEBUG]: Env var default 'DYLD_LIBRARY_PATH': '/home/steam/valheim/doorstop_libs' valheim | 2024-11-06T05:44:02.323791508Z [ODIN][DEBUG]: Env var default 'DYLD_INSERT_LIBRARIES': '/home/steam/valheim/doorstop_libs/libdoorstop_x64.so' valheim | 2024-11-06T05:44:02.323793888Z [ODIN][DEBUG]: Returning environment valheim | 2024-11-06T05:44:02.323796188Z [ODIN][DEBUG]: Checking for BepInEx specific files... valheim | 2024-11-06T05:44:02.323798278Z [ODIN][DEBUG]: Path /home/steam/valheim/doorstop_libs/libdoorstop_x64.so does not exist valheim | 2024-11-06T05:44:02.323800488Z [ODIN][DEBUG]: We didn't find a modded instance! Launching a normal instance! valheim | 2024-11-06T05:44:02.323802658Z [ODIN][INFO]: Everything looks good! Running normally! valheim | 2024-11-06T05:44:04.332794812Z 2024-11-06 02:44:04 - [Valheim][INFO]: Herding Graydwarfs... valheim | 2024-11-06T05:44:04.340415315Z [ODIN][DEBUG]: Logger initialized valheim | 2024-11-06T05:44:04.340618727Z [ODIN][DEBUG]: Debug mode enabled! valheim | 2024-11-06T05:44:04.341912528Z [ODIN][INFO]: [valheim_server.log]: [UnityMemory] Configuration Parameters - Can be set up in boot.config valheim | 2024-11-06T05:44:04.342098039Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-bucket-allocator-granularity=16" valheim | 2024-11-06T05:44:04.342261530Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-bucket-allocator-bucket-count=8" valheim | 2024-11-06T05:44:04.342416402Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-bucket-allocator-block-size=4194304" valheim | 2024-11-06T05:44:04.342564953Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-bucket-allocator-block-count=1" valheim | 2024-11-06T05:44:04.342725524Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-main-allocator-block-size=16777216" valheim | 2024-11-06T05:44:04.342872356Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-thread-allocator-block-size=16777216" valheim | 2024-11-06T05:44:04.343030057Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-gfx-main-allocator-block-size=16777216" valheim | 2024-11-06T05:44:04.343183928Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-gfx-thread-allocator-block-size=16777216" valheim | 2024-11-06T05:44:04.343330779Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-cache-allocator-block-size=4194304" valheim | 2024-11-06T05:44:04.343483121Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-typetree-allocator-block-size=2097152" valheim | 2024-11-06T05:44:04.343631962Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-profiler-bucket-allocator-granularity=16" valheim | 2024-11-06T05:44:04.343774773Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-profiler-bucket-allocator-bucket-count=8" valheim | 2024-11-06T05:44:04.343925654Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-profiler-bucket-allocator-block-size=4194304" valheim | 2024-11-06T05:44:04.344061355Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-profiler-bucket-allocator-block-count=1" valheim | 2024-11-06T05:44:04.344211127Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-profiler-allocator-block-size=16777216" valheim | 2024-11-06T05:44:04.344361658Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-profiler-editor-allocator-block-size=1048576" valheim | 2024-11-06T05:44:04.344509989Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-temp-allocator-size-main=4194304" valheim | 2024-11-06T05:44:04.344659830Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-job-temp-allocator-block-size=2097152" valheim | 2024-11-06T05:44:04.345031813Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-job-temp-allocator-block-size-background=1048576" valheim | 2024-11-06T05:44:04.345213575Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-job-temp-allocator-reduction-small-platforms=262144" valheim | 2024-11-06T05:44:04.345379736Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-allocator-temp-initial-block-size-main=262144" valheim | 2024-11-06T05:44:04.345533248Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-allocator-temp-initial-block-size-worker=262144" valheim | 2024-11-06T05:44:04.345668679Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-temp-allocator-size-background-worker=32768" valheim | 2024-11-06T05:44:04.345944781Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-temp-allocator-size-job-worker=262144" valheim | 2024-11-06T05:44:04.346306224Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-temp-allocator-size-preload-manager=262144" valheim | 2024-11-06T05:44:04.346472445Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-temp-allocator-size-nav-mesh-worker=65536" valheim | 2024-11-06T05:44:04.346622577Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-temp-allocator-size-audio-worker=65536" valheim | 2024-11-06T05:44:04.346774508Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-temp-allocator-size-cloud-worker=32768" valheim | 2024-11-06T05:44:04.346924089Z [ODIN][INFO]: [valheim_server.log]: "memorysetup-temp-allocator-size-gfx=262144" valheim | 2024-11-06T05:44:04.347074120Z [ODIN][INFO]: [valheim_server.log]: Mono path[0] = '/home/steam/valheim/valheim_server_Data/Managed' valheim | 2024-11-06T05:44:04.347246912Z [ODIN][INFO]: [valheim_server.log]: Mono config path = '/home/steam/valheim/valheim_server_Data/MonoBleedingEdge/etc' valheim | 2024-11-06T05:44:04.347400893Z [ODIN][INFO]: [valheim_server.log]: Preloaded 'libDiskSpacePlugin.so' valheim | 2024-11-06T05:44:04.347555234Z [ODIN][INFO]: [valheim_server.log]: Preloaded 'libparty.so' valheim | 2024-11-06T05:44:04.347697896Z [ODIN][INFO]: [valheim_server.log]: Preloaded 'libsteam_api.so' valheim | 2024-11-06T05:44:04.347834417Z [ODIN][INFO]: [valheim_server.log]: [PhysX] Initialized MultithreadedTaskDispatcher with 2 workers. valheim | 2024-11-06T05:44:04.347982158Z [ODIN][INFO]: [valheim_server.log]: Unable to load player prefs valheim | 2024-11-06T05:44:04.348142889Z [ODIN][INFO]: [valheim_server.log]: Initialize engine version: 2022.3.50f1 (c3db7f8bf9b1) valheim | 2024-11-06T05:44:04.348282880Z [ODIN][INFO]: [valheim_server.log]: [Subsystems] Discovering subsystems at path /home/steam/valheim/valheim_server_Data/UnitySubsystems valheim | 2024-11-06T05:44:04.348420652Z [ODIN][INFO]: [valheim_server.log]: Forcing GfxDevice: Null valheim | 2024-11-06T05:44:04.348571143Z [ODIN][INFO]: [valheim_server.log]: GfxDevice: creating device client; threaded=0; jobified=0 valheim | 2024-11-06T05:44:04.348723154Z [ODIN][INFO]: [valheim_server.log]: NullGfxDevice: valheim | 2024-11-06T05:44:04.348875855Z [ODIN][INFO]: [valheim_server.log]: Version: NULL 1.0 [1.0] valheim | 2024-11-06T05:44:04.349019837Z [ODIN][INFO]: [valheim_server.log]: Renderer: Null Device valheim | 2024-11-06T05:44:04.349165808Z [ODIN][INFO]: [valheim_server.log]: Vendor: Unity Technologies valheim | 2024-11-06T05:44:04.349308249Z [ODIN][INFO]: [valheim_server.log]: Begin MonoManager ReloadAssembly valheim | 2024-11-06T05:44:04.349425940Z [ODIN][INFO]: [valheim_server.log]: - Loaded All Assemblies, in 0.066 seconds valheim | 2024-11-06T05:44:04.349600231Z [ODIN][INFO]: [valheim_server.log]: - Finished resetting the current domain, in 0.001 seconds valheim | 2024-11-06T05:44:04.349605461Z [ODIN][ERROR]: [valheim_server.log]: ERROR: Shader Sprites/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable) valheim | 2024-11-06T05:44:04.350142696Z [ODIN][ERROR]: [valheim_server.log]: ERROR: Shader Sprites/Mask shader is not supported on this GPU (none of subshaders/fallbacks are suitable) valheim | 2024-11-06T05:44:04.350303767Z [ODIN][INFO]: [valheim_server.log]: There is no texture data available to upload. valheim | 2024-11-06T05:44:04.350844382Z [ODIN][INFO]: [valheim_server.log]: [PhysX] Initialized MultithreadedTaskDispatcher with 2 workers. valheim | 2024-11-06T05:44:04.350850922Z [ODIN][INFO]: [valheim_server.log]: UnloadTime: 0.610830 ms valheim | 2024-11-06T05:44:04.350853772Z [ODIN][INFO]: [valheim_server.log]: Privilege Multiplayer is not known on this platform. Privilege therefore is granted without check... valheim | 2024-11-06T05:44:04.350856242Z [ODIN][INFO]: [valheim_server.log]: Privilege UserGeneratedContent is not known on this platform. Privilege therefore is granted without check... valheim | 2024-11-06T05:44:04.350858622Z [ODIN][INFO]: [valheim_server.log]: Privilege CrossPlay is not known on this platform. Privilege therefore is granted without check... valheim | 2024-11-06T05:44:04.350860862Z [ODIN][INFO]: [valheim_server.log]: 11/06/2024 02:44:02: Set background loading budget to Low valheim | 2024-11-06T05:44:04.350867892Z [ODIN][ERROR]: [valheim_server.log]: ERROR: Shader TextMeshPro/Mobile/Distance Field shader is not supported on this GPU (none of subshaders/fallbacks are suitable) valheim | 2024-11-06T05:44:04.350870672Z [ODIN][WARN]: [valheim_server.log]: WARNING: Shader Unsupported: 'TextMeshPro/Distance Field' - All subshaders removed valheim | 2024-11-06T05:44:04.350873162Z [ODIN][WARN]: [valheim_server.log]: WARNING: Shader Did you use #pragma only_renderers and omit this platform? valheim | 2024-11-06T05:44:04.350875422Z [ODIN][WARN]: [valheim_server.log]: WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off? valheim | 2024-11-06T05:44:04.350877762Z [ODIN][ERROR]: [valheim_server.log]: ERROR: Shader TextMeshPro/Distance Field shader is not supported on this GPU (none of subshaders/fallbacks are suitable) valheim | 2024-11-06T05:44:04.350880072Z [ODIN][WARN]: [valheim_server.log]: WARNING: Shader Unsupported: 'TextMeshPro/Distance Field' - All subshaders removed valheim | 2024-11-06T05:44:04.350882412Z [ODIN][WARN]: [valheim_server.log]: WARNING: Shader Did you use #pragma only_renderers and omit this platform? valheim | 2024-11-06T05:44:04.350884662Z [ODIN][WARN]: [valheim_server.log]: WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off? valheim | 2024-11-06T05:44:04.350901602Z [ODIN][ERROR]: [valheim_server.log]: ERROR: Shader GUI/Text Shader shader is not supported on this GPU (none of subshaders/fallbacks are suitable) valheim | 2024-11-06T05:44:04.350904262Z [ODIN][INFO]: [valheim_server.log]: [PhysX] Initialized MultithreadedTaskDispatcher with 2 workers. valheim | 2024-11-06T05:44:04.350906512Z [ODIN][INFO]: [valheim_server.log]: UnloadTime: 0.192270 ms valheim | 2024-11-06T05:44:04.350908722Z [ODIN][INFO]: [valheim_server.log]: Unloading 5 Unused Serialized files (Serialized files now loaded: 9) valheim | 2024-11-06T05:44:04.350911122Z [ODIN][ERROR]: [valheim_server.log]: ERROR: Shader TextMeshPro/Mobile/Distance Field shader is not supported on this GPU (none of subshaders/fallbacks are suitable) valheim | 2024-11-06T05:44:04.350913472Z [ODIN][INFO]: [valheim_server.log]: 11/06/2024 02:44:02: Fetching PlatformPrefs 'GuiScale' before loading defaults valheim | 2024-11-06T05:44:04.350915692Z [ODIN][INFO]: [valheim_server.log]: 11/06/2024 02:44:02: Fetching PlatformPrefs 'GuiScale' before loading defaults valheim | 2024-11-06T05:44:04.350917882Z [ODIN][INFO]: [valheim_server.log]: Unloading 173 unused Assets to reduce memory usage. Loaded Objects now: 2252. valheim | 2024-11-06T05:44:04.350920242Z [ODIN][INFO]: [valheim_server.log]: Total: 1.426050 ms (FindLiveObjects: 0.107220 ms CreateObjectMapping: 0.027760 ms MarkObjects: 1.205790 ms DeleteObjects: 0.085020 ms) valheim | 2024-11-06T05:44:04.350922562Z [ODIN][INFO]: [valheim_server.log]: 11/06/2024 02:44:02: Starting to load scene:start.unity (169d7618616154c03be07e9ad3af5893) valheim | 2024-11-06T05:44:04.350924812Z [ODIN][INFO]: [valheim_server.log]: 11/06/2024 02:44:02: Set background loading budget to Normal valheim | 2024-11-06T05:44:06.883610495Z [ODIN][INFO]: [valheim_server.log]: 11/06/2024 02:44:06: Set background loading budget to High valheim | 2024-11-06T05:45:02.375517447Z [ODIN][INFO]: [auto-backup.out]: [Valheim][steam]: ########################################################################### valheim | 2024-11-06T05:45:02.376103232Z [ODIN][INFO]: [auto-backup.out]: [Valheim][steam]: Valheim Server - Wed Nov 6 02:45:02 -03 2024 Backup Process valheim | 2024-11-06T05:45:07.139068086Z [ODIN][INFO]: [auto-backup.out]: parse error: Invalid numeric literal at line 1, column 6 valheim | 2024-11-06T05:45:07.139487959Z [ODIN][INFO]: [auto-backup.out]: [Valheim][steam]: Skipping backup, no players are online. ^ stuck here ```
fastfetch ``` [ec2-user@ip-xxx ~]$ fastfetch , #_ ec2-user@ip-xxx ~\_ ####_ ----------------------- ~~ \_#####\ OS: Amazon Linux 2023 x86_64 ~~ \###| Host: r7a.medium ~~ \#/ ___ Kernel: Linux 6.1.112-122.189.amzn2023.x86_64 ~~ V~' '-> Uptime: 2 mins ~~~ / Packages: 308 (rpm) ~~._. _/ Shell: bash 5.2.15 _/ _/ Terminal: node _/m/' CPU: AMD EPYC 9R14 @ 3.70 GHz Memory: 1002.68 MiB / 7.55 GiB (13%) Swap: Disabled Disk (/): 3.13 GiB / 3.93 GiB (80%) - xfs Disk (/srv/valheim): 2.56 GiB / 5.94 GiB (43%) - xfs Local IP (enp39s0): xxx Locale: C.UTF-8 ```
g-otn commented 2 weeks ago

Hey @lucrenauld, did you manage to solve this?