Max Q Exceeded+Services Loaded and Dc after it =(

The UnrealIRCd team does not officially provide support for any services packages that you may be using or want to use. This forum is provided so the community can help each other with services issues.

Moderator: Supporters

Locked
TakaShi^^
Posts: 8
Joined: Mon May 16, 2005 2:52 pm
Location: singapore

Max Q Exceeded+Services Loaded and Dc after it =(

Post by TakaShi^^ »

[My Log File]

[May 18 23:13:49 2005] debug: Sent: SQUIT services.servemp3.com :Read error from
server: No such file or directory (error num: 2)
[May 18 23:13:49 2005] debug: firstuser() returning wiLsOn
[May 18 23:13:49 2005] debug: nextuser() returning _tAkAsHi
[May 18 23:13:49 2005] debug: Emitting event "user_logoff" (1 args)
[May 18 23:13:49 2005] debug: Sent: :Dream PART #opers :
[May 18 23:13:49 2005] debug: Deleting channel #opers
[May 18 23:13:49 2005] debug: nextuser() returning NULL (end of list)
[May 18 23:13:49 2005] debug: Emitting event "user_logoff" (1 args)
[May 18 23:13:49 2005] debug: Deleting channel #oper
[May 18 23:13:49 2005] debug: Deleting channel #netsurfers
[May 18 23:13:49 2005] debug: Deleting channel #cservice
[May 18 23:13:49 2005] debug: Deleting channel #mugaming
[May 18 23:13:49 2005] debug: Deleting channel #akatsuki
[May 18 23:13:49 2005] debug: Deleting channel #Jurong
[May 18 23:13:49 2005] debug: Emitting event "shutdown" (1 args)


==============================================
My Ping + SendQ

class clients
{
pingfreq 90;
maxclients 500;
sendq 100000;
recvq 8000;
};

class servers
{
pingfreq 90;
maxclients 10; /* Max servers we can have linked at a time */
sendq 100000;
connfreq 100; /* How many seconds between each connection attempt */
};


============================================

Here is the error

-Jurong.SG.netsurfers.net- *** Notice -- Max SendQ limit exceeded for services.servemp3.com[127.0.0.1]: 100038 > 100000
-
-Jurong.SG.netsurfers.net- *** Global -- Closing link: Max SendQ exceeded - services.servemp3.com[127.0.0.1]


=============================================

When i try to load again...my bots all loaded....not even one min...it dc again

* Dream ([email protected]) has joined #opers
* Dream ([email protected]) Quit (YukiMu.SG.Mu.org services.servemp3.com)







New Error Maybe tis cause it to max send q???


[May 18 23:28:57 2005] debug: Changing modes for #opers to &-o Dream 1116430107
[May 18 23:28:57 2005] debug: Sent: :Dream MODE #opers +o Dream
[May 18 23:28:57 2005] debug: Received: :YukiMu.SG.Mu.org MODE #opers -oh Dream Dream 0
[May 18 23:28:57 2005] debug: Changing modes for #opers to -oh Dream Dream 0
[May 18 23:28:57 2005] debug: Sent: :Dream MODE #opers +o Dream
[May 18 23:28:57 2005] debug: Received: :YukiMu.SG.Mu.org MODE #opers &-o Dream 1116430107
[May 18 23:28:57 2005] debug: Changing modes for #opers to &-o Dream 1116430107
[May 18 23:28:57 2005] debug: Sent: :Dream MODE #opers +o Dream

wat i saw in the dos window is all this .....flooding ....
Testing 1 2 3
mars
Posts: 14
Joined: Sun May 08, 2005 2:13 pm

Post by mars »

i noticed your servers class was wrong.

Your Code

Code: Select all

class servers 
{ 
pingfreq 90; 
maxclients 10; /* Max servers we can have linked at a time */ 
sendq 100000; 
connfreq 100; /* How many seconds between each connection attempt */ 
}; 
As seen in the unreal32 docs

Code: Select all

class servers {
pingfreq 90;
maxclients 10;
sendq 1000000;
connfreq 100;
};
You have one 0 less in your sendq then what is in the unreal32 docs. Maybe that is the problem i could be wrong and someone that knows more can correct me. But try that and see if that helps you
aquanight
Official supporter
Posts: 862
Joined: Tue Mar 09, 2004 10:47 pm
Location: Boise, ID

Post by aquanight »

Syzop
UnrealIRCd head coder
Posts: 2117
Joined: Sat Mar 06, 2004 8:57 pm
Location: .nl
Contact:

Post by Syzop »

Both of you are right indeed.

It seems his ulines are set incorrectly, see aquanight.
And class::sendq of the server class is very low, see mars.
Locked