Storage management

From FusionPBX
Revision as of 23:21, 19 January 2011 by Swilkey (talk | contribs) (Created page with "There are a number of places where FusionPBX/FreeSWITCH stores data that will continue to grow until it fills the available storage. You will need to periodically check on these...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

There are a number of places where FusionPBX/FreeSWITCH stores data that will continue to grow until it fills the available storage. You will need to periodically check on these and clear old data if necessary to keep your storage use in check.

XML CDR data is stored by default in /usr/local/freeswitch/log/xml_cdr/archive and inside that by year, month and day Call recordings are stored by default in /usr/local/freeswitch/recordings/archive and inside that by year, month and day

On Linux/Unix, to see how much space is being used you can use the du command if it is installed eg.

du -hs /usr/local/freeswitch/log/xml_cdr/archive
- this will show a single line summary (the 's' option) of the usage of that entire structure in human (the 'h' option) readable form
du -h /usr/local/freeswitch/log/xml_cdr/archive
- this will show the usage of each level of the directory structure below that directory in human readable form