Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Server01.ldf and RockAndRollITS

Junior Spellweaver
Joined
Apr 9, 2014
Messages
143
Reaction score
19
The RockAndRollITS log file sometimes starts to weigh large, what is it connected with and how is it treated? Also Server01.ldf is starting to take on a lot of weight. Who faced this problem and how is it solved?
skronix - Server01.ldf and RockAndRollITS - RaGEZONE Forums
 
Junior Spellweaver
Joined
Apr 9, 2014
Messages
143
Reaction score
19
Well my secret is simple, restarting Rockandrollits every 4 hours. It's not causing anything on running server but avoid the generating of buglog...
I'm already spent weeks to resolve what causing it..
Crontap to restart the service every 4 hours?
 
Upvote 0
Skilled Illusionist
Joined
Mar 3, 2009
Messages
313
Reaction score
248
LDF file normally refers to the LogDataFile of MS SQL server. LDF records all the transactions and changes to the database. The LDF is critical for disaster recovery. Beside of the LDF, we also have MDF which stands for Main Database File and contains all the information in a database (up-to-date version).

You can turn off certain types of log to reduce the log size, or if you want to do it in easy way you can do via mssql server ui, take a look here:
 
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Jan 13, 2018
Messages
76
Reaction score
2
Would it be better to:
RockAndRollITS.ini
LogLevel=3

 
Upvote 0
RaGEZONE VIP
[VIP] Member
Joined
Oct 10, 2019
Messages
198
Reaction score
458
Probably the problem is somewhere in the ini files. Ever since I configured my ini the way I saw fit, I have never had this problem (more than 2 years now).
But what exactly is the reason, I still do not know. It takes a lot of tests for this.
 
Upvote 0
Newbie Spellweaver
Joined
Jan 13, 2018
Messages
76
Reaction score
2
Already tried all log level from 0 to 7
none helped...
[NetLib]
Port=35739
PortForHS=62001
SendMaxBufSize=655360
ProcessDataLimit=10000
MaxUserNum=500
WatchsNoPackLimit=30000
UseEncryptPacket=1
SystemLogTTimeOut=100
ReactorTimeOut=100
DisableReactorPipe=1
ConnectRetryTime=5000
ConnectRetryNum=10
UseEncryptPacket=0
LogLevel=3

[RockAndRoll]
ESymRepositoryPath="/etc/cabal/GMSHeartITS/"

[DBAgent]
Addr=127.0.0.1
Port=32080
 
Last edited:
Upvote 0
RaGEZONE VIP
[VIP] Member
Joined
Oct 10, 2019
Messages
198
Reaction score
458
Try use this
Code:
[NetLib]
Port=35739
LogLevel=1
MaxUserNum=-1
ConnectRetryNum=10
ConnectTimeout=10000
DisableReactorPipe=0
LinklayerAsyncConnect=0
MaxStayTimeInQueue=0
MemPoolUnitSizeClass=0
ProcessDataLimit=1024
ReactorTimeOut=-1
SendMaxBufSizeLinkHandler=2621440
SendMaxBufSizeUserHandler=2621440
TcpNoDelay=1
UseEncryptPacket=0
WatchsNoPackLimit=1000
PortForHS=62001

SendMaxBufSize=32768
SystemLogTTimeOut=100
ConnectRetryTime=5000

[RockAndRoll]
ESymRepositoryPath=/etc/cabal/GMSHeartITS/
UseDBAgentConnect=1
ProcessLayerTaskNum=1

[DBAgent]
Addr=127.0.0.1
Port=32080
 
Upvote 0
Junior Spellweaver
Joined
Apr 9, 2014
Messages
143
Reaction score
19
Than you can tell us if you know..
As i tried to find it the closest what i reached is that it's trying to connect somewhere and refused, so it's falling to one infinite loop
I agree about the eternal loop, I mean that when I turn off the firewall, the log stopped weighing a lot and everything works stably
 
Upvote 0
Back
Top