- Legacy documentation
- Passive call recording setup
- Manual installation (deprecated) on Linux
- Manual update on Linux (deprecated)
- Cisco TAPI integration
Note, this script doesn't support automatic respawn of process in case of abnormal exit (for example, due to app crash). We recommend using alternative methods which support respawn:
- Upstart for RedHat/Centos 6.x
- SystemD for RedHat/Centos 7.x
Create startup script miarec
in directory /etc/init.d
vi /etc/init.d/miarec
Content of this file:
#!/bin/sh
#
# Startup sript for MiaRec call recorder
#
# chkconfig: - 80 20
# description: MiaRec call recorder
# processname: miarec
# config: /etc/miarec.ini
#
EXEC=/usr/local/bin/miarec
PIDFILE=/var/run/miarec.pid
LOCKFILE=/var/lock/subsys/miarec
CONF=/etc/miarec/miarec.ini
CHDIR=/var/lib/miarec
RETVAL=0
# Source function library.
. /etc/rc.d/init.d/functions
start() {
if [ -f $PIDFILE ]
then
RETVAL=1
echo "$PIDFILE exists, process is already running or crashed" && failure
echo
return $RETVAL
else
echo "Staring MiaRec recorder..."
cd $CHDIR
ulimit -Hn 10240
ulimit -Sn 10240
$EXEC -c $CONF --pid $PIDFILE --core unlimited > /dev/null 2>&1 &
RETVAL=$?
[ $RETVAL -eq 0 ] && touch $LOCKFILE && success || failure
echo
return $RETVAL
fi
}
stop() {
echo "Stopping..."
if [ ! -f $PIDFILE ]
then
RETVAL=1
echo "$PIDFILE does not exist, process is not running" && warning
echo
return $RETVAL
else
PID=$(cat $PIDFILE)
kill -TERM $PID
rm -f $LOCKFILE
echo "MiaRec stopped" && success
echo
fi
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
*)
echo "Please use start, stop or restart as first argument"
RETVAL=2
;;
esac
exit $RETVAL
Make this script executable:
chmod +x /etc/init.d/miarec
Add it to autostart during boot:
chkconfig --add miarec
chkconfig miarec on