Skip to content
English
  • There are no suggestions because the search field is empty.

Important Commands

How to clear an interactions:

redis-cli -p 6377 -a '0f2a5cb74ea93dc0' --no-auth-warning del InteractionDetail:VOICEMAIL_B67DB548C80E48B68657E2BE06620558

How to Clean the RealTimeKeys.

redis-cli -p 6377 -a '0f2a5cb74ea93dc0' --no-auth-warning KEYS "RealTime::*" | sed 's/.*/"&"/' | xargs redis-cli -p 6377 -a '0f2a5cb74ea93dc0' --no-auth-warning DEL


How to Clean configuration server

redis-cli -p 6377 -a '0f2a5cb74ea93dc0' --no-auth-warning KEYS "CONFIGURATION_SERVER::SESSIONS_TIMESTAMP" | sed 's/.*/"&"/' | xargs redis-cli -p 6377 -a '0f2a5cb74ea93dc0' --no-auth-warning DEL

 

Reload SSL 

/opt/nginx/sbin/nginx -s reload

 


execute repair job in OCC

curl http://127.0.0.1:8082/inconcert/apps/jobs/repair_job/

 


How to clear session in FortiGate firewall

 diagnose sys session clear

 

 

find . -type f -name "*.txt" 
The . at the start denotes the current directory. find searches recursively in all the directories below the given path

If you want the search to start somewhere other than the current working directory, specify the path, for example: 

find /etc -type f -name "*.conf"
 

check inConcert build version

dpkg -l inconcert

 

Restart network service in CentOS 8

sudo nmcli networking off && sudo nmcli networking on