In Issabel, you can change the recordings location by modifying the “monitor” settings in the asterisk configuration files.
Here are the steps to change the recordings location:
- Log in to your Issabel server using SSH.
- Navigate to the Asterisk configuration directory by running the command:
cd /etc/asterisk/
. - Edit the
logger.conf
file by running the command:nano logger.conf
. - Scroll down until you find the section that starts with
[general]
. - Look for the line that starts with
dir=
under the[general]
section. This is where you can set the default directory for your recordings. By default, it should be set to/var/spool/asterisk/monitor
. - Change the directory to your desired location for the recordings. For example, you could set it to
/home/issabel/recordings
. - Save the changes to the
logger.conf
file and exit the text editor. - Restart the Asterisk service by running the command:
systemctl restart asterisk
.
After making these changes, all future recordings will be stored in the new directory that you specified.