ADSM-L

Re: Scheduler on HP

1999-06-15 08:56:31
Subject: Re: Scheduler on HP
From: Geetam Van Der Dussen <geetam AT SCOTPROV.CO DOT UK>
Date: Tue, 15 Jun 1999 13:56:31 +0100
Mark

I had a struggle with this too. Are you familiar with the startup and
shutdown scripts in /sbin/init.d ? If not, have a look at the template
script in that directory to get started (don't forget the "switch" in
/etc/rc.config.d)

In the startup section I use:
  # Execute the commands to start your subsystem
  nohup /usr/adsm/dsmc sched >/dev/null &
  sleep 5
  ADSM_RUNNING=`ps -ef | grep -v grep | grep -c "dsmc sched"`
  if [ ${ADSM_RUNNING} != 1 ]
  then
    echo "ADSM Client scheduler NOT started"
    rval=1
  else
    echo "ADSM Client Scheduler started"
    rval=0
  fi

In the stop section:
  # Execute the commands to stop your subsystem
  killproc dsmc
  set_return

I hope that helps

Regards
     Geetam



> Date:    Mon, 14 Jun 1999 13:27:02 -0700
> From:    Mark Smith <msmith AT TTANK DOT COM>
> Subject: Scheduler on HP
> MIME-Version: 1.0
> Content-Type: text/plain; charset=us-ascii
>


> Fellow ADSM'ers,
> I'd like to find out the best way to start the scheduler on an HP
> client. (10.2 &11) My inittab entry, while not getting errors, is also
> not starting up the scheduler.
>
> Any ideas?
> Thanks
> Mark Smith
> msmith AT ttank DOT com

______________________________________________________________________
CONFIDENTIALITY NOTICE:  This message is confidential and for the use only
of the intended recipient.  If you receive the message in error you are not
 entitled to disseminate, copy or use the contents in any way.  In such
circumstances please forward the message back to the sender or contact
Scottish Provident Institution by telephone on 0131 556 9181.

Scottish Provident UK is the marketing name in the UK of The Scottish
Provident Institution, (a mutual life office incorporated by Act of
Parliament registered in Scotland no. Z5).  It is a member of the Scottish
Provident marketing group which also includes Scottish Provident
International Life Assurance Limited (registered in the Isle of Man no.
053002C).  Both companies are regulated by the Personal Investment
Authority.  Scottish Provident Trustees Limited, (registered in Scotland
no. 108046), Scottish Provident Pension Trustees Limited* (registered in
England no. 2404622). Registered Office: 7-11 Melville Street, Edinburgh,
EH3 7YZ. *Registered Office: One Silk Street, London, EC2Y 8HQ.   Head
Office: 6 St Andrew Square, Edinburgh, EH2 2YA.  Telephone 0131 556 9181
<Prev in Thread] Current Thread [Next in Thread>
  • Scheduler on HP, Mark Smith
    • Re: Scheduler on HP, Geetam Van Der Dussen <=