Versions Compared

Key

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

...

  1. Install NMIS9, should install without any issues
  2. Rename the omk directory


    Code Block
    mv /usr/local/omk /usr/local/omk-old


  3. Run the installer for the ABI4 application
  4. Rename the new omk/conf directory


    Code Block
    mv /usr/local/omk/conf /usr/local/omk/conf-original


  5. Copy the omk-old/conf directory into the new omk/


    Code Block
    cp -r /usr/local/omk-old/conf /usr/local/omk


  6. Convert the .nmis files in omk/conf/ directory into .json using the opcommon-cli tool


    Code Block
    /usr/local/omk/bin/opcommon-cli.exe act=convert_json_dir dir="/usr/local/omk/conf/"


  7. Change any "nmis_dir" and "nmis8" entires to "nmis9_dir" and "nmis9" in the omk/conf/opCommon.json file. You can do this manually or by using the following Perl regex


    Code Block
    perl -p -i -e 's/nmis_dir/nmis9_dir/g' /usr/local/omk/conf/opCommon.json
    perl -p -i -e 's/nmis8/nmis9/g' /usr/local/omk/conf/opCommon.json
    perl -p -i -e 's/nmis_logs/nmis9_logs/g' /usr/local/omk/conf/opCommon.json


  8. Change the "load_applications" entry in the opCommon.json file to only show the ABI4 application previously recently installed.
  9. Restart omkd


    Code Block
    systemctl restart omkd.service