Post-Installation Check for Linux
This process can also be done on Linux (GUI) by running the commands below through Terminal.
AhsayOBM Services Check
The AhsayOBM scheduler service is used to kick automated or scheduled backup jobs, to check if the AhsayOBM scheduler service is running, use the ps command.
# ps -ef|grep java
root 17314 1 0 10:58 pts/0 00:00:04 usr/local/obm/jvm/bin/bschJW
-Xms128m -Xmx2048m -Dsun.nio.PageAlignDirectMemory=true -
Djava.library.path=.:./LinX64:.../mbs/bin/LinX64 -cp .:./cbs.jar cbs
/usr/local/obm
root 17428 25102 0 11:06 pts/0 00:00:00 grep --color=auto java
- To manually start the scheduler service, use the /usr/local/obm/bin/Scheduler.sh script.
- To manually stop the scheduler service, use the /usr/local/obm/bin/StopScheduler.sh
RunLevel Symlink Check
During installation, the following symlinks to the following scheduler startup script:
/etc/init.d/obmscheduler
This will be created for Runlevels 2 to 5, to allow the AhsayOBM scheduler service to be started up automatically each time after the Linux machine is rebooted or restarted.
To verify the symlinks have been created correctly:
Example: Ubuntu 18.04
# ls -la /etc/rc[2-5].d/*obm*
lrwxrwxrwx 1 root root 24 Jan 4 10:58 /etc/rc2.d/S99obmscheduler ->
/etc/init.d/obmscheduler
lrwxrwxrwx 1 root root 24 Jan 4 10:58 /etc/rc3.d/S99obmscheduler ->
/etc/init.d/obmscheduler
lrwxrwxrwx 1 root root 24 Jan 4 10:58 /etc/rc4.d/S99obmscheduler ->
/etc/init.d/obmscheduler
lrwxrwxrwx 1 root root 24 Jan 4 10:58 /etc/rc5.d/S99obmscheduler ->
/etc/init.d/obmscheduler
Example: CentOS 7
# ls -la /etc/rc.d/rc[2-5].d/*obm*
lrwxrwxrwx 1 root root 24 Jan 4 10:58 /etc/rc.d/rc2.d/S99obmscheduler ->
/etc/init.d/obmscheduler
lrwxrwxrwx 1 root root 24 Jan 4 10:58 /etc/rc.d/rc3.d/S99obmscheduler ->
/etc/init.d/obmscheduler
lrwxrwxrwx 1 root root 24 Jan 4 10:58 /etc/rc.d/rc4.d/S99obmscheduler ->
/etc/init.d/obmscheduler
lrwxrwxrwx 1 root root 24 Jan 4 10:58 /etc/rc.d/rc5.d/S99obmscheduler ->
/etc/init.d/obmscheduler