I'm running 1.8.4-release, and I'm having a problem getting it to launch. It hangs.
robbie@Schizm$ ./ircd
bahamut-1.8(04) booting... Security related issues should be sent to coders@dal.net All other issues should be sent to dalnet-src@dal.net
Initializing Encryption...1024 bytes of entropy loaded.
It won't go any further than that, and I can't use ctrl C to get out of it. I have to close my connection to the shell. Have you had this problem before? If so, how did you fix it?
Haven't seen that one before, no. Can you attach gdb to the process to see where its sitting? (gdb -p PID .. send is the output of a 'bt' command in gdb).
-epiphani
On 7/3/07, Robbie robbie6642@gmail.com wrote:
I'm running 1.8.4-release, and I'm having a problem getting it to launch. It hangs.
robbie@Schizm$ ./ircd
bahamut-1.8(04) booting... Security related issues should be sent to coders@dal.net All other issues should be sent to dalnet-src@dal.net
Initializing Encryption...1024 bytes of entropy loaded.
It won't go any further than that, and I can't use ctrl C to get out of it. I have to close my connection to the shell. Have you had this problem before? If so, how did you fix it?
DALnet-src mailing list DALnet-src@lists.dal.net https://lists.dal.net/mailman/listinfo/dalnet-src
On 7/3/07, Robbie robbie6642@gmail.com wrote:
I'm running 1.8.4-release, and I'm having a problem getting it to launch. It hangs.
robbie@Schizm$ ./ircd
bahamut-1.8(04) booting... Security related issues should be sent to coders@dal.net All other issues should be sent to dalnet-src@dal.net
Initializing Encryption...1024 bytes of entropy loaded.
It won't go any further than that, and I can't use ctrl C to get out of it. I have to close my connection to the shell. Have you had this problem before? If so, how did you fix it?
Try Control +Z then 'bg'
Then examine the ircd process with a debugger and a system call tracer to attempt to find where the process is hanging.
I.E. In Linux, using strace and gdb
# strace -p <Process Id>
# gdb /path/to/ircd <ProcessId> (gdb) bt