06-26-04 04:08 PM
You can check to see if its related process is up or not:
ps -elf
if there is many of them you can specify it by user or ...
ps -elf | grep <adminusername>
I am using it and works fine ...
"John" <no_spam_j_cout@yahoo.com> wrote:
>
>Hi All,
>I have a script on Solaris (ksh) that executes "nohup startWeblogic.sh
>&" to start
>WebLogic as a background process. After WebLogic has started and is listeni
ng
>on port 7001 I would like to continue. However, how do I figure out that
>WLS is
>up and running. Currently I sleep for 2 minutes before continuing on.
>The script
>looks as follows. Is there another alternative besides sleep
>
>nohup startWebLogic.sh &
>sleep 120
>
>thanks in advance.
[ Post a follow-up to this message ]
|