Versions Compared

Key

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

All opModule installers create a backup of /usr/local/omk prior to the installer running. This is the process to use if you need to roll back from the installer.

 


Code Block
service opeventsd stop
service opconfigd stop
service omkd stop
cd ~
mkdir temp
tar -xvf omk-backup-YYYY-MM-DD.tgz -C ~/temp
unalias cp
cp -R ~/temp/* /usr/local/omk

# at this point this error may occur:
#   cp: cannot create regular file '/usr/local/omk/bin/opchartsd.exe': Text file busy
#   cp: cannot create regular file '/usr/local/omk/bin/opflowd.exe': Text file busy
# if this happens: do
#		mv /usr/local/omk/bin/opchartsd.exe /usr/local/omk/bin/opchartsd.exe.old
#		mv /usr/local/omk/bin/opflowd.exe /usr/local/omk/bin/opflowd.exe.old
# and then: do
# cp -R ~/temp/* /usr/local/omk

service opeventsd start
service opconfigd start
service omkd start

...


A couple things to remember -

...