Skip to main content

Vicidial agent login error Your Session has been disabled

 

Resolving vicidial issue Your session has been disabled

 

Introduction:

VICIdial is an enterprise class, open source, contact center suite in use by many large call centers around the world. VICIdial has a full featured predictive dialer.  It is capable of inbound, outbound, and blended phone call handling. 

  Issue : your session has been disabled

You may notice the message "you session has been disabled " under below conditions
1. During agent login to vicidial  agent portal
2. After successful login at frequent time its popups this message.

  Root cause 

Below are few root cause for the issue -your session has been disabled

1. Vicidial Admin /manager have forceful logged out the particular agent from admin interface.
2. Mysql/Maridb database crash for the table vicidial_live_agent
3. Crontab DB query -queues.
4. Lack of Memory in Server.

  Workaround

    Vicidial admin force logged out

     Make sure admin access are not misused, use strong password for admin, restrict admin rights .
     Make sure public access to dialer is secured , as vicidial admin API can triggered to logout agents.

    Database Table vicidial_live_agent crashed

run the below command to check any table crashed in the database.
mysqlcheck -u root -p --check --all-database

(note: if you have set a root password then enter ,or press enter if dont know the password run below command)

mysqlcheck -u cron -p1234 --check --all-database

If you have received below output then the particular table is crashed,  you need to repair.

asterisk.vicidial_live_agents
Error : Incorrect file format 'vicidial_live_agents'
error : Corrupt
Repair Command

Run the below commands to repair and optimie.
(note if root password is unknow use cron with password 1234)

mysqlcheck -u root -p --auto-repair --all-databases

mysqlcheck -u root -p --optimize --all-databases
Force Repair:

if the above command failed to repair the crashed tabled ,use the below command to force the repair

Login to mysql console

mysql -p
use asterisk;
repair table vicidial_live_agents table use_frm;
optimize table vicidial_live_agents table;

    Crontab DB query - queues.

    crontab entry script that is running at regular interval ,which is running a database query may cause this issue indirectly. ref link

solution: delete the TMM files in mysql data directory

search the .TMM files under /var/lib/mysql/asterisk/

similar to vicidial_live_agents.TMM

delete the file using rm -rf 
rm -rf ./var/lib/mysql/asterisk/vicidial_live_agents.TMM

Also run the below command to flush the DB table for entries older than 1 hour

/usr/share/astguiclient/AST_flush_DBqueue.pl --seconds=240 --session-flush -q

I'd recommend changing the DBflush to run every 4 minutes: Ref LInk

crontab -e
### flush queue DB table every hour for entries older than 1 hour (changed to 4 minutes)
1,5,9,13,17,21,25,29,33,37,41,45,49,53,57 * * * * /usr/share/astguiclient/AST_flush_DBqueue.pl --seconds=240 --session-flush -q

    Lack of System Memory

Check the Current usage of the memory in your system ,by typing top or htop command.

also run free -m to see current free ,used memory

Delete any cached memory by running below command

sync; echo 3 > /proc/sys/vm/drop_caches

you can schedule the above command to run every 30 min in crontab to delete cache at regular interval.

  Summary:

    Regular maintenance of vicidial like deleting old data's, recordings, Avoiding Overload, improper shutdown will avoid most of the vicidial issues
For profession support reach me on skype:manish.kadiya

 

Comments

Popular posts from this blog

Vicidial Scratch installation Alma -9

Step 1 – Download the dependencies   hostnamectl set-hostname xxxxxx.xxxxx.xxx ### Use YOUR SubDomain vi /etc/hosts ##Change domain name for actual server ip (xxx.xxx.xxx.xxx   complete domain name    subdomain only) timedatectl set-timezone Asia/Kolkata yum check-update yum update -y yum -y install epel-release yum update -y yum install git -y yum install -y kernel* sudo dnf install kernel-devel-$(uname -r) -y #Disable SELINUX sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config     reboot Step 2 – Run the Script cd /usr/src/ git clone https://github.com/manish23k/vicidial-install-scripts cd vicidial-install-scripts chmod +x alma-rocky9-ast16.sh ./alma-rocky9-ast16.sh Or the Asterisk 18 version: chmod +x alma-rocky9-ast18.sh ./alma-rocky9-ast18.sh ####For PHP 8 use this script. chmod +x main-installer-php8.sh ./main-installer-php8.sh

Vicidial Scratch installation Debian 11 with Asterisk 16, WebRTC and Dynamic Portal

  Vicidial Scratch installation Debian 11  Asterisk 16, WebRTC and Dynamic Portal apt update apt upgrade apt-get install git nano wget cd /usr/src/ git clone https://github.com/manish23k/Vici_Install_Scripts_Deb_11.git cd Vici_Install_Scripts_Deb_11/ chmod +x *.sh Run ./vici_install_deb_ast16.sh Install WebRTC ./vicidial-install-webrtc.sh Once Done with Configuration Secure Server with Vici Dynamic Portal Run ./vici_dynportal.sh

How to delete old call logs and other logs in vicidial or goautodial.

Step 1 : SSH to the server using the Putty Step 2:   login to mysql by typing   mysql -p                    (if you dont know password try below command )               mysql -ucron -p1234 Step 3 : select the asterisk database by typing               use asterisk step 4: Run the below command to check total disk occupied by asterisk database                SELECT table_schema AS "asterisk", ROUND(SUM(data_length + index_length) / 1024 / 1024, 2) AS "Size (MB)" FROM information_schema.TABLES GROUP BY table_schema; Step 5 : Run the below command to check disk space consumed by each table in asterisk database SELECT table_name AS "Table", ROUND(((data_length + index_length) / 1024 / 1024), 2) AS "Size (MB)" FROM information_schema.TABLES WHERE table_schema = "asterisk" ORDER BY (data_length + inde...