Page MenuHomeFeedback Tracker

Client early disconnect. Server Hosting Problems
New, NormalPublic

Description

Someties my server get frozen and all players can`t Entering in.
In logs I have:
Client #number_of_player early disconnect
At the same time in my "profiles/config" folder created FROZEN MDMP Damps.
Even after next restart server still frozen.
In ctrl+alt+del I noticed that task with DayZ Server still running after closing window, so I need manally kill the task. Who knows what it can be?Someties my server get frozen and all players can`t Entering in.
In logs I have:
Client #number_of_player early disconnect
At the same time in my "profiles/config" folder created FROZEN MDMP Damps.
Even after next restart server still frozen.
In ctrl+alt+del I noticed that task with DayZ Server still running after closing window, so I need manally kill the task. Who knows what it can be?

Details

Severity
Crash
Resolution
Open
Reproducibility
Sometimes
Operating System
Windows 10 x64
Operating System Version
Last Windows 10 Pro
Category
Server
Steps To Reproduce

Wait until next morning

Additional Information

Hosted in my own second PC
Have script for automatic restarts + auutokick
Have BEC
Have custoom start.bat

Event Timeline

Server Specifications:
i3-8300
8Gb RAM
SSD
Maximum player count at once was 5 players.

Here is start.bat cause it won`t upload:

@Echo off
TITLE BluMoon - Status
COLOR 0A

:: DEFINE the following variables where applicable to your install
SET DayZServerPath="C:\Program Files (x86)\Steam\steamapps\common\DayZServer"
SET BECPath="C:\Program Files (x86)\Steam\steamapps\common\DayZServer\bec"
:: _______________________________________________________________

goto checkServer
pause

:checkServer
tasklist /fi "imagename eq DayZServer_x64.exe" 2>NUL | find /i /n "DayZServer_x64.exe">NUL
if "%ERRORLEVEL%"=="0" goto checkBEC
cls
echo Server is not running, taking care of it..
goto killServer

:checkBEC
tasklist /fi "imagename eq BEC.exe" 2>NUL | find /i /n "BEC.exe">NUL
if "%ERRORLEVEL%"=="0" goto loopServer
cls
echo Bec is not running, taking care of it..
goto startBEC

:loopServer
FOR /L %%s IN (30,-1,0) DO (

cls
echo Server is running. Checking again in %%s seconds.. 
timeout 1 >nul

)
goto checkServer

:killServer
taskkill /f /im Bec.exe
taskkill /f /im DayZServer_x64.exe
goto startServer

:startServer
cls
echo Starting DayZ Server.
timeout 1 >nul
cls
echo Starting DayZ Server..
timeout 1 >nul
cls
echo Starting DayZ Server...
cd "%DayZServerPath%"
start "DayZ Server" /min "DayZServer_x64.exe" -config=serverDZ.cfg -port=2302 "-profiles=config" -cpuCount=4 -dologs -adminlog -netlog -freezecheck "-mod=@CF;@DF;@COT;@EXP-CORE;@EXP;@EXP-LICENSED;@EXP-VEHICLES;@EXP-NAMETAGS;@EXP-CHAT;@EXP-GROUPS;@EXP-BOOK;@EXP-ASSETS;@EXP-ANIM;@EXP-SPAWN;@EXP-BB;@EXP-MAP;@EXP-MISSIONS;@EXP-WEAPONS;@DRONES;@ANIM-HELI;@Flip;@Snafu" "-BEpath=C:\Program Files (x86)\Steam\steamapps\common\DayZServer\battleye"
FOR /l %%s IN (45,-1,0) DO (

cls
echo Initializing server, wait %%s seconds to initialize BEC.. 
timeout 1 >nul

)
goto startBEC

:startBEC
cls
echo Starting BEC.
timeout 1 >nul
cls
echo Starting BEC..
timeout 1 >nul
cls
echo Starting BEC...
timeout 1 >nul
cd "%BECPath%"
start Bec.exe -f Config.cfg --dsc
goto checkServer