stopofbiz.sh not working anymore(tested on 3 servers)

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

stopofbiz.sh not working anymore(tested on 3 servers)

hans_bakker
The last few versions in svn cannot be stopped anymore with the
stopofbiz.sh

i have the problem on several servers.....

the message is: Shutting down server : FAIL

i see there some changes in start.java...........

--
http://www.antwebsystems.com :
Quality OFBiz support for competitive rates....


Reply | Threaded
Open this post in threaded view
|

Re: stopofbiz.sh not working anymore(tested on 3 servers)

Ray-91
Does the same on my latest check out and test.

Ray

Hans Bakker wrote:
> The last few versions in svn cannot be stopped anymore with the
> stopofbiz.sh
>
> i have the problem on several servers.....
>
> the message is: Shutting down server : FAIL
>
> i see there some changes in start.java...........
>
Reply | Threaded
Open this post in threaded view
|

Re: stopofbiz.sh not working anymore(tested on 3 servers)

Malin Nicolas
Ray a écrit :
> Does the same on my latest check out and test.
>
> Ray
>  
Hi confirm Ray. I start the server on first directory and I try to stop
it with code in an other directory and shotofbiz.sh return :
  Set OFBIZ_HOME to - /usr/local/workspace/OFBiz
  Shutting down server : FAIL

Nicolas

> Hans Bakker wrote:
>  
>> The last few versions in svn cannot be stopped anymore with the
>> stopofbiz.sh
>>
>> i have the problem on several servers.....
>>
>> the message is: Shutting down server : FAIL
>>
>> i see there some changes in start.java...........
>>
>>    
>
>  


--
Nicolas MALIN
Consultant
Tél : 06.17.66.40.06
Site projet : http://www.neogia.org/
-------
Société LibrenBerry
Tél : 02.48.02.56.12
Site : http://www.librenberry.net/

Reply | Threaded
Open this post in threaded view
|

Re: stopofbiz.sh not working anymore(tested on 3 servers)

Ray-91
In reply to this post by hans_bakker
Following will fix it but needs a framework committer...



Index: framework/start/src/org/ofbiz/base/start/Start.java
===================================================================
--- framework/start/src/org/ofbiz/base/start/Start.java (revision 702426)
+++ framework/start/src/org/ofbiz/base/start/Start.java (working copy)
@@ -561,7 +561,7 @@
             String adminPortStr = getProp(props, "ofbiz.admin.port", "0");

             // set the admin key
-            String adminKey = getProp(props, "ofbiz.admin.key", "NA");
+            adminKey = getProp(props, "ofbiz.admin.key", "NA");

             // create the host InetAddress
             adminAddress = InetAddress.getByName(serverHost);
Reply | Threaded
Open this post in threaded view
|

Re: stopofbiz.sh not working anymore(tested on 3 servers)

Jacques Le Roux
Administrator
OK I look at it, ASAP

Thanks Ray !

Jacques

From: "Ray" <[hidden email]>

> Following will fix it but needs a framework committer...
>
>
>
> Index: framework/start/src/org/ofbiz/base/start/Start.java
> ===================================================================
> --- framework/start/src/org/ofbiz/base/start/Start.java (revision 702426)
> +++ framework/start/src/org/ofbiz/base/start/Start.java (working copy)
> @@ -561,7 +561,7 @@
>             String adminPortStr = getProp(props, "ofbiz.admin.port", "0");
>
>             // set the admin key
> -            String adminKey = getProp(props, "ofbiz.admin.key", "NA");
> +            adminKey = getProp(props, "ofbiz.admin.key", "NA");
>
>             // create the host InetAddress
>             adminAddress = InetAddress.getByName(serverHost);
>
Reply | Threaded
Open this post in threaded view
|

Re: stopofbiz.sh not working anymore(tested on 3 servers)

Jacques Le Roux
Administrator
Done in rev. 702489

Jacques

From: "Jacques Le Roux" <[hidden email]>

> OK I look at it, ASAP
>
> Thanks Ray !
>
> Jacques
>
> From: "Ray" <[hidden email]>
>> Following will fix it but needs a framework committer...
>>
>>
>>
>> Index: framework/start/src/org/ofbiz/base/start/Start.java
>> ===================================================================
>> --- framework/start/src/org/ofbiz/base/start/Start.java (revision 702426)
>> +++ framework/start/src/org/ofbiz/base/start/Start.java (working copy)
>> @@ -561,7 +561,7 @@
>>             String adminPortStr = getProp(props, "ofbiz.admin.port", "0");
>>
>>             // set the admin key
>> -            String adminKey = getProp(props, "ofbiz.admin.key", "NA");
>> +            adminKey = getProp(props, "ofbiz.admin.key", "NA");
>>
>>             // create the host InetAddress
>>             adminAddress = InetAddress.getByName(serverHost);
>>
>