Description

This article will explain how to completely stop the OpenNMS service. 

Sometimes, a stale process in OpenNMS will run even after stopping the OpenNMS service from WebUI. Due to this, the changes made in OpenNMS won't take effect.

Solution

To fix this issue, please follow the below steps:

ps -ef | grep -i opennms

 

  •  If there is any process, kill them by using the below command: 

 

kill -9 <process ID>


For example:

[root@space-005056a9ab86 ~]# ps -ef | grep -i opennms

opennms  13311     1  0 Dec22 ?        00:00:00 /bin/bash /opt/opennms/opennms.init start

kill -9 13311

Modification History

2024-07-21 : Article Created