Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Vicidial: Soundboard Delay After about an hour of use
We were experiencing significant delays in the Vicidial soundboard after about an hour of continuous use. To resolve this, we modified the cron job responsible for flushing the queue DB table. Originally, the cron job was set to run only once every hour: Before New Entry: ### flush queue DB table evRead more
We were experiencing significant delays in the Vicidial soundboard after about an hour of continuous use. To resolve this, we modified the cron job responsible for flushing the queue DB table. Originally, the cron job was set to run only once every hour:
Before New Entry:
### flush queue DB table every hour for entries older than 1 hour
11 * * * * /usr/share/astguiclient/AST_flush_DBqueue.pl -q
We updated it to run every 15 minutes, flushing entries older than 10 minutes:
After New Entry:
### flush queue DB table every hour for entries older than 1 hour
#11 * * * * /usr/share/astguiclient/AST_flush_DBqueue.pl -q
11,26,41,56 * * * * /usr/share/astguiclient/AST_flush_DBqueue.pl –seconds=600 -q
After making this change, the issue with the soundboard delay was resolved. The more frequent flushing of the queue database prevents the buildup that was causing the delays.
How to update IP list in VB Firewall in Vicidialer?
Run 'VB-firewall --white --dynamic' to load up the IPs from your lists, you can add --debug to get extra output
Run ‘VB-firewall –white –dynamic’ to load up the IPs from your lists, you can add –debug to get extra output
See lessI forgot the admin password for vicidial, how to retrive it?
hi if you know the admin username then follow the below steps to get the admin password and then login to the vicidial admin gui and then reset it 1.Login to your mysql database. type the following mysql -ucron -p1234 asterisk 2. once you entered the mysql cli type the following ie after the mysqlRead more
hi
if you know the admin username then follow the below steps to get the admin password and then login to the vicidial admin gui and then reset it
1.Login to your mysql database. type the following
mysql -ucron -p1234 asterisk
2. once you entered the mysql cli type the following ie after the mysql>
select * from vicidial_users where user=’admin’;
NOTE: in the field of user=’admin’ enter your admin username
once entering the above command it will give you some quiries as below
+———+——-+————-+———–+————+————+————-+————+————–+——————–+————–+——————+—————–+———————-+————+—————–+——————+——————-+—————-+————–+—————-+———————–+———————–+——————+———————+———————+——————+——————–+——————–+—————-+——————————-+————————+——————-+——————-+————–+——————+————–+—————-+—————-+—————–+——————-+———————+—————-+————–+—————————–+————————-+————+—————+———+———–+———–+——————-+———————-+———————-+————————–+———————-+———————+———————+
| 1 | admin | vicidialnow | Admin | 9 | ADMIN | NULL | NULL | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | NULL | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | DISABLED | NOT_ACTIVE | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | NOT_ACTIVE | 0 | 0 | 0 |
+———+——-+————-+———–+————+————+————-+————+————–+——————–+————–+——————+—————–+———————-+————+—————–+——————+——————-+—————-+————–+—————-+———————–+———————–+——————+———————+———————+——————+——————–+——————–+—————-+——————————-+————————+——————-+——————-+————–+——————+————–+—————-+—————-+—————–+——————-+———————+—————-+————–+—————————–+————————-+————+—————+———+———–+———–+——————-+———————-+———————-+————————–+———————-+———————+———————+
1 row in set (0.00 sec)
it show your password next to your admin username as highlited in red
See less