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 lessWhat is VI FPO?
VI FPO (Vodafone Idea Follow-on Public Offering) Type: Main-board FPO (Follow-on Public Offering) Number of Equity Shares: 16,363,636,363 Face Value: ₹10 per share Total Issue Size: ₹18,000.00 Crores Price Band: ₹10 to ₹11 per share Minimum Order Quantity: 1,298 Shares Issue Dates Issue Opens: AprilRead more
VI FPO (Vodafone Idea Follow-on Public Offering)
Issue Dates
Other Details
What is the recommended approach to configure WinRM trusted hosts when managing multiple servers?
winrm set winrm/config/client '@{TrustedHosts="servername1, servername2, servername3"}'
winrm set winrm/config/client ‘@{TrustedHosts=”servername1, servername2, servername3″}’
See less