This documentation assumes you are upgrading from 2.4.X and currently have opFlow reports running.
Upgrade files
Backup your existing installation
cd /usr/local cp -r opmantek opmantek_backup_`date +%F-%T`
- Obtain a copy of the tarball, from now on it will be assumed the file is in /tmp
Stop daemons
service flowd stop service opflowd stop
Untar
cd /usr/local tar -zxvf /tmp/opFlow-Linux-x86_64-2.5.X-release.tar.gz
Update config files
cd /usr/local/opmantek ./bin/opupdateconfig.pl install/opFlow.nmis conf/opFlow.nmis ./bin/opupdateconfig.pl install/opCommon.nmis conf/opCommon.nmis
opFlow database now uses capped sizes, please adjust the following config settings to make sure they fit on your partition and are the size you want: (the defaults are listed):
# /usr/local/opmantek/conf/opFlow.nmis: 'opflow_db_conversation_collection_size' => 16106127360, #15G 'opflow_db_flow_collection_size' => 5368709120 # 5G
To see the current sizes or check what the current config will do run the setup tool:
/usr/local/opmantek/bin/opflow_setup.pl setup=db_config
If you do not want to keep existing data, drop your current database, which will free all space and then skip the next step (7).
When you are happy with the configuration, run the setup tool again with force (this will upgrade your existing collections to capped collections, expanding/shrinking based on the requested size
/usr/local/opmantek/bin/opflow_setup.pl setup=db_config force=1
Optional: Run repairDatabase on mongo to reclaim space (this will take a long time if your DB is large). You must have free space = current size of DB to perform this operation.
mongo use nmis; // (replace with custom db name if you changed from defaults, might be opflow) db.auth('opUserRW','op42flow42'); // again, replace with custom credentials if you have changed them from defaults db.repairDatabase();
Fix permissions
cd /usr/local/opmantek/bin ./opfixperms.pl
Make sure everything is setup:
/usr/local/opmantek/bin/opflow_setup.pl setup=all
Double check script output for any errors or activities you may need to perform, also double check that the existing cron entries match up with the ones listed by the setup tool.
Start Daemons
service flowd start service opflowd start
- Debian/Ubuntu
Verify/Edit /etc/init.d/flowd, /etc/init.d/mongod and /etc/init.d/opflowd
#change this line: . /etc/init.d/functions #to this: . /lib/lsb/init-functions