Skip to main content

Post-Installation Check for FreeBSD


AhsayOBM Services Check

The AhsayOBM scheduler services is used to kick automated or scheduled backup jobs, to check if the AhsayOBM scheduler service is running use the ps command.

# ps
PID TT STAT TIME COMMAND
795 v0 Is+ 0:00.00 /usr/libexec/getty Pc ttyv0
796 v1 Is+ 0:00.00 /usr/libexec/getty Pc ttyv1
797 v2 Is+ 0:00.00 /usr/libexec/getty Pc ttyv2
798 v3 Is+ 0:00.00 /usr/libexec/getty Pc ttyv3
799 v4 Is+ 0:00.00 /usr/libexec/getty Pc ttyv4
800 v5 Is+ 0:00.00 /usr/libexec/getty Pc ttyv5
801 v6 Is+ 0:00.00 /usr/libexec/getty Pc ttyv6
802 v7 Is+ 0:00.00 /usr/libexec/getty Pc ttyv7
1733 1 Ss 0:00.14 -csh (csh)
2135 1 I 0:15.44 /usr/local/obm/jvm/bin/bschJW -Xms128m -Xmx2048m -
Dsun.nio.PageAlignDirectMemory=true -Djava.library.path=.:./FbdX64:.../mbs/
bin/FbdX64 -cp .:./cbs.jar cbs /usr/local/obm (java)
2177 1 R+ 0:00.00 ps
  • 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 script.


AhsayOBM Check rc.conf File

To check if the obmscheduler is enabled use the cat command. If you do not see obmscheduler_enable="YES", add the entry in the rc.conf file by using a text editor like "vi". This is to ensure that the AhsayOBM scheduler service will startup automatically when the FreeBSD machine powers on or when it is rebooted.

# cat /etc/rc.conf
hostname="FreeBSD13x64"
ifconfig_vmx0="inet 10.16.30.83 netmask 255.252.0.0"
defaultrouter="10.16.0.1"
sshd_enable="YES"
# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
dumpdev="AUTO"
zfs_enable="YES"
obmscheduler_enable="YES"