[Dxspider-support] respawing

ON6HH Roland Huysentruyt on6hh at uba.be
Sat May 24 16:45:14 BST 2008


Hi Bob
I am using ubuntu 7.10  server .
Maybe this can help :

In etc/event.d/tty5   I replaced de getty_line by :

respawn
exec /home/sysop/spider/perl/cluster.pl sysop >/dev/tty5

73
Roland,ON6HH sysop ON0DXK

------------------------------------------------------------

----- Original Message ----- 
From: "N1UAN Bob" <bobbru at chartertn.net>
To: "The DXSpider Support list" <dxspider-support at dxcluster.org>
Sent: Saturday, May 24, 2008 5:23 PM
Subject: Re: [Dxspider-support] respawing


Hi
i am still having some issues with one of the clusters i take care of
i have been running it manually to start it and it is working fine as soon
as i put it back into the upstart in ubuntu under the events.d dir for
tty5 it comes up in the processes when i look but it give connection
refused someone mention that this could be happening because of the user
file can someone tell me if i should delete this file or both files one
called users.V3 and users.asc i think those are the names of them or which
one i should and will this then recreate the file or files this upstart
was working all along only seem to change when i upgraded to 155 build 0.7
i have try build 0.9 and even when back to version 1.54 and now it doesnt
work so i have gone back to V1.55 build 0.9 and not sure where to go from
here and help will be great
Thanks
Bob


On Sat, 24 May 2008, Bela Markus wrote:

> Fulvio,
>
> I do not see why your spider is resppawning. It happened to me two or
> three years ago. Now as I remember it was running fine when started
> manually, only from inittab failed. Do not remember the solution, but I
> found it evaluating server logs I think (syslog, messages in
> /var/log...) just the usual LINUX server bug fixing. I know it is not
> very helpful, but was a long time ago.
>
> BTW, it was a normal REDHAT/CENTOS/MANDRAKE environment.
>
> Regards... Béla, HA5DI
>
> Fulvio HB9DHG írta:
> > Hello Bob,
> >
> > I will wait patiently .. no rush at all.
> > As confirmed, I run the node via the /etc/rc.d/init.d script folder and 
> > is
> > working fine.
> > The distro I use is Fedora Core 9 on a virtualized system under vmware
> > Fusion. The computer
> > is a Mac Pro running Leopard 10.5.2
> >
> > Best 73 de HB9DHG
> > -----------------
> > Fulvio Galli
> > http://www.hb9dhg.ch
> > http://www.hb9ok.org
> > DXCC Mix #40.163
> > Phone #34534 CW #10.499 RTTY #
> > EPC #006 - DMC #863 - HTC #206 - CTC #942
> >
> >
> >
> >
> > -----Original Message-----
> > From: Bob Nielsen [mailto:n7xy at clearwire.net]
> > Sent: Saturday, May 24, 2008 12:34 AM
> > To: hb9dhg at ticino.com
> > Cc: The DXSpider Support list
> > Subject: Re: [Dxspider-support] respawing
> >
> > I see.  I guess I need to get serious about building up the new
> > machine for my node and run some more tests using upstart.  I got it
> > to start with that script but only ran it for a while with no
> > connections, which isn't much of a test.  I know that with Ubuntu
> > 8.10 you can replace the stock upstart with sysvinit, but hopefully
> > that won't be needed.
> >
> > I won't try that until next week (I know better than to mess with the
> > node during a contest weekend!)
> >
> > 73, Bob N7XY
> >
> > On May 23, 2008, at 2:07 PM, Fulvio HB9DHG wrote:
> >
> >
> >> Ciao Bob,
> >>
> >> I highly appreciate your reply.
> >> Yes .. I know about upstart, tried it .. but doesn't work too.
> >> Maybe my sintax is wrong? (the suggested syntax
> >> respawn
> >> exec /spider/perl/cluster.pl tty7
> >> seems doesn't work)
> >>
> >> DXSpider startup script
> >> #
> >> # This service maintains a getty on tty6 from the point the system is
> >> # started until it is shut down again.
> >>
> >> start on runlevel 3
> >>
> >> stop on runlevel 0
> >> stop on runlevel 1
> >> stop on runlevel 2
> >> stop on runlevel 4
> >> stop on runlevel 5
> >> stop on runlevel 6
> >>
> >> respawn
> >> exec /bin/su - sysop -c "/usr/bin/perl -w /spider/perl/cluster.pl"
> >>
> >>> /dev/tty7
> >>>
> >> The wiki link was already on my favourites ;-) (thanks!)
> >> I will run more tests tomorrow
> >>
> >> Regards, HB9DHG
> >>
> >> -----Original Message-----
> >> From: Bob Nielsen [mailto:n7xy at clearwire.net]
> >> Sent: Friday, May 23, 2008 10:42 PM
> >> To: hb9dhg at ticino.com; The DXSpider Support list
> >> Cc: N1UAN Bob
> >> Subject: Re: [Dxspider-support] respawing
> >>
> >> Hello Fulvio,
> >>
> >> I see the problem.  According to the release notes for Fedora Core 9,
> >> init has been replaced by upstart.  Ubuntu has also done this.  I
> >> added the startup information for upstart to the DXSpider
> >> documentation wiki, but haven't tested it very thoroughly yet, but it
> >> worked in a brief test on another computer (I need to build up a new
> >> box for my node).  You can find it at:
> >>
> >> http://www.gb7mbc.net/spiderwiki/index.php/
> >> Configuration#Starting_the_connection
> >>
> >> 73, Bob N7XY
> >> On May 23, 2008,
> >> at 1:20 PM, Fulvio HB9DHG wrote:
> >>
> >>
> >>> This is my rc file:
> >>>
> >>> #!/bin/sh
> >>> #
> >>> # description: Hamradio - DXSpider Cluster
> >>> # Modified: May 18, 2008 by HB9DHG
> >>> #
> >>> # Source function library.
> >>> . /etc/rc.d/init.d/functions
> >>> # See how we were called.
> >>> #
> >>> case "$1" in
> >>>   start)
> >>>    echo  "Starting DXSpider server"
> >>>
> >>>    /bin/su - sysop -c "/usr/bin/perl -w /spider/perl/cluster.pl" >/
> >>> dev/tty7
> >>> &
> >>>
> >>>         echo
> >>>         touch /var/lock/subsys/dxspider
> >>>         ;;
> >>>   stop)
> >>>    echo  "Stopping DXSpider server "
> >>>         killproc /usr/bin/perl
> >>>         rm -f /var/lock/subsys/dxspider
> >>>         ;;
> >>>   *)
> >>>         echo "Usage: rc.ham_dxspider {start|stop}"
> >>>         exit 1
> >>> esac
> >>> exit 0
> >>>
> >>> I don't have any problem starting it via /etc/rc.d/init.d .. but as
> >>> soon the
> >>> node is down, I cann't restart it
> >>> automatically.
> >>> This script run ok under Fedora Core 9.
> >>> the /etc/inittab entry worked fine on Fedora Core 8, not in
> >>> version 9.
> >>> Still waiting any tip ;-)
> >>>
> >>> Regards, HB9DHG Fulvio
> >>>
> >>> -----Original Message-----
> >>> From: N1UAN Bob [mailto:bobbru at chartertn.net]
> >>> Sent: Friday, May 23, 2008 9:14 PM
> >>> To: The DXSpider Support list
> >>> Cc: hb9dhg at ticino.com
> >>> Subject: Re: [Dxspider-support] respawing
> >>>
> >>> Hi
> >>> I try starting it manually and it all okks fine connects and sends
> >>> the
> >>> data and i am able to connect to it ok
> >>> but as soon as i put it back to auto it doesnt allows connects to it
> >>> could this still be the user file and which users file is it i
> >>> need to
> >>> delete the users.V3 or users.asc i think those are the ones
> >>> if i delete one or both of these will it recreate them any other
> >>> help will
> >>> be great
> >>> Thanks
> >>> Bob
> >>>
> >>>
> >>> On Fri, 23 May 2008, Bela Markus wrote:
> >>>
> >>>
> >>>> Hi,
> >>>>
> >>>> disable automatic startup from inittab and start SPIDER manually
> >>>> first,
> >>>> than look for error message on the terminal and check the
> >>>> /spider/data/log/2008/05.data
> >>>>
> >>>> It happened to me only after moving Spider to a new operating
> >>>> system and
> >>>> the had problems with the user file.
> >>>>
> >>>> Regards... Béla, HA5DI
> >>>>
> >>>> Fulvio HB9DHG írta:
> >>>>
> >>>>> Hello,
> >>>>>
> >>>>> I'm a similar problem with my DXspider node under Fedora Core 9.
> >>>>> I'm unable to start it automatically via the /etc/inittab and the
> >>>>>
> >>> respawing
> >>>
> >>>>> command (that worked with Fedora Core 8)
> >>>>> Any help, will be much appreciated
> >>>>>
> >>>>> Thanks
> >>>>> Fulvio HB9DHG
> >>>>>
> >>>>> -----Original Message-----
> >>>>> From: dxspider-support-bounces at dxcluster.org
> >>>>> [mailto:dxspider-support-bounces at dxcluster.org] On Behalf Of
> >>>>> N1UAN Bob
> >>>>> Sent: Friday, May 23, 2008 3:31 AM
> >>>>> To: dxspider-support at dxcluster.org
> >>>>> Subject: [Dxspider-support] respawing
> >>>>>
> >>>>> Hi
> >>>>> i have one of the nodes i take care of acting up and not being
> >>>>> able to
> >>>>> connect to it looking at the processes with ps -ax it shows
> >>>>> running but
> >>>>>
> >>> in
> >>>
> >>>>> the log file i see this
> >>>>> init:tty5 main process ended respawning
> >>>>> init:tty5 main process (21906) terminated with status 255
> >>>>> Any idea what might be happeming here and how to fix it
> >>>>> Thanks
> >>>>> Bob N1UAN
> >>>>>
> >>>>>
> >>>>>
> >>>>> _______________________________________________
> >>>>> Dxspider-support mailing list
> >>>>> Dxspider-support at dxcluster.org
> >>>>> http://mailman.tobit.co.uk/mailman/listinfo/dxspider-support
> >>>>>
> >>>>>
> >>>>> _______________________________________________
> >>>>> Dxspider-support mailing list
> >>>>> Dxspider-support at dxcluster.org
> >>>>> http://mailman.tobit.co.uk/mailman/listinfo/dxspider-support
> >>>>>
> >>>>>
> >>>>>
> >>>>>
> >>>> _______________________________________________
> >>>> Dxspider-support mailing list
> >>>> Dxspider-support at dxcluster.org
> >>>> http://mailman.tobit.co.uk/mailman/listinfo/dxspider-support
> >>>>
> >>>>
> >>> _______________________________________________
> >>> Dxspider-support mailing list
> >>> Dxspider-support at dxcluster.org
> >>> http://mailman.tobit.co.uk/mailman/listinfo/dxspider-support
> >>>
> >>>
> >> Bob Nielsen
> >> n7xy at clearwire.net
> >>
> >>
> >>
> >>
> >>
> >
> > Bob Nielsen
> > n7xy at clearwire.net
> >
> >
> >
> >
> > _______________________________________________
> > Dxspider-support mailing list
> > Dxspider-support at dxcluster.org
> > http://mailman.tobit.co.uk/mailman/listinfo/dxspider-support
> >
> >
> >
>
>
> _______________________________________________
> Dxspider-support mailing list
> Dxspider-support at dxcluster.org
> http://mailman.tobit.co.uk/mailman/listinfo/dxspider-support
>





--------------------------------------------------------------------------------


> _______________________________________________
> Dxspider-support mailing list
> Dxspider-support at dxcluster.org
> http://mailman.tobit.co.uk/mailman/listinfo/dxspider-support
> 




More information about the Dxspider-support mailing list