Environment
Business Service Manager 4.7
Unix/Linux
Unix/Linux
Situation
When running "Start_BEM" and/or "Stop_BEM" on Linux/Unix, the
Daemon is stopped and started, but the BEM Monitor is not
Resolution
Workaround:
-use Start_BEM_Monitor/Start_Daemon_Thread and Stop_BEM_Monitor/Stop_Daemon_Thread instead.
OR
- Edit Start_BEM shell script as follows:#!/bin/sh
change
# Start BEM Daemon and Monitor
exec /bem-monitor/bin/Start_Daemon_Thread
exec /bem-monitor/bin/Start_BEM_Monitor
to
#!/bin/sh
# Start BEM Daemon and Monitor
/bem-monitor/bin/Start_Daemon_Thread&
/bem-monitor/bin/Start_BEM_Monitor&
and change Stop_BEM shell script the same way:
#!/bin/sh
# Stop BEM Daemon and Monitor
exec /bem-monitor/bin/Stop_Daemon_Thread
exec /bem-monitor/bin/Stop_BEM_Monitor
to
#!/bin/sh
# Stop BEM Daemon and Monitor
/bem-monitor/bin/Stop_Daemon_Thread&
/bem-monitor/bin/Stop_BEM_Monitor&