<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Problem getting program to start on boot in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956917#M117315</link>
    <description>Depending on the script you may need a file under /etc/rc.config.d that determines as to whether your script start or not by using a 1 (one) or 0 (zero). There are a number of scripts/files that can be used as a reference. If your not sure, post your start/stop script.</description>
    <pubDate>Wed, 23 Apr 2003 00:19:15 GMT</pubDate>
    <dc:creator>Michael Tully</dc:creator>
    <dc:date>2003-04-23T00:19:15Z</dc:date>
    <item>
      <title>Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956915#M117313</link>
      <description>Hey everyone....&lt;BR /&gt;Ok, I have a program that I need to start on boot. I've put a script in /sbin/init.d. I've linked to that script in /sbin/rc3.d. I can start the program from the command line just fine using:&lt;BR /&gt;/sbin/rc3.d/S901Script start&lt;BR /&gt;or &lt;BR /&gt;/sbin/init.d/myScript start&lt;BR /&gt;&lt;BR /&gt;Both of these start up my program and it runs great. However, it will not start at boot. In /etc/rc.log it shows that the program started ok, ie. its prints the echo statements that are in the 'start' case. However, I know the program did not start because ps -aef does not show it, and the other computer on the network with which it should be communication is not recieving. &lt;BR /&gt;I've scoured Google Groups for an answer and have been unable to find one. I just found this forum and hope one of you has an idea. &lt;BR /&gt;Some things I've tried are to put nohup on the line in the startup script so that my program doesn't get killed when the rc script dies. I tried putting the path in my script incase it wasnt set (since .profile hasn't been run yet). Neither of these things has worked. &lt;BR /&gt;The wierd thing is that I can start this program from the command line (using the boot script) and it works fine. This is why its so strange that it wont start on boot.&lt;BR /&gt;&lt;BR /&gt;Any insight you could give would be fantastic.&lt;BR /&gt;Thanks,&lt;BR /&gt;Marshall</description>
      <pubDate>Tue, 22 Apr 2003 23:57:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956915#M117313</guid>
      <dc:creator>Marshall_5</dc:creator>
      <dc:date>2003-04-22T23:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956916#M117314</link>
      <description>Hi Marshall,&lt;BR /&gt;&lt;BR /&gt;Does your program rely on any other piece of software that may not have been started at that point in the boot sequence?&lt;BR /&gt;&lt;BR /&gt;Have you tried putting the start command script in a cron job and kicking it off to see if it starts successfully that way?  You probably have the same limited environment in cron that you have at boot time, so it might be a good way to test and debug the problem.&lt;BR /&gt;&lt;BR /&gt;Can you post your start script, or at least the line in it that you are using to start your program?&lt;BR /&gt;&lt;BR /&gt;My guess is that there is something missing in the environment [PATH, etc.] that is causing your program to stop.&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Apr 2003 00:12:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956916#M117314</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2003-04-23T00:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956917#M117315</link>
      <description>Depending on the script you may need a file under /etc/rc.config.d that determines as to whether your script start or not by using a 1 (one) or 0 (zero). There are a number of scripts/files that can be used as a reference. If your not sure, post your start/stop script.</description>
      <pubDate>Wed, 23 Apr 2003 00:19:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956917#M117315</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2003-04-23T00:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956918#M117316</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Waiting for another subsystem to start might be a problem, depending what your script does I usually put in sleeps in between pre-req programs to rectify this kind of issues. Posting your script would be helpful.</description>
      <pubDate>Wed, 23 Apr 2003 00:29:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956918#M117316</guid>
      <dc:creator>Oktay Tasdemir</dc:creator>
      <dc:date>2003-04-23T00:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956919#M117317</link>
      <description>What about what the program does?  Are you using nohup to start the program, and if not should you?  If you start the program manually and then exit your shell, does your program exit?&lt;BR /&gt;&lt;BR /&gt;BTW, welcome to the HPUX forums!  The 'search' button on the pages are great to search old posts, and there are a LOT of old posts.  &lt;BR /&gt;&lt;BR /&gt;It migh help to see what the program is doing.  I do not think the issue would be a file in /etc/rc.config.d/ because it starts from the command line...&lt;BR /&gt;&lt;BR /&gt;Hope it helps&lt;BR /&gt;&lt;BR /&gt;John</description>
      <pubDate>Wed, 23 Apr 2003 00:38:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956919#M117317</guid>
      <dc:creator>John Payne_2</dc:creator>
      <dc:date>2003-04-23T00:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956920#M117318</link>
      <description>Hello everyone, I sure appreciate all thesee responses. &lt;BR /&gt;Here is the script:&lt;BR /&gt;&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;&lt;BR /&gt;DIR=/opt/temp/&lt;BR /&gt;LAUNCHER="$DIR/myProgram"&lt;BR /&gt;ARGS="-lf $DIR/myProg.log"&lt;BR /&gt;ERRLOG="$DIR/error.log"&lt;BR /&gt;PIXFILE="/var/run/temp/myProgram.pid"&lt;BR /&gt;&lt;BR /&gt;USER="root"&lt;BR /&gt;&lt;BR /&gt;PATH=/opt/java1.3/bin:/usr/sbin:$PATH:/sbin:/usr/local/bin:/home/root&lt;BR /&gt;&lt;BR /&gt;case "$1" in&lt;BR /&gt;  'start_msg')&lt;BR /&gt;        echo "Starting program"&lt;BR /&gt;        ;;&lt;BR /&gt; 'start')&lt;BR /&gt;        echo "starting your program now"&lt;BR /&gt;        cd $DIR&lt;BR /&gt;        nohup $LAUNCHER $ARGS &amp;gt; $ERRLOG 2&amp;gt;&amp;amp;1 &amp;amp;  PID=${1}&lt;BR /&gt;        echo "prog started, pid is ${PID} ...";&lt;BR /&gt;        ;;&lt;BR /&gt;  'stop')&lt;BR /&gt;        echo "Stopping your program..."&lt;BR /&gt;        fuser -k $LAUNCHER&lt;BR /&gt;        ;;&lt;BR /&gt;  'restart')&lt;BR /&gt;        /sbin/init.d/thisScript stop&lt;BR /&gt;        /sbin/init.d/thisScript start&lt;BR /&gt;        ;;&lt;BR /&gt; *)&lt;BR /&gt;        echo "usage....."&lt;BR /&gt;        exit 1&lt;BR /&gt;        ;;&lt;BR /&gt;&lt;BR /&gt;esac&lt;BR /&gt;&lt;BR /&gt;exit 0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;And here is what is resulted in the rc.log....&lt;BR /&gt;&lt;BR /&gt;And here is what is resulted in the rc.log....&lt;BR /&gt;Starting program&lt;BR /&gt;Output from "/sbin/rc3.d/S901StartUp start":&lt;BR /&gt;----------------------------&lt;BR /&gt;Starting yourprogram now&lt;BR /&gt;prog started....&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;To answer a few of your questions. The program relies on the network being up because it has to communicate with a server. I haven't tried the cron job idea, but I'm definatly going to. I'm pretty new to Unix so that hadn't even occured to me. As far as needing a file in /etc/rc.config.d.... I dont think I do since my program doesn't depend on any outside variables, but I may not be understanding this files purpose. Oktay mentions using sleep to wait for other subsystems. I think the only subusystem my program uses is networking, which should be up by the time rc3.d runs, right? This is a Java program, do you guys think that has anything to do with it?&lt;BR /&gt;John, The program gathers information about the system and constantly reports it to a server. I haven't tried to start the program and then exit the shell. I'm not sure how to exit the shell (rookie :) ).&lt;BR /&gt;&lt;BR /&gt;Anyway, thanks again for all your help guys!&lt;BR /&gt;-Marshall&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Apr 2003 16:12:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956920#M117318</guid>
      <dc:creator>Marshall_5</dc:creator>
      <dc:date>2003-04-23T16:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956921#M117319</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If your program is not a "daemon", it tend to exit after it started at boot time, try to wrap it in a script, and using "at" to start it 10 mins later in your /sbin/init.d/script&lt;BR /&gt;&lt;BR /&gt;thanks,&lt;BR /&gt;Gary</description>
      <pubDate>Wed, 23 Apr 2003 16:48:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956921#M117319</guid>
      <dc:creator>Gary Yu</dc:creator>
      <dc:date>2003-04-23T16:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956922#M117320</link>
      <description>I know realize that it does infact continue to run after the shell is exited. If I shell in and run the program on the command line, then logout it keeps working. I dont know if this helps but I thought I'd mention it.</description>
      <pubDate>Wed, 23 Apr 2003 18:11:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956922#M117320</guid>
      <dc:creator>Marshall_5</dc:creator>
      <dc:date>2003-04-23T18:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956923#M117321</link>
      <description>Gary,&lt;BR /&gt;I just tried your suggestion. It didn't work either! I created a script and put it in /sbin/init.d&lt;BR /&gt;I called this script delayScript, and all that was in it was the following:&lt;BR /&gt;&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;echo "/sbin/init.d/myScript start" | /bin/at now + 4 minutes&lt;BR /&gt;&lt;BR /&gt;I tested this script from the command line and it worked perfectly, but when I set it up to execute at boot, it didn't work. But the wierd thing is that once again /etc/rc.local said that it worked. This was in rc.local&lt;BR /&gt;&lt;BR /&gt;Output from "/sbin/rc3.d/S902startDelayScript":&lt;BR /&gt;----------------------------&lt;BR /&gt;warning: commands will be exectued using /usr/bin/sh&lt;BR /&gt;job 1051130613.a at Wed Apr 23 13:43:33 2003&lt;BR /&gt;&lt;BR /&gt;So this makes it seem like the at command did run correctly (thats the exact same output that I got when I ran it from the command line) however, 13:43:33 came and went and my program was not started, unlike when I did it on the command line and when the time elapsed, it started the program. &lt;BR /&gt;&lt;BR /&gt;What do you think?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;-Marshall</description>
      <pubDate>Wed, 23 Apr 2003 19:55:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956923#M117321</guid>
      <dc:creator>Marshall_5</dc:creator>
      <dc:date>2003-04-23T19:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956924#M117322</link>
      <description>Marshall,&lt;BR /&gt;&lt;BR /&gt;Do you get anything in your error.log file when the script is called at boot time?&lt;BR /&gt;&lt;BR /&gt;Also, I noticed that you have this:&lt;BR /&gt;&lt;BR /&gt;DIR=/opt/temp/ &lt;BR /&gt;&lt;BR /&gt;but you probably don't need the '/' on the end, as you prepend the '/' when you use it to set the next variable:&lt;BR /&gt;&lt;BR /&gt;LAUNCHER="$DIR/myProgram" &lt;BR /&gt;&lt;BR /&gt;This probably results in &lt;BR /&gt;&lt;BR /&gt;LAUNCHER=/opt/temp//myProgram&lt;BR /&gt;&lt;BR /&gt;I don't think that would be an issue, but you never know.  It might be worth taking the trailing '/' off of the DIR assignment and trying it again.&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Apr 2003 20:08:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956924#M117322</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2003-04-23T20:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956925#M117323</link>
      <description>I think that your program *does* start, but then *dies* due to some condition.&lt;BR /&gt;&lt;BR /&gt;You may want to check for this, i.e. start the program, wait (sleep(1)) a few seconds and then check the status with ps(1). Log all output to a logfile.&lt;BR /&gt;&lt;BR /&gt;Do I understand you correctly that&lt;BR /&gt;echo "/sbin/init.d/myScript start" | /bin/at now + 4 minutes&lt;BR /&gt;works from the command line, but not in the rc-invoked script?&lt;BR /&gt;If so, that could be explained by at(1) inheriting your current environment, which is (very) different for an interactive shell and a rc-invoked script.&lt;BR /&gt;&lt;BR /&gt;By the way, cron(1M) logs the stop/start of jobs in /var/adm/cron/log which might give a indication, for example a non-normal return code ("rc=...").&lt;BR /&gt;&lt;BR /&gt;Is you program really a program, i.e. an executable a.out-format file, or is it a script? &lt;BR /&gt;If the latter, then put "set -x" (show each statement as it is executed) at the beginning and log all output, both standard out and standard error, to a file.</description>
      <pubDate>Thu, 24 Apr 2003 07:45:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956925#M117323</guid>
      <dc:creator>Frank Slootweg</dc:creator>
      <dc:date>2003-04-24T07:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956926#M117324</link>
      <description>Are you sure that you want to use nohup with the program?  If you run it outside of nohup, it should still run with a uid of 1, and should work normally.  &lt;BR /&gt;&lt;BR /&gt;Brian</description>
      <pubDate>Thu, 24 Apr 2003 07:58:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956926#M117324</guid>
      <dc:creator>Brian Crabtree</dc:creator>
      <dc:date>2003-04-24T07:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956927#M117325</link>
      <description>&lt;BR /&gt;In facts Myprogram acts as a daemon, as you want it continue working when the rc3.d/s.. has finished.&lt;BR /&gt;&lt;BR /&gt;If Myprogram is a sh you can include&lt;BR /&gt;&lt;BR /&gt;set -x&lt;BR /&gt;&lt;BR /&gt;to see  a trace of teh execution.&lt;BR /&gt;&lt;BR /&gt;The problem with these daemons is that init process send a HUP signal when the execution is finished, so you can use the trap instruction inside de rc script.&lt;BR /&gt;&lt;BR /&gt;start)&lt;BR /&gt;trap '' 1   &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HTH</description>
      <pubDate>Thu, 24 Apr 2003 08:39:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956927#M117325</guid>
      <dc:creator>Carlos Fernandez Riera</dc:creator>
      <dc:date>2003-04-24T08:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956928#M117326</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;It's just a minor point, but I'd suggest changing your initial shell identifier from:&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;&lt;BR /&gt;to &lt;BR /&gt;&lt;BR /&gt;#!/sbin/sh&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;Darren.</description>
      <pubDate>Thu, 24 Apr 2003 08:48:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956928#M117326</guid>
      <dc:creator>Darren Prior</dc:creator>
      <dc:date>2003-04-24T08:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956929#M117327</link>
      <description>Hi Marshall,&lt;BR /&gt;&lt;BR /&gt;The "set -x" is a very good option.&lt;BR /&gt;The following might be of any use as well :&lt;BR /&gt;&lt;BR /&gt;nohup $LAUNCHER $ARGS &amp;gt; $ERRLOG 2&amp;gt;&amp;amp;1 Sometimes a script wants to bound itself to a tty type, which you don't have using at or at boot. /dev/null redirects this (under Solaris). PLease try this.&lt;BR /&gt;&lt;BR /&gt;Also :&lt;BR /&gt;&lt;BR /&gt;nohup /usr/local/bin/tusc $LAUNCHER $ARGS &amp;gt; $ERRLOG 2&amp;gt;&amp;amp;1 &amp;amp; PID=${1} &lt;BR /&gt;&lt;BR /&gt;Will tell you exactly what syscalls are done and where it fails. Be aware that $ERRLOG will grow very fast.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Best Regs David&lt;BR /&gt;&lt;BR /&gt;P.S. : I know you're quiet new, but please don't forget to reward you previous answers.</description>
      <pubDate>Thu, 24 Apr 2003 08:55:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956929#M117327</guid>
      <dc:creator>David_246</dc:creator>
      <dc:date>2003-04-24T08:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956930#M117328</link>
      <description>Hey everyone, Thanks for all the help.&lt;BR /&gt;I got this figured out late last night. The short version is that it was a problem with the differences in environments between the command prompt and the startup. &lt;BR /&gt;&lt;BR /&gt;Here's the long version:&lt;BR /&gt;It turns out that the binary that I was trying to start up was not a binary at all. The installer product we use creates a big shell script rather than a binary when it packages our product for installation on Unix. And since I'd been working almost exclusivly on Windows I was not aware of this fact. Anyway, what was happening was that in this script were several commands that weren't being executed because the path wasn't set correctly or something. I changed the PATH= line in the script and added "export PATH". This fixed the problem, the script started at boot for the first time in a week!!  &lt;BR /&gt;&lt;BR /&gt;Thanks again everyone for you help!&lt;BR /&gt;-Marshall</description>
      <pubDate>Thu, 24 Apr 2003 16:09:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956930#M117328</guid>
      <dc:creator>Marshall_5</dc:creator>
      <dc:date>2003-04-24T16:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem getting program to start on boot</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956931#M117329</link>
      <description>Hey everyone, Thanks for all the help.&lt;BR /&gt;I got this figured out late last night. The short version is that it was a problem with the differences in environments between the command prompt and the startup. &lt;BR /&gt;&lt;BR /&gt;Here's the long version:&lt;BR /&gt;It turns out that the binary that I was trying to start up was not a binary at all. The installer product we use creates a big shell script rather than a binary when it packages our product for installation on Unix. And since I'd been working almost exclusivly on Windows I was not aware of this fact. Anyway, what was happening was that in this script were several commands that weren't being executed because the path wasn't set correctly or something. I changed the PATH= line in the script and added "export PATH". This fixed the problem, the script started at boot for the first time in a week!!  &lt;BR /&gt;&lt;BR /&gt;Thanks again everyone for your help!&lt;BR /&gt;-Marshall</description>
      <pubDate>Thu, 24 Apr 2003 16:09:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-getting-program-to-start-on-boot/m-p/2956931#M117329</guid>
      <dc:creator>Marshall_5</dc:creator>
      <dc:date>2003-04-24T16:09:26Z</dc:date>
    </item>
  </channel>
</rss>

