...
To load these devices into NMIS8 run the following command
Code Block |
---|
/usr/local/nmis8/admin/import_nodes.pl /usr/local/nmis8/admin/import_nodes_sample.csv /usr/local/nmis8/conf/Nodes.nmis.new |
This will take the CSV file and merge it with the existing /usr/local/nmis8/conf/Nodes.nmis file and create a new nodes file /usr/local/nmis8/conf/Nodes.nmis.new. Merging the files means that you can use this script and CSV to update existing properties of devices as well as adding new devices, perfect for integration into other systems and to create automated processes.
Once you have created /usr/local/nmis8/conf/Nodes.nmis.new you need to replace the existing Nodes.nmis file and it is a good idea to keep a backup, running these two commands together is a good idea.
Code Block |
---|
mv /usr/local/nmis8/conf/Nodes.nmis /usr/local/nmis8/conf/Nodes.nmis.old mv /usr/local/nmis8/conf/Nodes.nmis.new /usr/local/nmis8/conf/Nodes.nmis |
Once you have added nodes or modified nodes an NMIS Update is required which you can run in the background or run for a single node.
To run an NMIS update in the background, the command nohup is No Hangup, so you can exit the SSH session if required, this will continue running.
Code Block |
---|
nohup nice /usr/local/nmis8/bin/nmis.pl type=update mthread=true maxthreads=5 & |
To run an NMIS update for a single node, optionally with debug.
Code Block |
---|
/usr/local/nmis8/bin/nmis.pl type=update node=NAME_OF_NODE [debug=true] |
If adding a large number of devices it might take sometime to complete the adding, it might be better to add them in batches. This is because the first time a node is added to NMIS it needs to create all the RRD files for performance data, this only takes a few seconds per file, but each node may have 10 RRD files or more, so this compounds to a large number of seconds very fast when adding 1000's of devices at a time. You can suspend NMIS polling by modifying the NMIS collect in the crontab, as the user running the cron jobs, usually root, run crontab -e and comment out the type=collect line, like this
Code Block |
---|
######################################################
# Run Statistics Collection
#*/5 * * * * /usr/local/nmis8/bin/nmis.pl type=collect mthread=true maxthreads=8 |
Then when finished adding the files and doing the update, run the first collect manually
Code Block |
---|
nohup /usr/local/nmis8/bin/nmis.pl type=collect mthread=true maxthreads=8 & |
When this is finished re-enable the collection in cron by removing the comment.