Re: Installation trouble

2020-01-26 Thread Jacques Le Roux
Le 26/01/2020 à 04:02, L a écrit : Java version, that was it! I installed jdk-1.8.0 and as soon as I defined JAVA_HOME it works. I am able to list the tasks and run the app.  It works beautifully so far albeit a little complicated for a very small operation. The "Demo and Test Setup Guide"

Re: Installation trouble

2020-01-25 Thread L
Java version, that was it! I installed jdk-1.8.0 and as soon as I defined JAVA_HOME it works. I am able to list the tasks and run the app. It works beautifully so far albeit a little complicated for a very small operation. The "Demo and Test Setup Guide" could use some updating as it's

Re: Installation trouble

2020-01-23 Thread Pierre Smits
I would be happy to tackle that one, but I am still waiting on somebody willing to help me get some other contributions in. Op do 23 jan. 2020 13:08 schreef Michael Brohl : > Feel free to improve them if you see room for optimization, Pierre. > > Thanks, > > Michael Brohl > > ecomify GmbH -

Re: Installation trouble

2020-01-23 Thread Daniel Watford
L, As Nicolas said, only JDK8 is supported at the moment. There is an improvement ticket regarding JDK11 here: https://issues.apache.org/jira/browse/OFBIZ-10757 Please give JDK8 a try and see how you get on. Thanks, Dan. On Thu, 23 Jan 2020 at 12:45, Nicolas Malin wrote: > I found the

Re: Installation trouble

2020-01-23 Thread Nicolas Malin
I found the problem :) $ grep JDK README.md The first requirement to run OFBiz is to have the Java Development Kit (JDK) version 8 installed on your system (not just the JRE, but the full JDK) which [JDK download](https://adoptopenjdk.net/) On your case, it's java 11.0.6 that

Re: Installation trouble

2020-01-23 Thread Daniel Watford
If I use open-jdk-8 rather than 11 then the gradlew command works fine for me. Try building under: docker run -t -i openjdk:8 /bin/bash to check. On Thu, 23 Jan 2020 at 12:35, Daniel Watford wrote: > I can reproduce the behaviour L is seeing in a docker container - see > steps below. > > I

Re: Installation trouble

2020-01-23 Thread Nicolas Malin
do you analyse the gradlew script present ?     $ file gradlew     gradlew: a /usr/bin/env sh script, ASCII text executable        $ ls -l gradlew     -rwxrwxr-x 1 mnicolas mnicolas 6128 - gradlew From my part I run form fresh download the process and all work fine. Just I never run it as root.

Re: Installation trouble

2020-01-23 Thread Daniel Watford
I can reproduce the behaviour L is seeing in a docker container - see steps below. I don't have a solution yet though, sorry. Repro Steps: docker run -t -i openjdk:11 /bin/bash root@b1d80d7d85ab:/# javac -version javac 11.0.6 root@b1d80d7d85ab:/# echo $JAVA_HOME

Re: Installation trouble

2020-01-23 Thread Michael Brohl
Feel free to improve them if you see room for optimization, Pierre. Thanks, Michael Brohl ecomify GmbH - www.ecomify.de Am 23.01.20 um 13:00 schrieb Pierre Smits: Perhaps the instructions are not as clesr as they could be... Op do 23 jan. 2020 12:38 schreef L : ./gradlew loadAll doesn't

Re: Installation trouble

2020-01-23 Thread Michael Brohl
Hi, as you might have noticed, my answer was addressed to Parminder's answer, particularily the fact that the gradlew file is not included. I may come back to your topics if noone else beats me to it. Best regards, Michael Brohl ecomify GmbH - www.ecomify.de Am 22.01.20 um 20:50 schrieb

Re: Installation trouble

2020-01-23 Thread Pierre Smits
Perhaps the instructions are not as clesr as they could be... Op do 23 jan. 2020 12:38 schreef L : > ./gradlew loadAll doesn't do anything and supplies no output. It just > returns to the CLI instantly: > > [root@localhost ofbiz]# ./gradlew loadAll > [root@localhost ofbiz]# > > On 1/22/20 9:08

Re: Installation trouble

2020-01-23 Thread L
./gradlew loadAll doesn't do anything and supplies no output. It just returns to the CLI instantly: [root@localhost ofbiz]# ./gradlew loadAll [root@localhost ofbiz]# On 1/22/20 9:08 AM, Parminder S. Lehal wrote: The problem lies with the download files. Some of the zip files *even the latest

Re: Installation trouble

2020-01-23 Thread L
And this still does not help why my gradlew seems to do nothing. I've been through the README.md and I met all the requirements (not many listed). What in the README did I miss? Excerpts from the README: The first requirement to run OFBiz is to have the Java Development Kit (JDK) version 8

Re: Installation trouble

2020-01-22 Thread Michael Brohl
This is well documented in the README along with the system requirements which is always a good read ;-) You can find the reasons for this here: [1] Thanks, Michael Brohl ecomify GmbH - www.ecomify.de [1] https://issues.apache.org/jira/browse/OFBIZ-10145 Am 22.01.20 um 15:08 schrieb

Re: Installation trouble

2020-01-22 Thread Parminder S. Lehal
The problem lies with the download files. Some of the zip files *even the latest 16.11 zip) does not have gradlew file included in them. It is pathetic that the final package file served from the mirrors is incomplete(May be someone will pay some attention to this decline in quality). I also

Re: Installation trouble

2020-01-22 Thread Jacques Le Roux
Hi born2trump (nice name, if I got it right), Your message has been moderated. Please subscribe to the user ML for such questions and then use your email client. See why here http://ofbiz.apache.org/mailing-lists.html. You will get a better support, people can answer you on the ML. The wider

Re: Installation trouble

2020-01-22 Thread Gil Portenseigne
On Wed, Jan 22, 2020 at 10:30:14AM +0100, Gil Portenseigne wrote: > Hello, > > Typo : And you should be able to : $ ./gradlew loadAll signature.asc Description: PGP signature

Re: Installation trouble

2020-01-22 Thread Gil Portenseigne
Hello, You seems to have well installed java and unzipped OFBiz, and downloaded the gradle wrapper. Now you should have in your OFBiz directory an executable : gradlew And you should be able to : $ .gradlew loadAll And continue with this executable for the other command (launching the app etc.)

Re: Installation trouble

2020-01-22 Thread Nicolas Malin
Hello L, After you download the wrapper with the help script, you just run $ ./gradlew ofbiz the command `gradle wrapper --gradle-version 2.13`need to be run if you currently have gradle on your system and you prefer to load the wrapper with it. Nicolas On 22/01/2020 00:38, L wrote: > Having

Installation trouble

2020-01-22 Thread L
Having trouble getting this working.  I the installation docs are pretty thin on details. I started with a clean install of CentOS7 updated:     [root@localhost ~]# cat /etc/redhat-release Followed these instructionsQuick & Easy Setup: