Skip to content

Commit

Permalink
Merge pull request #145 from harryfwong/master
Browse files Browse the repository at this point in the history
Address installation script issues
  • Loading branch information
paulopinheiro1234 authored Mar 16, 2020
2 parents 0f46806 + 07da1a6 commit 003ab08
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions create_namespaces.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ echo ""
echo "=== Creating store_users namespace..."
curl -X POST --data-binary @blazegraph/store_users.properties -H 'Content-Type:text/plain' http://localhost:8080/blazegraph/namespace
echo ""

12 changes: 12 additions & 0 deletions install_hadatac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@ echo " 300Mbytes of data. Make sure you have a decent connection and"
echo " this data availability."
echo ""

dpkg -s zip &> /dev/null

if [ $? -ne 0 ]

then
echo " 2) Program missing: 'zip' is required for installation"
echo " Please install zip before proceeding"
echo ""
exit
fi


if [ "$#" -gt 0 ]; then
case $1 in
[yY][eE][sS]|[yY])
Expand Down
1 change: 1 addition & 0 deletions solr/run_solr6.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ case "$1" in
esac

SOLR_INCLUDE=$SOLR_ENV $SOLR_INSTALL_DIR/bin/solr $SOLR_CMD -force

1 change: 1 addition & 0 deletions solr/solr6.in.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ SOLR_HOME=$HADATAC_SOLR/solr-home
LOG4J_PROPS=$HADATAC_SOLR/solr-6.5.0/server/resources/log4j.properties
SOLR_LOGS_DIR=$HADATAC_SOLR/solr-6.5.0/server/logs
SOLR_PORT=8983

0 comments on commit 003ab08

Please sign in to comment.