Jitsi Meet services Start, Stop, Restart, Disable, Enable, Log, Version

Jitsi meet stop service using below command

systemctl disable nginx
systemctl disable jicofo
systemctl disable jitsi-videobridge2
systemctl disable prosody

systemctl stop nginx
systemctl stop jicofo
systemctl stop jitsi-videobridge2
systemctl stop prosody

Jitsi meet start service using below command

systemctl enable nginx
systemctl enable jicofo
systemctl enable jitsi-videobridge2
systemctl enable prosody

systemctl start prosody
systemctl start jicofo
systemctl start jitsi-videobridge2
systemctl start nginx

Jitsi meet restart services use below command

systemctl restart prosody
systemctl restart jicofo
systemctl restart jitsi-videobridge2
systemctl restart nginx

Use the below command to track the live events

tail -f /var/log/prosody/prosody.log
tail -f /var/log/prosody/prosody.err

tail -f /var/log/jitsi/jicofo.log
tail -f /var/log/jitsi/jvb.log

tail -f /var/log/nginx/error.log

Get version of Jitsi, Prosody, Coturn, Nginx, Jijasi, Jicofo, Jibri

dpkg -l | grep 'prosody\|jitsi\|coturn\|nginx\|jijasi\|jicofo\|jibri'

Single command to restart Jitsi Meet

/etc/init.d/prosody restart && /etc/init.d/jicofo restart && /etc/init.d/jitsi-videobridge2 restart 

Single command to remove Jitsi Meet

sudo apt purge jigasi jitsi-meet jitsi-meet-web-config jitsi-meet-prosody jitsi-meet-turnserver jitsi-meet-web jicofo jitsi-videobridge2

Leave a Reply