Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
wget ... lucid-set-javahome.txt
sed '/function check_java() {/r lucid-set-javahome.txt' /opt/lucidworks/fusion/3.1.2/bin/common.sh

You common.sh file will have the following inserted,

Code Block
languagebash
function check_java() {

  # Bonsaiframework - Modification Start
  # --------------------------------------
  JRE_HOME="$FUSION_HOME"/java
  JAVA_HOME="$FUSION_HOME"/java
  # --------------------------------------
  # Bonsaiframework - Modification End

  if [ -z "$JAVA_HOME" ]; then

I appears that Fusion expects you to install in a specific directory structure. When I have time, I'll explore this more to see if my understanding is correct.

Code Block
/opt/lucidworks/fusion/3.1.2

Your home directory is considered, /opt/lucidworks/3.1.2 and I'm assuming you want to start from this directory to run properly.

Startup instructions seem to imply that you need to do it from a specific directory. When I have time, I'll try starting from the actual bin/fusion directory to see if the symlinks are properly generated.

...