lloesche / valheim-server-docker

Valheim dedicated gameserver with automatic update, World backup, BepInEx and ValheimPlus mod support
https://hub.docker.com/r/lloesche/valheim-server
Apache License 2.0
1.91k stars 269 forks source link

Server only accessible over WAN #596

Closed JohnLahr closed 1 year ago

JohnLahr commented 1 year ago

I've noticed that I can only connect to this server in game via my WAN IP or public DNS hostname. When connecting via LAN IP, the connection times out, and nothing is logged in the server. Interestingly, I can access the supervisor and status ports over LAN without issue, so I know the ports are open and listening correctly. I notice this same behavior when running the container on the same machine as the client (via Windows Subsystem for Linux).

A similar issue was posted about this, but the reporter closed it without comment.

My setup is pretty straightforward, and there is no proxy or middleware between the firewall and the server.

Version: 0.214.2

My ConfigMap:

BACKUPS: 'true'
BACKUPS_CRON: 0 * * * *
BACKUPS_DIRECTORY: /config/backups
BACKUPS_IDLE_GRACE_PERIOD: '3600'
BACKUPS_IF_IDLE: 'false'
BACKUPS_MAX_AGE: '3'
BACKUPS_MAX_COUNT: '0'
BEPINEX: 'true'
PERMISSIONS_UMASK: '022'
PGID: '1000'
PUID: '1000'
RESTART_CRON: 20 6 * * *
RESTART_IF_IDLE: 'true'
SERVER_ARGS: '-crossplay'
SERVER_NAME: Valheimr
SERVER_PORT: '2456'
SERVER_PUBLIC: 'true'
STATUS_HTTP: 'true'
STATUS_HTTP_CONF: /config/httpd.conf
STATUS_HTTP_HTDOCS: /opt/valheim/htdocs
STATUS_HTTP_PORT: '80'
STEAMCMD_ARGS: validate
SUPERVISOR_HTTP: 'true'
SUPERVISOR_HTTP_PORT: '9001'
SUPERVISOR_HTTP_USER: admin
TZ: America/Chicago
UPDATE_CRON: '*/15 * * * *'
UPDATE_IF_IDLE: 'true'
VALHEIM_PLUS: 'false'
WORLD_NAME: dedicated
Shawak commented 1 year ago

Did you try to connect via loopback address?

JohnLahr commented 1 year ago

I've tried loopback address and LAN IP both to no avail.

Shawak commented 1 year ago

Whats ur OS? do you run the container using docker?

JohnLahr commented 1 year ago

Running the containerized server on an Ubuntu 22.04 host, but I've also tried locally on Windows 10 (Ubuntu 22.04 via WSL).

IslandJohn commented 1 year ago

My issue (discussion) may be similar, but on a Synology DS920+ (via Docker). Everything seems to indicate the server is running fine, but can't connect via LAN. I've tried both host and bridged networking with appropriate port mappings. Maybe related to https://github.com/lloesche/valheim-server-docker/issues/595?

Shawak commented 1 year ago

Can you provide your docker ps and docker logs output?

IslandJohn commented 1 year ago

I managed to get it work if I enable -crossplay (via invite code or finding it in the server list), but this proxies everything over the Internet to Valheim's servers (I would prefer to connect locally when possible).

CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 601ae30d3836 lloesche/valheim-server:latest "/usr/local/sbin/boo…" 10 hours ago Up 9 hours 0.0.0.0:2456-2457->2456-2457/udp, 0.0.0.0:49178->80/tcp, 0.0.0.0:49177->9001/tcp lloesche-valheim-server1

logs.txt

FYI @JohnLahr from some reading, it looks like if you're running with -crossplay, it's not supposed to be available locally.

I'm specifically trying to not run with -crossplay so I can connect locally.

JohnLahr commented 1 year ago

Sure, @Shawak, here are those logs:

INFO - Setting uid:gid of valheim to 1000:1000
INFO - Setting timezone America/Chicago
INFO - Setting up syslogd - logging to stdout
INFO - Supervisor http server activated
INFO - Status http server activated
2023-03-26 13:43:54,671 INFO Included extra file "/usr/local/etc/supervisor/conf.d/http_server.conf" during parsing
2023-03-26 13:43:54,671 INFO Included extra file "/usr/local/etc/supervisor/conf.d/status_http_server.conf" during parsing
2023-03-26 13:43:54,671 INFO Included extra file "/usr/local/etc/supervisor/conf.d/status_http_server_updater.conf" during parsing
2023-03-26 13:43:54,671 INFO Included extra file "/usr/local/etc/supervisor/conf.d/syslog.conf" during parsing
2023-03-26 13:43:54,671 INFO Set uid to user 0 succeeded
2023-03-26 13:43:54,685 INFO RPC interface 'supervisor' initialized
2023-03-26 13:43:54,685 INFO RPC interface 'supervisor' initialized
2023-03-26 13:43:54,686 INFO supervisord started with pid 1
2023-03-26 13:43:55,704 INFO spawned: 'syslogd' with pid 33
2023-03-26 13:43:55,713 INFO spawned: 'crond' with pid 34
2023-03-26 13:43:55,724 INFO spawned: 'valheim-bootstrap' with pid 35
2023-03-26 13:43:55,736 INFO spawned: 'valheim-status-updater' with pid 36
2023-03-26 13:43:55,747 INFO spawned: 'valheim-status-httpd' with pid 39
Mar 26 13:43:55 syslogd started: BusyBox v1.34.1
Mar 26 13:43:55 cron[34]: (CRON) INFO (pidfile fd = 3)
Mar 26 13:43:55 cron[34]: (CRON) INFO (Running @reboot jobs)
2023-03-26 13:43:55,752 INFO success: valheim-bootstrap entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
Mar 26 13:43:55 supervisord: valheim-bootstrap DEBUG - [35] - Running commit 8f7c21c1a1e4539e1217e0357b12d864d9a0485b
Mar 26 13:43:55 supervisord: valheim-bootstrap DEBUG - [35] - Writing BepInEx config
Mar 26 13:43:55 supervisord: valheim-bootstrap INFO - Syncing BepInEx plugins from /config/bepinex/plugins/ -> /opt/valheim/bepinex/BepInEx/plugins
Mar 26 13:43:55 supervisord: valheim-bootstrap DEBUG - [35] - Writing /config/adminlist.txt
Mar 26 13:43:55 supervisord: valheim-bootstrap DEBUG - [35] - Creating cron to do world backups using schedule 0 * * * *
Mar 26 13:43:55 supervisord: valheim-bootstrap DEBUG - [35] - Creating cron to check for updates using schedule */15 * * * *
Mar 26 13:43:55 supervisord: valheim-bootstrap DEBUG - [35] - Creating cron to restart valheim-server using schedule 20 6 * * *
Mar 26 13:43:55 supervisord: valheim-status-updater 2023-03-26 13:43:55,959 - INFO - Valheim status updater started
Mar 26 13:43:56 crontab[53]: (valheim) REPLACE (valheim)
2023-03-26 13:43:56,549 INFO spawned: 'valheim-updater' with pid 56
Mar 26 13:43:56 supervisord: valheim-updater DEBUG - [56] - Running Valheim Server updater as user valheim uid 1000
Mar 26 13:43:56 supervisord: valheim-updater DEBUG - [56] - Kernel: Linux valheim-74554f9666-zxldv 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64 GNU/Linux
Mar 26 13:43:56 supervisord: valheim-updater DEBUG - [56] - Found CPU with 2497.106 MHz
Mar 26 13:43:56 supervisord: valheim-updater DEBUG - [56] - Memory total/free/available: 32861684/567704/30367656
Mar 26 13:43:56 supervisord: valheim-updater DEBUG - [56] - Storage configuration:
2023-03-26 13:43:57,395 INFO success: syslogd entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
2023-03-26 13:43:57,396 INFO success: crond entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
Mar 26 13:43:57 supervisord: valheim-updater Filesystem                                                                       Size  Used Avail Use% Mounted on
Mar 26 13:43:57 supervisord: valheim-updater overlay                                                                           56G   33G   21G  62% /
Mar 26 13:43:57 supervisord: valheim-updater [redacted]:6789,[redacted]:6789,[redacted]:6789:/services/valheim/config   1.4T  198G  1.2T  14% /config
Mar 26 13:43:57 supervisord: valheim-updater [redacted]:6789,[redacted]:6789,[redacted]:6789:/services/valheim/backups  1.4T  198G  1.2T  14% /config/backups
Mar 26 13:43:57 supervisord: valheim-updater [redacted]:6789,[redacted]:6789,[redacted]:6789:/services/valheim/data     1.4T  198G  1.2T  14% /opt/valheim
Mar 26 13:43:57 supervisord: valheim-updater grep: /etc/mtab: No such file or directory
Mar 26 13:43:57 supervisord: valheim-updater ERROR - Error in line 28 command 'grep -v -E "(/sys/|/etc/|/run/)"' exited with code 1 in ::main::main called in line 306
2023-03-26 13:43:57,842 INFO success: valheim-updater entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
Mar 26 13:43:57 supervisord: valheim-bootstrap valheim-updater: started
Mar 26 13:43:57 supervisord: valheim-updater DEBUG - [56] - Valheim updater was just started - skipping connected players check
Mar 26 13:43:57 supervisord: valheim-updater INFO - Downloading/updating/validating Valheim server from Steam
2023-03-26 13:43:58,262 INFO spawned: 'valheim-backup' with pid 90
Mar 26 13:43:58 supervisord: valheim-backup INFO - Backing up Valheim server worlds to /config/backups/worlds-20230326-134358.zip
Mar 26 13:43:58 supervisord: valheim-backup   adding: config/worlds_local/ (stored 0%)
Mar 26 13:43:58 supervisord: valheim-backup   adding: config/worlds_local/dedicated_backup_auto-20230326025014.db
2023-03-26 13:43:59,326 INFO success: valheim-backup entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
Mar 26 13:43:59 supervisord: valheim-bootstrap valheim-backup: started
2023-03-26 13:43:59,366 INFO exited: valheim-bootstrap (exit status 0; expected)
Mar 26 13:44:02 supervisord: valheim-backup  (deflated 69%)
Mar 26 13:44:02 supervisord: valheim-backup   adding: config/worlds_local/dedicated.db
2023-03-26 13:44:06,624 INFO success: valheim-status-updater entered RUNNING state, process has stayed up for > than 10 seconds (startsecs)
2023-03-26 13:44:06,624 INFO success: valheim-status-httpd entered RUNNING state, process has stayed up for > than 10 seconds (startsecs)
Mar 26 13:44:07 supervisord: valheim-backup  (deflated 69%)
Mar 26 13:44:07 supervisord: valheim-backup   adding: config/worlds_local/dedicated_backup_auto-20230326122032.fwl
Mar 26 13:44:07 supervisord: valheim-backup  (deflated 5%)
Mar 26 13:44:07 supervisord: valheim-backup   adding: config/worlds_local/dedicated_backup_auto-20230326122032.db
Mar 26 13:44:09 supervisord: valheim-updater Redirecting stderr to '/home/valheim/Steam/logs/stderr.txt'
Mar 26 13:44:09 supervisord: valheim-updater [  0%] Checking for available updates...
Mar 26 13:44:09 supervisord: valheim-updater [----] Downloading update (48 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [  0%] Downloading update (2,349 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 11%] Downloading update (4,676 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 22%] Downloading update (5,848 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 27%] Downloading update (6,929 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 32%] Downloading update (7,981 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 37%] Downloading update (8,945 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 42%] Downloading update (9,920 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 46%] Downloading update (10,936 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 51%] Downloading update (11,944 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 56%] Downloading update (12,917 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 60%] Downloading update (13,930 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 65%] Downloading update (15,032 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 70%] Downloading update (16,053 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 75%] Downloading update (17,017 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 80%] Downloading update (18,014 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 84%] Downloading update (18,958 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 89%] Downloading update (19,913 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 93%] Downloading update (20,880 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [ 98%] Downloading update (21,213 of 21,213 KB)...
Mar 26 13:44:09 supervisord: valheim-updater [100%] Download complete.
Mar 26 13:44:09 supervisord: valheim-updater [----] Installing update...
Mar 26 13:44:09 supervisord: valheim-updater [----] Extracting package...
Mar 26 13:44:09 supervisord: valheim-updater [----] Extracting package...
Mar 26 13:44:09 supervisord: valheim-updater [----] Extracting package...
Mar 26 13:44:09 supervisord: valheim-updater [----] Extracting package...
Mar 26 13:44:09 supervisord: valheim-updater [----] Installing update...
Mar 26 13:44:09 supervisord: valheim-updater [----] Installing update...
Mar 26 13:44:09 supervisord: valheim-updater [----] Installing update...
Mar 26 13:44:09 supervisord: valheim-updater [----] Installing update...
Mar 26 13:44:09 supervisord: valheim-updater [----] Installing update...
Mar 26 13:44:09 supervisord: valheim-updater [----] Installing update...
Mar 26 13:44:09 supervisord: valheim-updater [----] Installing update...
Mar 26 13:44:09 supervisord: valheim-updater [----] Installing update...
Mar 26 13:44:09 supervisord: valheim-updater [----] Cleaning up...
Mar 26 13:44:09 supervisord: valheim-updater [----] Update complete, launching Steamcmd...
Mar 26 13:44:11 supervisord: valheim-updater Redirecting stderr to '/home/valheim/Steam/logs/stderr.txt'
Mar 26 13:44:11 supervisord: valheim-updater [  0%] Checking for available updates...
Mar 26 13:44:11 supervisord: valheim-updater [----] Verifying installation...
Mar 26 13:44:11 supervisord: valheim-updater Steam Console Client (c) Valve Corporation - version 1679680174
Mar 26 13:44:11 supervisord: valheim-updater -- type 'quit' to exit --
Mar 26 13:44:11 supervisord: valheim-updater Loading Steam API...OK
Mar 26 13:44:11 supervisord: valheim-updater
Mar 26 13:44:11 supervisord: valheim-updater Connecting anonymously to Steam Public...
Mar 26 13:44:11 supervisord: valheim-backup  (deflated 69%)
Mar 26 13:44:11 supervisord: valheim-backup   adding: config/worlds_local/dedicated_backup_auto-20230325065038.db
Mar 26 13:44:15 supervisord: valheim-backup  (deflated 69%)
Mar 26 13:44:15 supervisord: valheim-backup   adding: config/worlds_local/dedicated_backup_auto-20230326025014.fwl
Mar 26 13:44:15 supervisord: valheim-backup  (deflated 5%)
Mar 26 13:44:15 supervisord: valheim-backup   adding: config/worlds_local/dedicated.db.old
Mar 26 13:44:18 supervisord: valheim-backup  (deflated 69%)
Mar 26 13:44:18 supervisord: valheim-backup   adding: config/worlds_local/dedicated.fwl.old
Mar 26 13:44:18 supervisord: valheim-backup  (deflated 5%)
Mar 26 13:44:18 supervisord: valheim-backup   adding: config/worlds_local/dedicated_backup_auto-20230325065038.fwl
Mar 26 13:44:18 supervisord: valheim-backup  (deflated 5%)
Mar 26 13:44:18 supervisord: valheim-backup   adding: config/worlds_local/dedicated.fwl
Mar 26 13:44:18 supervisord: valheim-backup  (deflated 5%)
Mar 26 13:44:18 supervisord: valheim-backup   adding: config/worlds_local/dedicated_backup_auto-20230325165027.db
Mar 26 13:44:19 supervisord: valheim-updater OK
Mar 26 13:44:19 supervisord: valheim-updater Waiting for client config...OK
Mar 26 13:44:19 supervisord: valheim-updater Waiting for user info...
Mar 26 13:44:22 supervisord: valheim-backup  (deflated 69%)
Mar 26 13:44:22 supervisord: valheim-backup   adding: config/worlds_local/dedicated_backup_auto-20230325165027.fwl
Mar 26 13:44:22 supervisord: valheim-backup  (deflated 5%)
Mar 26 13:44:22 supervisord: valheim-backup INFO - Removing backups older than 3 days
Mar 26 13:44:22 supervisord: valheim-backup /config/backups/worlds-20230323-130005.zip
Mar 26 13:44:22 supervisord: valheim-backup /config/backups/worlds-20230323-120010.zip
Mar 26 13:44:34 supervisord: valheim-updater OK
Mar 26 13:44:34 supervisord: valheim-updater  Update state (0x3) reconfiguring, progress: 0.00 (0 / 0)
Mar 26 13:44:34 supervisord: valheim-updater  Update state (0x5) verifying install, progress: 1.32 (18874368 / 1434074687)
Mar 26 13:44:34 supervisord: valheim-updater  Update state (0x5) verifying install, progress: 11.07 (158821757 / 1434074687)
Mar 26 13:44:34 supervisord: valheim-updater  Update state (0x5) verifying install, progress: 27.73 (397611725 / 1434074687)
Mar 26 13:44:34 supervisord: valheim-updater  Update state (0x5) verifying install, progress: 40.05 (574340311 / 1434074687)
Mar 26 13:44:34 supervisord: valheim-updater  Update state (0x5) verifying install, progress: 55.49 (795752122 / 1434074687)
Mar 26 13:44:34 supervisord: valheim-updater  Update state (0x5) verifying install, progress: 71.13 (1020048907 / 1434074687)
Mar 26 13:44:34 supervisord: valheim-updater  Update state (0x5) verifying install, progress: 93.18 (1336288427 / 1434074687)
Mar 26 13:44:34 supervisord: valheim-updater Success! App '896660' fully installed.
Mar 26 13:44:34 supervisord: valheim-updater CWorkThreadPool::~CWorkThreadPool: work complete queue not empty, 1 items discarded.
Mar 26 13:44:35 supervisord: valheim-updater .d..t...... ./
Mar 26 13:44:35 supervisord: valheim-updater INFO - Valheim Server is already the latest version
Mar 26 13:44:35 supervisord: valheim-updater DEBUG - [56] - BepInEx is enabled - running updater
Mar 26 13:44:35 supervisord: valheim-updater DEBUG - [161] - Local BepInEx archive is identical to remote archive and was successfully installed - no update required
Mar 26 13:44:35 supervisord: valheim-updater DEBUG - [56] - Writing file to start Valheim server
2023-03-26 13:44:36,474 INFO spawned: 'valheim-server' with pid 180
Mar 26 13:44:36 supervisord: valheim-server INFO - Running Valheim Server
Mar 26 13:44:36 supervisord: valheim-server DEBUG - [180] - Server config is name: [redacted], port: 2456/udp, world: dedicated, public: 1, mod: BepInEx
Mar 26 13:44:36 supervisord: valheim-server DEBUG - [180] - Waiting for server to listen on UDP query port 2457
Mar 26 13:44:36 supervisord: valheim-server I0326 13:44:36.517261     189 main.go:76] Configuring Valheim server log filter
Mar 26 13:44:36 supervisord: valheim-server I0326 13:44:36.517644     189 main.go:96] Removing log lines starting with '(Filename:'
Mar 26 13:44:36 supervisord: valheim-server I0326 13:44:36.517699     189 main.go:89] Removing log lines matching ' '
Mar 26 13:44:36 supervisord: valheim-server I0326 13:44:36.517731     189 main.go:125] Removing invalid UTF-8 chars: true
Mar 26 13:44:36 supervisord: valheim-server I0326 13:44:36.517812     189 main.go:122] Removing empty log lines: true
Mar 26 13:44:36 supervisord: valheim-server I0326 13:44:36.517869     189 main.go:96] Removing log lines starting with 'Fallback handler could not load library'
Mar 26 13:44:36 supervisord: valheim-server I0326 13:44:36.517908     189 main.go:96] Removing log lines starting with 'src/steamnetworkingsockets/clientlib/steamnetworkingsockets_lowlevel.cpp'
Mar 26 13:44:36 supervisord: valheim-server Found UnityPlayer, hooking into it instead
Mar 26 13:44:36 supervisord: valheim-server Mono path[0] = '/opt/valheim/bepinex/valheim_server_Data/Managed'
Mar 26 13:44:36 supervisord: valheim-server Mono config path = '/opt/valheim/bepinex/valheim_server_Data/MonoBleedingEdge/etc'
Mar 26 13:44:36 supervisord: valheim-server Got override: ./unstripped_corlib
Mar 26 13:44:36 supervisord: valheim-server Current root dir: /opt/valheim/bepinex/valheim_server_Data/Managed
Mar 26 13:44:36 supervisord: valheim-server New root path: /opt/valheim/bepinex/unstripped_corlib
Mar 26 13:44:36 supervisord: valheim-server Search path: /opt/valheim/bepinex/unstripped_corlib:/opt/valheim/bepinex/valheim_server_Data/Managed
Mar 26 13:44:36 supervisord: valheim-server Setting config paths; basedir: /opt/valheim/bepinex; config: /opt/valheim/bepinex/valheim_server.x86_64.config
Mar 26 13:44:36 supervisord: valheim-server Managed dir: /opt/valheim/bepinex/valheim_server_Data/Managed
Mar 26 13:44:37 supervisord: valheim-server Got image: 0x56386a6c5a20
Mar 26 13:44:38 supervisord: valheim-server Fallback handler could not load library /opt/valheim/bepinex/valheim_server_Data/Mono/data-0x56386b1a8900.so
Mar 26 13:44:38 supervisord: valheim-server [Message:   BepInEx] BepInEx 5.4.21.0 - valheim_server (3/19/2023 3:21:33 PM)
Mar 26 13:44:38 supervisord: valheim-server [Info   :   BepInEx] Running under Unity vUnknown (post-2017)
Mar 26 13:44:38 supervisord: valheim-server [Info   :   BepInEx] CLR runtime version: 4.0.30319.42000
Mar 26 13:44:38 supervisord: valheim-server [Info   :   BepInEx] Supports SRE: True
Mar 26 13:44:38 supervisord: valheim-server [Info   :   BepInEx] System platform: Bits64, Linux
Mar 26 13:44:38 supervisord: valheim-server [Message:   BepInEx] Preloader started
Mar 26 13:44:38 supervisord: valheim-server [Info   :   BepInEx] Loaded 1 patcher method from [BepInEx.Preloader 5.4.21.0]
Mar 26 13:44:38 supervisord: valheim-server [Info   :   BepInEx] 1 patcher plugin loaded
Mar 26 13:44:40 supervisord: valheim-server [Info   :   BepInEx] Patching [UnityEngine.CoreModule] with [BepInEx.Chainloader]
Mar 26 13:44:40 supervisord: valheim-server [Message:   BepInEx] Preloader finished
Mar 26 13:44:41 supervisord: valheim-server Preloaded 'libparty.so'
Mar 26 13:44:41 supervisord: valheim-server Preloaded 'libsteam_api.so'
Mar 26 13:44:41 supervisord: valheim-server Initialize engine version: 2020.3.33f1 (915a7af8b0d5)
Mar 26 13:44:41 supervisord: valheim-server [Subsystems] Discovering subsystems at path /opt/valheim/bepinex/valheim_server_Data/UnitySubsystems
Mar 26 13:44:41 supervisord: valheim-server Forcing GfxDevice: Null
Mar 26 13:44:41 supervisord: valheim-server GfxDevice: creating device client; threaded=0
Mar 26 13:44:41 supervisord: valheim-server NullGfxDevice:
Mar 26 13:44:41 supervisord: valheim-server     Version:  NULL 1.0 [1.0]
Mar 26 13:44:41 supervisord: valheim-server     Renderer: Null Device
Mar 26 13:44:41 supervisord: valheim-server     Vendor:   Unity Technologies
Mar 26 13:44:41 supervisord: valheim-server Begin MonoManager ReloadAssembly
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.AIModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.AIModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.AIModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.AndroidJNIModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.AndroidJNIModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.AndroidJNIModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.AnimationModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.AnimationModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.AnimationModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.AssetBundleModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.AssetBundleModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.AssetBundleModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.AudioModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.AudioModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.AudioModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.ClothModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.ClothModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.ClothModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.CoreModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.CoreModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.CoreModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.DirectorModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.DirectorModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.DirectorModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.GridModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.GridModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.GridModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.IMGUIModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.IMGUIModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.IMGUIModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.ImageConversionModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.ImageConversionModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.ImageConversionModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.InputModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.InputModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.InputModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.InputLegacyModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.InputLegacyModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.InputLegacyModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.JSONSerializeModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.JSONSerializeModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.JSONSerializeModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.ParticleSystemModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.ParticleSystemModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.ParticleSystemModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.PhysicsModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.PhysicsModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.PhysicsModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.Physics2DModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.Physics2DModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.Physics2DModule.dll
Mar 26 13:44:41 supervisord: valheim-server DEBUG - [180] - Waiting for server to listen on UDP query port 2457
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.ScreenCaptureModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.ScreenCaptureModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.ScreenCaptureModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.SharedInternalsModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.SharedInternalsModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.SharedInternalsModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.SpriteShapeModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.SpriteShapeModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.SpriteShapeModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.SubsystemsModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.SubsystemsModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.SubsystemsModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.TerrainModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.TerrainModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.TerrainModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.TextCoreModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.TextCoreModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.TextCoreModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.TextRenderingModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.TextRenderingModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.TextRenderingModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.TilemapModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.TilemapModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.TilemapModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.UIModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.UIModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.UIModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.UIElementsModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.UIElementsModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.UIElementsModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.UIElementsNativeModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.UIElementsNativeModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.UIElementsNativeModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.UnityAnalyticsModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.UnityAnalyticsModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.UnityAnalyticsModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.UnityWebRequestModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.UnityWebRequestModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.UnityWebRequestModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.UnityWebRequestTextureModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.UnityWebRequestTextureModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.UnityWebRequestTextureModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.UnityWebRequestWWWModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.UnityWebRequestWWWModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.UnityWebRequestWWWModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.VFXModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.VFXModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.VFXModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.VRModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.VRModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.VRModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.VideoModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.VideoModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.VideoModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.XRModule.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.XRModule.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.XRModule.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/Assembly-CSharp.dll
Mar 26 13:44:41 supervisord: valheim-server Base: Assembly-CSharp.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/assembly_postprocessing.dll
Mar 26 13:44:41 supervisord: valheim-server Base: assembly_postprocessing.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/PlayFabParty.dll
Mar 26 13:44:41 supervisord: valheim-server Base: PlayFabParty.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/Unity.InputSystem.dll
Mar 26 13:44:41 supervisord: valheim-server Base: Unity.InputSystem.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/UnityEngine.UI.dll
Mar 26 13:44:41 supervisord: valheim-server Base: UnityEngine.UI.dll
Mar 26 13:44:41 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/UnityEngine.UI.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/assembly_guiutils.dll
Mar 26 13:44:41 supervisord: valheim-server Base: assembly_guiutils.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/assembly_lux.dll
Mar 26 13:44:41 supervisord: valheim-server Base: assembly_lux.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/assembly_valheim.dll
Mar 26 13:44:41 supervisord: valheim-server Base: assembly_valheim.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/assembly_simplemeshcombine.dll
Mar 26 13:44:41 supervisord: valheim-server Base: assembly_simplemeshcombine.dll
Mar 26 13:44:41 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/PlayFab.dll
Mar 26 13:44:41 supervisord: valheim-server Base: PlayFab.dll
Mar 26 13:44:42 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/Unity.TextMeshPro.dll
Mar 26 13:44:42 supervisord: valheim-server Base: Unity.TextMeshPro.dll
Mar 26 13:44:42 supervisord: valheim-server Redirecting to /opt/valheim/bepinex/unstripped_corlib/Unity.TextMeshPro.dll
Mar 26 13:44:42 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/assembly_utils.dll
Mar 26 13:44:42 supervisord: valheim-server Base: assembly_utils.dll
Mar 26 13:44:42 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/Fishlabs.Core.dll
Mar 26 13:44:42 supervisord: valheim-server Base: Fishlabs.Core.dll
Mar 26 13:44:42 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/assembly_sunshafts.dll
Mar 26 13:44:42 supervisord: valheim-server Base: assembly_sunshafts.dll
Mar 26 13:44:42 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/assembly_googleanalytics.dll
Mar 26 13:44:42 supervisord: valheim-server Base: assembly_googleanalytics.dll
Mar 26 13:44:42 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/Fishlabs.Common.dll
Mar 26 13:44:42 supervisord: valheim-server Base: Fishlabs.Common.dll
Mar 26 13:44:42 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/assembly_steamworks.dll
Mar 26 13:44:42 supervisord: valheim-server Base: assembly_steamworks.dll
Mar 26 13:44:42 supervisord: valheim-server Load DLL: /opt/valheim/bepinex/valheim_server_Data/Managed/ConnectedStorage.dll
Mar 26 13:44:42 supervisord: valheim-server Base: ConnectedStorage.dll
Mar 26 13:44:42 supervisord: valheim-server - Completed reload, in  0.797 seconds
Mar 26 13:44:42 supervisord: valheim-server ERROR: Shader Sprites/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:42 supervisord: valheim-server ERROR: Shader Sprites/Mask shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:42 supervisord: valheim-server ERROR: Shader GUI/Text Shader shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:42 supervisord: valheim-server UnloadTime: 1.353095 ms
Mar 26 13:44:42 supervisord: valheim-server [Message:   BepInEx] BepInEx 5.4.21.0 - valheim_server (3/19/2023 3:21:33 PM)
Mar 26 13:44:42 supervisord: valheim-server [Info   :   BepInEx] Running under Unity vUnknown (post-2017)
Mar 26 13:44:42 supervisord: valheim-server [Info   :   BepInEx] CLR runtime version: 4.0.30319.42000
Mar 26 13:44:42 supervisord: valheim-server [Info   :   BepInEx] Supports SRE: True
Mar 26 13:44:42 supervisord: valheim-server [Info   :   BepInEx] System platform: Bits64, Linux
Mar 26 13:44:42 supervisord: valheim-server [Message:   BepInEx] Preloader started
Mar 26 13:44:42 supervisord: valheim-server [Info   :   BepInEx] Loaded 1 patcher method from [BepInEx.Preloader 5.4.21.0]
Mar 26 13:44:42 supervisord: valheim-server [Info   :   BepInEx] 1 patcher plugin loaded
Mar 26 13:44:42 supervisord: valheim-server [Info   :   BepInEx] Patching [UnityEngine.CoreModule] with [BepInEx.Chainloader]
Mar 26 13:44:42 supervisord: valheim-server [Message:   BepInEx] Preloader finished
Mar 26 13:44:42 supervisord: valheim-server [Info   :   BepInEx] Detected Unity version: v2020.3.33f1
Mar 26 13:44:42 supervisord: valheim-server [Message:   BepInEx] Chainloader ready
Mar 26 13:44:42 supervisord: valheim-server [Message:   BepInEx] Chainloader started
Mar 26 13:44:42 supervisord: valheim-server [Info   :   BepInEx] 1 plugins to load
Mar 26 13:44:42 supervisord: valheim-server [Info   :   BepInEx] Loading [Display BepInEx Info In-Game 2.0.1]
Mar 26 13:44:42 supervisord: valheim-server [Message:   BepInEx] Chainloader startup complete
Mar 26 13:44:42 supervisord: valheim-server 03/26/2023 13:44:42: Starting to load scene:start
Mar 26 13:44:43 supervisord: valheim-server ERROR: Shader UI/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:44 supervisord: valheim-server 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.
Mar 26 13:44:44 supervisord: valheim-server 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.
2023-03-26 13:44:46,533 INFO success: valheim-server entered RUNNING state, process has stayed up for > than 10 seconds (startsecs)
Mar 26 13:44:46 supervisord: valheim-server DEBUG - [180] - Waiting for server to listen on UDP query port 2457
Mar 26 13:44:46 supervisord: valheim-updater valheim-server: started
Mar 26 13:44:48 supervisord: valheim-server Unloading 6 Unused Serialized files (Serialized files now loaded: 0)
Mar 26 13:44:49 supervisord: valheim-server ERROR: Shader TextMeshPro/Mobile/Distance Field shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:49 supervisord: valheim-server ERROR: Shader Unlit/Color shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:49 supervisord: valheim-server ERROR: Shader Legacy Shaders/VertexLit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Unsupported: 'Autodesk Interactive' - All subshaders removed
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Did you use #pragma only_renderers and omit this platform?
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
Mar 26 13:44:49 supervisord: valheim-server ERROR: Shader Autodesk Interactive shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Unsupported: 'Autodesk Interactive' - All subshaders removed
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Did you use #pragma only_renderers and omit this platform?
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Unsupported: 'TextMeshPro/Distance Field' - All subshaders removed
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Did you use #pragma only_renderers and omit this platform?
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
Mar 26 13:44:49 supervisord: valheim-server ERROR: Shader TextMeshPro/Distance Field shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Unsupported: 'TextMeshPro/Distance Field' - All subshaders removed
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Did you use #pragma only_renderers and omit this platform?
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
Mar 26 13:44:49 supervisord: valheim-server Shader 'Lux Lit Particles/ Tess Bumped': fallback shader 'Lux Lit Particles/ Bumped Smoke' not found
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Unsupported: 'Lux Lit Particles/ Tess Bumped' - All subshaders removed
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Did you use #pragma only_renderers and omit this platform?
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
Mar 26 13:44:49 supervisord: valheim-server ERROR: Shader Lux Lit Particles/ Tess Bumped shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Unsupported: 'Lux Lit Particles/ Tess Bumped' - All subshaders removed
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Did you use #pragma only_renderers and omit this platform?
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Unsupported: 'Standard' - All subshaders removed
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Did you use #pragma only_renderers and omit this platform?
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
Mar 26 13:44:49 supervisord: valheim-server ERROR: Shader Standard shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Unsupported: 'Standard' - All subshaders removed
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Did you use #pragma only_renderers and omit this platform?
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
Mar 26 13:44:49 supervisord: valheim-server ERROR: Shader Legacy Shaders/Particles/Alpha Blended Premultiply shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:49 supervisord: valheim-server ERROR: Shader Legacy Shaders/Particles/Additive shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:49 supervisord: valheim-server ERROR: Shader Legacy Shaders/Particles/Alpha Blended shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:49 supervisord: valheim-server ERROR: Shader Lux Lit Particles/ Bumped shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Unsupported: 'Standard (Specular setup)' - All subshaders removed
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Did you use #pragma only_renderers and omit this platform?
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
Mar 26 13:44:49 supervisord: valheim-server ERROR: Shader Standard (Specular setup) shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Unsupported: 'Standard (Specular setup)' - All subshaders removed
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader Did you use #pragma only_renderers and omit this platform?
Mar 26 13:44:49 supervisord: valheim-server WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
Mar 26 13:44:49 supervisord: valheim-server UnloadTime: 18.649196 ms
Mar 26 13:44:49 supervisord: valheim-server Only custom filters can be played. Please add a custom filter or an audioclip to the audiosource (Amb_MainMenu).
Mar 26 13:44:49 supervisord: valheim-server HDR Render Texture not supported, disabling HDR on reflection probe.
Mar 26 13:44:49 supervisord: valheim-server 03/26/2023 13:44:49: Get create world dedicated
Mar 26 13:44:49 supervisord: valheim-server 03/26/2023 13:44:49: Using environment steamid [redacted]
Mar 26 13:44:49 supervisord: valheim-server 03/26/2023 13:44:49: Using steam APPID:[redacted]
Mar 26 13:44:49 supervisord: valheim-server [S_API] SteamAPI_Init(): Loaded local 'steamclient.so' OK.
Mar 26 13:44:49 supervisord: valheim-server CAppInfoCacheReadFromDiskThread took 13 milliseconds to initialize
Mar 26 13:44:49 supervisord: valheim-server Setting breakpad minidump AppID = [redacted]
Mar 26 13:44:49 supervisord: valheim-server [S_API FAIL] Tried to access Steam interface SteamNetworkingUtils003 before SteamAPI_Init succeeded.
Mar 26 13:44:49 supervisord: valheim-server 03/26/2023 13:44:49: Server ID [redacted]
Mar 26 13:44:49 supervisord: valheim-server 03/26/2023 13:44:49: Authentication:k_ESteamNetworkingAvailability_Waiting
Mar 26 13:44:49 supervisord: valheim-server 03/26/2023 13:44:49: Steam game server initialized
Mar 26 13:44:49 supervisord: valheim-server 03/26/2023 13:44:49: Using default prefs
Mar 26 13:44:49 supervisord: valheim-server 03/26/2023 13:44:49: Valheim version:0.214.2
Mar 26 13:44:49 supervisord: valheim-server 03/26/2023 13:44:49: Worldgenerator version setup:2
Mar 26 13:44:49 supervisord: valheim-server ERROR: Shader TextMeshPro/Sprite shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
Mar 26 13:44:49 supervisord: valheim-server 03/26/2023 13:44:49: Render threading mode:SingleThreaded
Mar 26 13:44:49 supervisord: valheim-server 03/26/2023 13:44:49: Missing audio clip in music respawn
Mar 26 13:44:49 supervisord: valheim-server 03/26/2023 13:44:49: Builder started
Mar 26 13:44:51 supervisord: valheim-server DEBUG - [180] - Server is now listening on UDP query port 2457
Mar 26 13:44:51 supervisord: valheim-server 03/26/2023 13:44:51: Loaded localization file #0 - 'localization' language: 'English'
Mar 26 13:44:51 supervisord: valheim-server 03/26/2023 13:44:51: Loaded localization file #1 - 'localization_extra' language: 'English'
Mar 26 13:44:51 supervisord: valheim-server 03/26/2023 13:44:51: Sending PlayFab login request (attempt 1)
Mar 26 13:44:51 supervisord: valheim-server 03/26/2023 13:44:51: Login postponed until ID has been set.
Mar 26 13:44:51 supervisord: valheim-server The shader Hidden/Dof/DepthOfFieldHdr (UnityEngine.Shader) on effect Main Camera (UnityStandardAssets.ImageEffects.DepthOfField) is not supported on this platform!
Mar 26 13:44:51 supervisord: valheim-server The image effect Main Camera (UnityStandardAssets.ImageEffects.DepthOfField) has been disabled as it's not supported on the current platform.
Mar 26 13:44:51 supervisord: valheim-server The shader Hidden/SunShaftsComposite (UnityEngine.Shader) on effect Main Camera (UnityStandardAssets.ImageEffects.SunShafts) is not supported on this platform!
Mar 26 13:44:51 supervisord: valheim-server The shader Hidden/SimpleClear (UnityEngine.Shader) on effect Main Camera (UnityStandardAssets.ImageEffects.SunShafts) is not supported on this platform!
Mar 26 13:44:51 supervisord: valheim-server The image effect Main Camera (UnityStandardAssets.ImageEffects.SunShafts) has been disabled as it's not supported on the current platform.
Mar 26 13:44:52 supervisord: valheim-server 03/26/2023 13:44:52: Game server connected
Mar 26 13:44:52 supervisord: valheim-server 03/26/2023 13:44:52: Starting music menu
Mar 26 13:44:52 supervisord: valheim-server 03/26/2023 13:44:52: UI Group status changed Menu = True
Mar 26 13:44:52 supervisord: valheim-server Unloading 17 unused Assets to reduce memory usage. Loaded Objects now: 138017.
Mar 26 13:44:52 supervisord: valheim-server Total: 145.888150 ms (FindLiveObjects: 13.866461 ms CreateObjectMapping: 23.904147 ms MarkObjects: 107.698492 ms  DeleteObjects: 0.417978 ms)
Mar 26 13:44:53 supervisord: valheim-server Unloading 6 Unused Serialized files (Serialized files now loaded: 0)
Mar 26 13:44:53 supervisord: valheim-server UnloadTime: 42.469456 ms
Mar 26 13:44:53 supervisord: valheim-server HDR Render Texture not supported, disabling HDR on reflection probe.
Mar 26 13:44:53 supervisord: valheim-server HDR Render Texture not supported, disabling HDR on reflection probe.
Mar 26 13:44:53 supervisord: valheim-server 03/26/2023 13:44:53: Using default prefs
Mar 26 13:44:53 supervisord: valheim-server 03/26/2023 13:44:53: isModded: True
Mar 26 13:44:53 supervisord: valheim-server 03/26/2023 13:44:53: Zonesystem Awake 110876
Mar 26 13:44:53 supervisord: valheim-server 03/26/2023 13:44:53: DungeonDB Awake 110876
Mar 26 13:44:53 supervisord: valheim-server 03/26/2023 13:44:53: Registering lobby
Mar 26 13:44:53 supervisord: valheim-server 03/26/2023 13:44:53: PlayFab custom ID set to "PlayFab_[redacted]_2456_[redacted]"
Mar 26 13:44:53 supervisord: valheim-server 03/26/2023 13:44:53: Sending PlayFab login request (attempt 2)
Mar 26 13:44:53 supervisord: valheim-server 03/26/2023 13:44:53: Worldgenerator version setup:1
Mar 26 13:44:56 supervisord: valheim-server 03/26/2023 13:44:56: Audioman already exist, destroying self
Mar 26 13:44:56 supervisord: valheim-server 03/26/2023 13:44:56: PlayFab logged in as "PlayFab_[redacted]_2456_[redacted]"
Mar 26 13:44:56 supervisord: valheim-server 03/26/2023 13:44:56: PlayFab local entity ID is [redacted]
Mar 26 13:44:56 supervisord: valheim-server 03/26/2023 13:44:56: New session server "[redacted]" that has join code , now 0 player(s)
Mar 26 13:44:56 supervisord: valheim-server 03/26/2023 13:44:56: Register PlayFab server "[redacted]" with IP [redacted]:2456
Mar 26 13:44:56 supervisord: valheim-server 03/26/2023 13:44:56: Server '[redacted]' begin PlayFab create and join network for server
Mar 26 13:44:57 supervisord: valheim-server Unloading 103 unused Assets to reduce memory usage. Loaded Objects now: 142145.
Mar 26 13:44:57 supervisord: valheim-server Total: 184.866515 ms (FindLiveObjects: 11.679055 ms CreateObjectMapping: 30.743714 ms MarkObjects: 140.432629 ms  DeleteObjects: 2.010026 ms)
Mar 26 13:45:01 CRON[313]: pam_unix(cron:session): session opened for user valheim(uid=1000) by (uid=0)
Mar 26 13:45:01 CRON[314]: (valheim) CMD ([ -f "/var/run/valheim/valheim-updater.pid" ] && kill -HUP $(cat /var/run/valheim/valheim-updater.pid))
Mar 26 13:45:01 CRON[313]: pam_unix(cron:session): session closed for user valheim
Mar 26 13:45:04 supervisord: valheim-updater DEBUG - [56] - Received signal to check for update
Mar 26 13:45:04 supervisord: valheim-updater DEBUG - [56] - Kernel: Linux valheim-74554f9666-zxldv 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64 GNU/Linux
Mar 26 13:45:04 supervisord: valheim-updater DEBUG - [56] - Found CPU with 2497.106 MHz
Mar 26 13:45:04 supervisord: valheim-updater DEBUG - [56] - Memory total/free/available: 32861684/548300/29014208
Mar 26 13:45:04 supervisord: valheim-updater DEBUG - [56] - Storage configuration:
Mar 26 13:45:04 supervisord: valheim-updater Filesystem                                                                       Size  Used Avail Use% Mounted on
Mar 26 13:45:04 supervisord: valheim-updater overlay                                                                           56G   33G   21G  62% /
Mar 26 13:45:04 supervisord: valheim-updater [redacted]:6789,[redacted]:6789,[redacted]:6789:/services/valheim/config   1.4T  197G  1.2T  14% /config
Mar 26 13:45:04 supervisord: valheim-updater [redacted]:6789,[redacted]:6789,[redacted]:6789:/services/valheim/backups  1.4T  197G  1.2T  14% /config/backups
Mar 26 13:45:04 supervisord: valheim-updater [redacted]:6789,[redacted]:6789,[redacted]:6789:/services/valheim/data     1.4T  197G  1.2T  14% /opt/valheim
Mar 26 13:45:04 supervisord: valheim-updater grep: /etc/mtab: No such file or directory
Mar 26 13:45:07 supervisord: valheim-updater DEBUG - [56] - No players connected to Valheim server
Mar 26 13:45:07 supervisord: valheim-updater INFO - Downloading/updating/validating Valheim server from Steam
Mar 26 13:45:10 supervisord: valheim-server 03/26/2023 13:45:10: Zonesystem Start 110876
Mar 26 13:45:10 supervisord: valheim-updater Redirecting stderr to '/home/valheim/Steam/logs/stderr.txt'
Mar 26 13:45:10 supervisord: valheim-updater [  0%] Checking for available updates...
Mar 26 13:45:10 supervisord: valheim-updater [----] Verifying installation...
Mar 26 13:45:10 supervisord: valheim-updater Steam Console Client (c) Valve Corporation - version 1679680174
Mar 26 13:45:10 supervisord: valheim-updater -- type 'quit' to exit --
Mar 26 13:45:10 supervisord: valheim-updater Loading Steam API...OK
Mar 26 13:45:10 supervisord: valheim-updater
Mar 26 13:45:10 supervisord: valheim-updater Connecting anonymously to Steam Public...
Mar 26 13:45:11 supervisord: valheim-server 03/26/2023 13:45:11: Added 3 locations, 0 vegetations, 0 environments, 0 biome env-setups, 0 clutter  from locations_cp1
Mar 26 13:45:11 supervisord: valheim-server 03/26/2023 13:45:11: Added 1 locations, 0 vegetations, 1 environments, 0 biome env-setups, 0 clutter  from locations_mountaincaves
Mar 26 13:45:11 supervisord: valheim-server 03/26/2023 13:45:11: Added 27 locations, 25 vegetations, 5 environments, 1 biome env-setups, 3 clutter  from locations_mistlands
Mar 26 13:45:12 supervisord: valheim-updater OK
Mar 26 13:45:12 supervisord: valheim-updater Waiting for client config...OK
Mar 26 13:45:12 supervisord: valheim-updater Waiting for user info...
Mar 26 13:45:12 supervisord: valheim-server 03/26/2023 13:45:12: DungeonDB Start 110876
Mar 26 13:45:13 supervisord: valheim-server 03/26/2023 13:45:13: ZRpc timeout set to 30s
Mar 26 13:45:13 supervisord: valheim-server 03/26/2023 13:45:13: Load world: Dedicated (dedicated)
Mar 26 13:45:13 supervisord: valheim-server 03/26/2023 13:45:13: Loading [redacted] zdos , my id -895219008 data version:29
Mar 26 13:45:17 supervisord: valheim-server 03/26/2023 13:45:17: Loaded 100000 dead zdos
Mar 26 13:45:18 supervisord: valheim-server 03/26/2023 13:45:18: Removed 0 OLD generated ZDOS
Mar 26 13:45:18 supervisord: valheim-server 03/26/2023 13:45:18: Loaded 9860 locations
Mar 26 13:45:18 supervisord: valheim-server 03/26/2023 13:45:18: Unloading unused assets
Mar 26 13:45:18 supervisord: valheim-server Unloading 10 Unused Serialized files (Serialized files now loaded: 0)
Mar 26 13:45:18 supervisord: valheim-server The shader Hidden/Dof/DepthOfFieldHdr (UnityEngine.Shader) on effect Main Camera (UnityStandardAssets.ImageEffects.DepthOfField) is not supported on this platform!
Mar 26 13:45:18 supervisord: valheim-server The image effect Main Camera (UnityStandardAssets.ImageEffects.DepthOfField) has been disabled as it's not supported on the current platform.
Mar 26 13:45:18 supervisord: valheim-server The shader Hidden/SunShaftsComposite (UnityEngine.Shader) on effect Main Camera (UnityStandardAssets.ImageEffects.SunShafts) is not supported on this platform!
Mar 26 13:45:18 supervisord: valheim-server The shader Hidden/SimpleClear (UnityEngine.Shader) on effect Main Camera (UnityStandardAssets.ImageEffects.SunShafts) is not supported on this platform!
Mar 26 13:45:18 supervisord: valheim-server The image effect Main Camera (UnityStandardAssets.ImageEffects.SunShafts) has been disabled as it's not supported on the current platform.
Mar 26 13:45:19 supervisord: valheim-updater OK
Mar 26 13:45:19 supervisord: valheim-updater  Update state (0x5) verifying install, progress: 0.07 (1048908 / 1434074687)
Mar 26 13:45:19 supervisord: valheim-updater  Update state (0x5) verifying install, progress: 20.81 (298502599 / 1434074687)
Mar 26 13:45:19 supervisord: valheim-updater  Update state (0x5) verifying install, progress: 57.75 (828131582 / 1434074687)
Mar 26 13:45:19 supervisord: valheim-updater  Update state (0x5) verifying install, progress: 94.73 (1358496715 / 1434074687)
Mar 26 13:45:19 supervisord: valheim-updater Success! App '896660' fully installed.
Mar 26 13:45:19 supervisord: valheim-updater .d..t...... ./
Mar 26 13:45:19 supervisord: valheim-updater INFO - Valheim Server is already the latest version
Mar 26 13:45:19 supervisord: valheim-updater DEBUG - [56] - BepInEx is enabled - running updater
Mar 26 13:45:19 supervisord: valheim-updater DEBUG - [397] - Local BepInEx archive is identical to remote archive and was successfully installed - no update required
Mar 26 13:45:21 supervisord: valheim-server Unloading 10 unused Assets to reduce memory usage. Loaded Objects now: 1660929.
Mar 26 13:45:21 supervisord: valheim-server Total: 2503.478432 ms (FindLiveObjects: 500.921247 ms CreateObjectMapping: 225.074003 ms MarkObjects: 1775.383508 ms  DeleteObjects: 2.097965 ms)
Mar 26 13:45:21 supervisord: valheim-server 03/26/2023 13:45:21: PlayFab reconnect server '[redacted]'
Mar 26 13:45:21 supervisord: valheim-server 03/26/2023 13:45:21: Server '[redacted]' begin PlayFab create and join network for server
Mar 26 13:45:24 supervisord: valheim-server 03/26/2023 13:45:24: Joined PlayFab Party network with ID "[redacted]|[redacted]"
Mar 26 13:45:24 supervisord: valheim-server 03/26/2023 13:45:24: PlayFab network error in session '[redacted]' and network [redacted]|[redacted] with type 'Error' and code '4133': cannot create an endpoint because the limit specified by the network configuration has been reached
Mar 26 13:45:24 supervisord: valheim-server 03/26/2023 13:45:24: Created PlayFab lobby with ID "[redacted]", ConnectionString "cv1:[redacted]|[redacted]|kv1|cv1:[redacted]" and owned by "[redacted]"
Mar 26 13:45:24 supervisord: valheim-server 03/26/2023 13:45:24: Session "[redacted]" registered with join code [redacted]
Mar 26 13:45:24 supervisord: valheim-server 03/26/2023 13:45:24: Retry join-code check 99
Mar 26 13:45:42 supervisord: valheim-server ResetParty
Mar 26 13:45:42 supervisord: valheim-server Task: CleanPartyTask
Mar 26 13:45:42 supervisord: valheim-server Task: InitPartyTask()
Mar 26 13:45:54 supervisord: valheim-server 03/26/2023 13:45:54: PlayFab reconnect server '[redacted]'
Mar 26 13:45:54 supervisord: valheim-server 03/26/2023 13:45:54: Server '[redacted]' begin PlayFab create and join network for server
Mar 26 13:45:56 supervisord: valheim-server 03/26/2023 13:45:56: Joined PlayFab Party network with ID "[redacted]|[redacted]"
Mar 26 13:45:56 supervisord: valheim-server 03/26/2023 13:45:56: Created PlayFab lobby with ID "[redacted]", ConnectionString "[redacted]" and owned by "[redacted]"
Mar 26 13:45:56 supervisord: valheim-server 03/26/2023 13:45:56: Session "[redacted]" registered with join code [redacted]
Mar 26 13:45:57 supervisord: valheim-server 03/26/2023 13:45:57: Session "[redacted]" with join code [redacted] and IP [redacted]:2456 is active with 0 player(s)
Mar 26 13:45:57 supervisord: valheim-server 03/26/2023 13:45:57: Session "[redacted]" with join code [redacted] and IP [redacted]:2456 is active with 0 player(s)
Mar 26 13:51:56 supervisord: valheim-server 03/26/2023 13:51:56: Update PlayFab entity token
Mar 26 13:55:21 supervisord: valheim-server 03/26/2023 13:55:21:  Connections 0 ZDOS:[redacted]  sent:0 recv:0

I didn't notice this line until I grabbed this logs for you, but could this be related?

Mar 26 13:45:24 supervisord: valheim-server 03/26/2023 13:45:24: PlayFab network error in session '[redacted]' and network [redacted]|[redacted] with type 'Error' and code '4133': cannot create an endpoint because the limit specified by the network configuration has been reached

Anyway, you can see here that there isn't even a join attempt happening when using the local IP.

JohnLahr commented 1 year ago

Shoot, @IslandJohn, are you sure about that? If that's the case, that certainly answers the question of what's going on here, but that would be pretty disappointing, as disabling crossplay isn't an option for me. Most of my users are on Xbox.

IslandJohn commented 1 year ago

@JohnLahr this is the quote from “Valheim Dedicated Server” Instruction Manual (the PDF is in the data/server host path):

If you’re using the Crossplay backend, the server transmits data via a relay server and therefore does not require Port Forwarding to be accessible from outside of your local network. You can connect to a Crossplay server using the public IP address and port number, a join code or via the server list, however it’s not possible to connect using a local IP address or a loopback IP address.

It's not clear why (is it because there's no listening ports on such a server due to the relay setup?). However, from my understanding, Xbox and PC versions from the Microsoft Store should be able to connect to dedicated servers that are running without the -crossplay argument.

I can't seem to connect via local ports regardless of -crossplay or not. But I've only tried with the MS Store versions. I'll have to try with the Steam version of the client as well.

Shawak commented 1 year ago

I could imagine relay networking not working with the default bridge docker network, try setting network_mode: "host" in the docker-compose.yml.

IslandJohn commented 1 year ago

@shawak for me, relaying mode (-crossplay) works fine in both bridge and host networking. It's the non-crossplay (dedicated) mode that doesn't seems to work in either case. My Microsoft Store client can't seem to connect to the instance.

IslandJohn commented 1 year ago

@shawak for me, relaying mode (-crossplay) works fine in both bridge and host networking. It's the non-crossplay (dedicated) mode that doesn't seems to work in either case. My Microsoft Store client can't seem to connect to the instance.

IslandJohn commented 1 year ago

@shawak for me, relaying mode (-crossplay) works fine in both bridge and host networking. It's the non-crossplay (dedicated) mode that doesn't seems to work in either case. My Microsoft Store client can't seem to connect to the instance.

IslandJohn commented 1 year ago

@shawak for me, relaying mode (-crossplay) works fine in both bridge and host networking. It's the non-crossplay (dedicated) mode that doesn't seems to work in either case. My Microsoft Store client can't seem to connect to the instance.

IslandJohn commented 1 year ago

@Shawak For me, relaying mode (-crossplay) works fine in both bridge and host networking. It's the non-crossplay (dedicated) mode that doesn't seems to work in either case. My Microsoft Store client can't seem to connect to the instance.

wcdanh2 commented 1 year ago

From my understanding "-crossplay" is needed to allow clients using the MS store version to connect. When crossplay is enabled the "normal" steam methods are not available and all clients will use the crossplay mechanism and therefore will have to use the external ip and proxying.

wcdanh2 commented 1 year ago

From my understanding "-crossplay" is needed to allow clients using the MS store version to connect. When crossplay is enabled the "normal" steam methods are not available and all clients will use the crossplay mechanism and therefore will have to use the external ip and proxying.

wcdanh2 commented 1 year ago

From my understanding "-crossplay" is needed to allow clients using the MS store version to connect. When crossplay is enabled the "normal" steam methods are not available and all clients will use the crossplay mechanism and therefore will have to use the external ip and proxying.

IslandJohn commented 1 year ago

The MS Store version has an option to connect via "IP", but perhaps that has to be an external or PlayFab target.

wcdanh2 commented 1 year ago

The MS Store version has an option to connect via "IP", but perhaps that has to be an external or PlayFab target.

Yes, it still uses the proxying to avoid the port forwarding requirement.

JackTheFragger commented 1 year ago

This is a Valheim-specific "issue". The Readme for this container wss edited for this behavior. It's not an issue with this container and should be closed here.

LAN-Play is only possible with Steam and crossplay disabled.