operating_system_distro: rhel
OS: RHEL, CentOS, Fedora, ClearOS, CloudLinux, Elastix, ScientificLinux
ARCH: i386, x86_64

1. Put the monitis init script into /etc/init.d directory
# cp ./monitis /etc/init.d/

2. Make it executable
# chmod +x /etc/init.d/monitis

3. Configure it on runlevels
 - on running VM via ssh
# chkconfig --add monitis
 - on stopped VM, with its disk mounted on HV
# chroot <disk_mount_point> chkconfig --add monitis

4. Start it if required (on running VM only)
# service monitis start


UNINSTALLATION

1. Unconfigure the service on runlevels
 - on running VM via ssh
# chkconfig --del monitis
 - on stopped VM, with its disk mounted on HV
# chroot <disk_mount_point> chkconfig --del monitis

2. Remove the service
# rm -f /etc/init.d/monitis
