Open dazza-codes opened 7 years ago
A possible fix for this (sorry it's not a PR):
$ git diff
diff --git a/blazegraph-deb/src/deb/bin/loadRestAPI.sh b/blazegraph-deb/src/deb/bin/loadRestAPI.sh
index 2ee49ed..995103e 100755
--- a/blazegraph-deb/src/deb/bin/loadRestAPI.sh
+++ b/blazegraph-deb/src/deb/bin/loadRestAPI.sh
@@ -7,9 +7,7 @@ FILE_OR_DIR=$1
LOAD_PROP_FILE=/tmp/$$.properties
-[ -z "${NSS_PROPERTIES}" ] && NSS_PROPERTIES=/etc/blazegraph
-
-export NSS_DATALOAD_PROPERTIES="${NSS_PROPERTIES}/RWStore.properties"
+[ -z "${NSS_PROPERTIES}" ] && NSS_PROPERTIES=/etc/blazegraph/RWStore.properties
#Probably some unused properties below, but copied all to be safe.
@@ -28,7 +26,7 @@ namespace=kb
#Files to load
fileOrDirs=$1
#Property file (if creating a new namespace)
-propertyFile=$NSS_DATALOAD_PROPERTIES
+propertyFile=$NSS_PROPERTIES
EOT
Looks like this is already fixed and a dup of #25.
Actually, leaving this open only to address whether it should be patched in the 2.1.4 release also?
Confirming this bug is still in the download .deb mid May 2017
Followed the instructions in the blazegraph-deb section to build and install 2.1.4 on Ubuntu 16.04.
Pertains to blazegraph-deb/src/deb/bin/loadRestAPI.sh
When the
loadRestAPI.sh
script sources the/etc/default/blazegraph
it already gets the full path to theRWStore.properties
file, i.e.