|
From: Leif M. <le...@ta...> - 2006-08-07 01:37:48
|
Shinde,
What version and platform are you running?
The script requires that a command be passed as the first parameter
as follows:
./bin/startHSServer console
The thing is that if you omit the command as you appear to be doing,
you should
be getting an error message telling you how to use the script:
Usage: bin/startHSServer { console | start | stop | restart | status |
dump }
Is there any possibility that your script has been corrupted
somehow? Does the file
have windows line feeds, etc.?
Try adding the following immediately after the copyright in the
shell script.
echo "test"
If that shows up then you at least know that the script is being run
as a script.
Cheers,
Leif
Swapnil Shinde wrote:
> Hi Guys,
> This is the first time I am using this wrapper. I am having a very
> basic problem. I have followed all the steps for integration accroding
> to method 1. But when I start my script it gives NO output atall.
>
> ./bin/startHSServer
> <NO-OUTPUT>
>
> No log file is created. I have used CHMOD 777 for the all files and
> directoties. However I am successfully able to run the my application
> by DIRECTLY executing the wrapper as:
> ./bin/wrapper -c ../conf/wrapper.conf.
>
> I have no idea as to why the start script is not working though. Here
> is my script. Please help. Thanks.
>
> #! /bin/sh
<snip>
|