[jira] [Commented] (JENA-1035) fuseki-server script ignores JAVA_HOME variable while it executes the "java" command

2015-09-25 Thread Mirko Kaempf (JIRA)

[ 
https://issues.apache.org/jira/browse/JENA-1035?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14908092#comment-14908092
 ] 

Mirko Kaempf commented on JENA-1035:


I changed line 64 from:

exec java  $JVM_ARGS -jar "$JAR" "$[~paulbits]

to:

exec $JAVA_HOME/bin/java  $JVM_ARGS -jar "$JAR" "$@"

> fuseki-server script ignores JAVA_HOME variable while it executes the "java" 
> command
> 
>
> Key: JENA-1035
> URL: https://issues.apache.org/jira/browse/JENA-1035
> Project: Apache Jena
>  Issue Type: Improvement
>  Components: Fuseki
>Affects Versions: Fuseki 2.3.0
>Reporter: Mirko Kaempf
>Priority: Minor
>
> The fuseki-server script ignores JAVA_HOME variable while it executes the 
> "java" command.
> I use Java 7 on my system and only for FUSEKI2.3 I installed Java 8 at this 
> time. I had to change the script to be able to start FUSEKI. I think the 
> script should be changed in general to use a JAVA_HOME variable if defined.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (JENA-1035) fuseki-server script ignores JAVA_HOME variable while it executes the "java" command

2015-09-26 Thread Andy Seaborne (JIRA)

[ 
https://issues.apache.org/jira/browse/JENA-1035?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14909273#comment-14909273
 ] 

Andy Seaborne commented on JENA-1035:
-

A quick workaround is to set PATH to pick up 
{noformat}
PATH=... fuseki-server 
{noformat}
The {{fuseki}} service script already has {{$JAVA}}.

A proper fix might be:
{noformat}


if [ -z "$JAVA" ]
then
if [ -z "$JAVA_HOME" ]
then
   JAVA=$(which java)
else
JAVA=$JAVA_HOME/bin/java
fi
fi

if [ -z "$JAVA" ]
then
  echo "Cannot find a Java JDK. Please set either set JAVA or put java (>=1.8) 
in your PATH." 2>&2
  exit 1
fi

exec $JAVA ...
{noformat}

and apply this to the command script template as well.



> fuseki-server script ignores JAVA_HOME variable while it executes the "java" 
> command
> 
>
> Key: JENA-1035
> URL: https://issues.apache.org/jira/browse/JENA-1035
> Project: Apache Jena
>  Issue Type: Improvement
>  Components: Fuseki
>Affects Versions: Fuseki 2.3.0
>Reporter: Mirko Kaempf
>Priority: Minor
>
> The fuseki-server script ignores JAVA_HOME variable while it executes the 
> "java" command.
> I use Java 7 on my system and only for FUSEKI2.3 I installed Java 8 at this 
> time. I had to change the script to be able to start FUSEKI. I think the 
> script should be changed in general to use a JAVA_HOME variable if defined.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (JENA-1035) fuseki-server script ignores JAVA_HOME variable while it executes the "java" command

2015-09-27 Thread JIRA

[ 
https://issues.apache.org/jira/browse/JENA-1035?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14909855#comment-14909855
 ] 

Mirko Kämpf commented on JENA-1035:
---

I added the code you suggested to the server start script and created a
pull-request.

Cheers,
Mirko


> fuseki-server script ignores JAVA_HOME variable while it executes the "java" 
> command
> 
>
> Key: JENA-1035
> URL: https://issues.apache.org/jira/browse/JENA-1035
> Project: Apache Jena
>  Issue Type: Improvement
>  Components: Fuseki
>Affects Versions: Fuseki 2.3.0
>Reporter: Mirko Kaempf
>Priority: Minor
>
> The fuseki-server script ignores JAVA_HOME variable while it executes the 
> "java" command.
> I use Java 7 on my system and only for FUSEKI2.3 I installed Java 8 at this 
> time. I had to change the script to be able to start FUSEKI. I think the 
> script should be changed in general to use a JAVA_HOME variable if defined.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (JENA-1035) fuseki-server script ignores JAVA_HOME variable while it executes the "java" command

2015-09-28 Thread Andy Seaborne (JIRA)

[ 
https://issues.apache.org/jira/browse/JENA-1035?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14933129#comment-14933129
 ] 

Andy Seaborne commented on JENA-1035:
-

Good to have the confirmation it works. I don't see the PR though - did it go 
somewhere else?

https://github.com/apache/jena/pulls


> fuseki-server script ignores JAVA_HOME variable while it executes the "java" 
> command
> 
>
> Key: JENA-1035
> URL: https://issues.apache.org/jira/browse/JENA-1035
> Project: Apache Jena
>  Issue Type: Improvement
>  Components: Fuseki
>Affects Versions: Fuseki 2.3.0
>Reporter: Mirko Kaempf
>Priority: Minor
>
> The fuseki-server script ignores JAVA_HOME variable while it executes the 
> "java" command.
> I use Java 7 on my system and only for FUSEKI2.3 I installed Java 8 at this 
> time. I had to change the script to be able to start FUSEKI. I think the 
> script should be changed in general to use a JAVA_HOME variable if defined.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (JENA-1035) fuseki-server script ignores JAVA_HOME variable while it executes the "java" command

2015-10-02 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/JENA-1035?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14941325#comment-14941325
 ] 

ASF subversion and git services commented on JENA-1035:
---

Commit 108cd03b046fca9d052b22e9cafc723161c30fb2 in jena's branch 
refs/heads/master from [~andy.seaborne]
[ https://git-wip-us.apache.org/repos/asf?p=jena.git;h=108cd03 ]

JENA-1035: Set java executable via JAVA or JAVA_HOME


> fuseki-server script ignores JAVA_HOME variable while it executes the "java" 
> command
> 
>
> Key: JENA-1035
> URL: https://issues.apache.org/jira/browse/JENA-1035
> Project: Apache Jena
>  Issue Type: Improvement
>  Components: Fuseki
>Affects Versions: Fuseki 2.3.0
>Reporter: Mirko Kaempf
>Priority: Minor
>
> The fuseki-server script ignores JAVA_HOME variable while it executes the 
> "java" command.
> I use Java 7 on my system and only for FUSEKI2.3 I installed Java 8 at this 
> time. I had to change the script to be able to start FUSEKI. I think the 
> script should be changed in general to use a JAVA_HOME variable if defined.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)