Switchvox - How do I download and open a TSR report?
TSR Reports are files that provide information on certain settings on a system and contain system logs files from the PBX. For a cloud server, this is the only way to get system log files.
Download the .svt file by navigating to the Server menu and selecting Technical Support
On the Technical Support page, click the Download TSR Report button (it should download a tsrfilename.svt file to your Downloads folder). You can copy the .svt file to an empty folder (directory).
Next, open a terminal window to extract the file. Navigate to the folder where you downloaded the TSR report and at your command prompt, type: tar -xvzf tsrfilename.svt
This will create a directory: /tmp and extract the files into that directory (folder)
Go into /tmp by using the change directory command (cd /tmp)
Next, you will need to extract the data.tar file, using the following command: tar -xvf data.tar
Note: since it's not a gzip file, you won't use the z option in the tar command. Once the data.tar file is extracted, you can browse through the directories below ../tmp
At the command prompt, use the command use ls -l to view a list of files and directories in the current folder (directory)
To change directories, type the command: cd directoryname For example, cd var will change to the var directory and cd log will change to the log directory
At the command prompt, use the command less to view the content of files. For example, to view the contents of maillog, change to the var/log directory and type: less maillog
Note: commands and filenames are case-sensitive
/tmp/Asterisk.dump - main database dump.
/tmp/advanced_status.dump - advanced hardware monitor. This is where you can see their lspci values.
/tmp/RPM.dump - you can find the registration code here.
/var/log/asterisk/messages* - advanced error log
/var/log/maillog - email logs. (voicemail to email) Note: system log files are in this directory
/var/log/switchvox/dump.out - output from a SIP debug. Open that by typing ethereal -r dump.out
/var/log/updates - versions
/var/log/switchvox/user_log - regular error log
Return to Documentation Home | Sangoma Support