This tutorial will provide a quick guide how to backup your data and delete old date like calls, calls failed and chats from database in Linux
Use command “sudo su” and type the root password if required
sudo su |
To create the folder use below commands:
cd /home mkdir 20240207 |
To access the new created folder use the below command:
cd 20240207 |
Before creating the backup please make sure that you have enough disc space on your drive |
To check the disc space use below command:
df -h |
In below example you can see the disc has 75GB free space:
To create the backup use the commands below one by one in the console:
mysqldump -u root --databases api > /home/20240207/api.sql mysqldump -u root --databases bi > /home/20240207/bi.sql mysqldump -u root --databases storage > /home/20240207/storage.sql mysqldump -u root --databases invoices > /home/20240207/invoices.sql mysqldump -u root --databases voipswitch > /home/20240207/voipswitch_full.sql mysqldump -u root --databases core > /home/20240207/core.sql |
If you just want to clean the calls/callsfailed data only voipswitch and bi databases have to be backed up, but we always advice to make full backup |
To check the backup progress you can use a second instance of SSH and check MySQL status:
watch 'echo "show processlist;" | mysql -uroot'; |
To verify if the database has correctly backup use below commands in the console:
cd /home/20240207 ls -ltr |
Before deleting any data from database always make sure that you have a valid backup!!! If you delete the data without backup the data is lost and can not be recovered!!! |
Please notice that deleting data from database can take few minutes or few hours. All depends how big is your current database. |
The operation to delete data should be never done when you have life traffic as this can impact the database performance as well as switch performance and even lock the tables in the DB |
To delete old calls base on date you need to use this command:
delete from voipswitch.calls where call_start<date; |
Replace the “date“ with the date till which you want to remove the calls example:
delete from voipswitch.calls where call_start< '2023-10-25'; |
To delete old calls base on date you need to use this command:
delete from voipswitch.callsfailed where call_start<date; |
Replace the “date“ with the date till which you want to remove the calls failed example:
delete from voipswitch.callsfailed where call_start< '2023-10-25'; |
In the voipswitch database the calls_cost table contains all the billing data for invoices and can also get very big. This table does not contain any date column so the data has to be deleted base on id_cc column from the calls table. |
To delete data from calls_cost table first you have to delete calls.
After deleting calls you need to get the current min ID_CC with command:
select min(id_cc) from voipswitch.calls; |
This entry will give you a value which you will later use for clearing the data:
To delete the data from this table you will use a command:
delete from voipswitch.calls_costs where id_cc < X; |
In the example we can see the returned value was 401. The X has to be replaced with the value:
delete from voipswitch.calls_costs where id_cc < 401; |
To delete calls from the table you use a command:
delete from bi.da_conversation_history where id_ts<date and source='call'; |
Replace the “date“ with the date till which you want to remove the calls example:
delete from bi.da_conversation_history where id_ts<'2023-10-26' and source='call'; |
To delete calls failed from the table you use a command:
delete from bi.da_conversation_history where id_ts<date and source='callfailed'; |
Replace the “date“ with the date till which you want to remove the failed calls example:
delete from bi.da_conversation_history where id_ts<'2023-10-26' and source='callfailed'; |
To delete all data from the table you use a command:
delete from bi.da_conversation_history where id_ts<'date'; |
Replace the “date“ with the date till which you want to remove the data example:
delete from bi.da_conversation_history where id_ts<'2023-10-26'; |
To delete calls from the table you use a command:
delete from bi.da_conversation_history_summary where id_ts<date and source='call'; |
Replace the “date“ with the date till which you want to remove the calls example:
delete from bi.da_conversation_history_summary where id_ts<'2023-10-26' and source='call'; |
To delete calls failed from the table you use a command:
delete from bi.da_conversation_history_summary where id_ts<date and source='callfailed'; |
Replace the “date“ with the date till which you want to remove the failed calls example:
delete from bi.da_conversation_history_summary where id_ts<'2023-10-26' and source='callfailed'; |
To delete all data from the table you use a command:
delete from bi.da_conversation_history_summary where id_ts<'date'; |
Replace the “date“ with the date till which you want to remove the data example:
delete from bi.da_conversation_history_summary where id_ts<'2023-10-26'; |
You can monitor the progress of backup or delete data from DB using below command on another SSH session |
watch 'echo "show processlist;" | mysql -uroot'; |