IRCd keeps disconnecting me when its been online for 27secs

These are old archives. They are kept for historic purposes only.
Post Reply
IJustinI
Posts: 2
Joined: Fri Apr 04, 2008 3:25 am

IRCd keeps disconnecting me when its been online for 27secs

Post by IJustinI »

I have it installed and all..
Its running on a shell with 128mb ram.

When I type

Code: Select all

./unreal start
This happens

Code: Select all

jesusliv3s:~/irc/unreal# ./unreal start
Starting UnrealIRCd
 _   _                      _ ___________  _____     _
| | | |                    | |_   _| ___ \/  __ \   | |
| | | |_ __  _ __ ___  __ _| | | | | |_/ /| /  \/ __| |
| | | | '_ \| '__/ _ \/ _` | | | | |    / | |    / _` |
| |_| | | | | | |  __/ (_| | |_| |_| |\ \ | \__/\ (_| |
 \___/|_| |_|_|  \___|\__,_|_|\___/\_| \_| \____/\__,_|
                           v3.2.7
                     using TRE 0.7.5 (LGPL)

* Loading IRCd configuration ..
* Configuration loaded without any problems ..
* Dynamic configuration initialized .. booting IRCd.
---------------------------------------------------------------------
jesusliv3s:~/irc/unreal#
Then in mIRC, I type /server MY.IRC.ADDRESS.HERE

It connects and all
After 27 seconds I get the message in mIRC

Code: Select all

* Disconnected
I have checked ircd.log and this is what is in it.

Code: Select all

[Fri Apr  4 01:49:14 2008] - TIME SYNCH: timeserver=1207273768, our=1207273754, offset = 14 [old offset: 0]

[Fri Apr  4 01:49:39 2008] - Connect - [J][email protected] [VHOST QRTX-D5FC3B2C.vic01.dataco.com.au]
Any help?
T-rexke
Posts: 147
Joined: Sat Mar 18, 2006 4:37 pm

Re: IRCd keeps disconnecting me when its been online for 27secs

Post by T-rexke »

tyour times are somehow off so try a ntp client or check your pc clock or try this block :

Code: Select all

set {   
timesynch {
 enabled yes;
 server 127.0.0.1;
 timeout 3;
};
};
IJustinI
Posts: 2
Joined: Fri Apr 04, 2008 3:25 am

Re: IRCd keeps disconnecting me when its been online for 27secs

Post by IJustinI »

Didn't work.
Anything els?

Code: Select all

(gdb) r
Starting program: /root/unreal/src/ircd
 _   _                      _ ___________  _____     _
| | | |                    | |_   _| ___ \/  __ \   | |
| | | |_ __  _ __ ___  __ _| | | | | |_/ /| /  \/ __| |
| | | | '_ \| '__/ _ \/ _` | | | | |    / | |    / _` |
| |_| | | | | | |  __/ (_| | |_| |_| |\ \ | \__/\ (_| |
 \___/|_| |_|_|  \___|\__,_|_|\___/\_| \_| \____/\__,_|
                           v3.2.7
                     using TRE 0.7.5 (LGPL)

* Loading IRCd configuration ..
Error while mapping shared library sections:
tmp/EC443101.commands.so: No such file or directory.
Error while reading shared library symbols:
tmp/EC443101.commands.so: No such file or directory.
Error while reading shared library symbols:
tmp/EC443101.commands.so: No such file or directory.
Error while mapping shared library sections:
tmp/E15AAFDC.cloak.so: No such file or directory.
Error while reading shared library symbols:
tmp/EC443101.commands.so: No such file or directory.
Error while reading shared library symbols:
tmp/E15AAFDC.cloak.so: No such file or directory.
Error while reading shared library symbols:
tmp/EC443101.commands.so: No such file or directory.
Error while reading shared library symbols:
tmp/E15AAFDC.cloak.so: No such file or directory.
[warning] unrealircd.conf:159: listen with SSL flag enabled on a non SSL compile
* Configuration loaded without any problems ..
* Dynamic configuration initialized .. booting IRCd.
---------------------------------------------------------------------

Program exited normally.
(gdb)

^^ for IRC people
santa2452
Posts: 29
Joined: Thu Jun 14, 2007 7:23 pm
Location: Columbus
Contact:

Re: IRCd keeps disconnecting me when its been online for 27secs

Post by santa2452 »

Code: Select all

/* FOR *NIX, uncomment the following 2lines: */
//loadmodule "src/modules/commands.so";
//loadmodule "src/modules/cloak.so";

/* FOR Windows, uncomment the following 2 lines: */
//loadmodule "modules/commands.dll";
//loadmodule "modules/cloak.dll";
find this in your config and uncomment the one that applies to you but leave he other uncommented.
T-rexke
Posts: 147
Joined: Sat Mar 18, 2006 4:37 pm

Re: IRCd keeps disconnecting me when its been online for 27secs

Post by T-rexke »

Code: Select all

[warning] unrealircd.conf:159: listen with SSL flag enabled on a non SSL compile


plus remove the ssl settings everywhere for this solution :)
Post Reply