Shuttdown

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Shuttdown

Elia Bhend
Hi Guys

Unfortunately my ofbiz shutts down unexpected.

Can anyone give me an advise how can I solve this issue?

Regards

Mia
Reply | Threaded
Open this post in threaded view
|

Re: Shuttdown

Patrick-4
run it with a log file, startofbiz > log.txt
look at the log file when it crashes

On Wed, May 26, 2010 at 4:01 PM, Elia Bhend <[hidden email]> wrote:

> Hi Guys
>
> Unfortunately my ofbiz shutts down unexpected.
>
> Can anyone give me an advise how can I solve this issue?
>
> Regards
>
> Mia
>
Reply | Threaded
Open this post in threaded view
|

Re: Shuttdown

James McGill-5
In reply to this post by Elia Bhend
On Wed, May 26, 2010 at 2:01 PM, Elia Bhend <[hidden email]> wrote:

> Hi Guys
>
> Unfortunately my ofbiz shutts down unexpected.
>
> Can anyone give me an advise how can I solve this issue?
>
>
On a linux server, I had a problem with the process that owned the java
process being tied to a login shell.

Now I start it up with nohup:

cd ~ofbiz
nohup sh ./startofbiz.sh 2>&1 > nohup.out &

That disconnects it from the login shell.  The "screen" terminal program
would also work.
http://www.oreillynet.com/linux/cmd/cmd.csp?path=s/screen


--
James McGill
Able Engineering
Reply | Threaded
Open this post in threaded view
|

Re: Shuttdown

Matt Warnock
You can also start it from /etc/rc.local, or restart repeatedly from a
cron job, if it crashes or leaks memory for any reason.
--
Matt Warnock <[hidden email]>
RidgeCrest Herbals, Inc.

On Wed, 2010-05-26 at 15:00 -0700, James McGill wrote:

> On Wed, May 26, 2010 at 2:01 PM, Elia Bhend <[hidden email]> wrote:
>
> > Hi Guys
> >
> > Unfortunately my ofbiz shutts down unexpected.
> >
> > Can anyone give me an advise how can I solve this issue?
> >
> >
> On a linux server, I had a problem with the process that owned the java
> process being tied to a login shell.
>
> Now I start it up with nohup:
>
> cd ~ofbiz
> nohup sh ./startofbiz.sh 2>&1 > nohup.out &
>
> That disconnects it from the login shell.  The "screen" terminal program
> would also work.
> http://www.oreillynet.com/linux/cmd/cmd.csp?path=s/screen
>
>