Check file is exist or not in the below location
/usr/share/jitsi-meet/prosody-plugins/mod_muc_allowners.lua
If exist then edit below location file
nano /etc/prosody/conf.avail/your-domain.com.cfg.lua
your-domain.com that is different in your case
Add muc_allowners in the file like below
Component "conference.your-domain.com" "muc"
storage = "memory"
modules_enabled = {
"muc_meeting_id";
"muc_domain_mapper";
"muc_allowners";
-- "token_verification";
}
Apply the kick out patch using the below command
cd /usr/lib/prosody/modules/muc
sudo patch -b </usr/share/jitsi-meet/prosody-plugins/muc_owner_allow_kick.patch
You should see something like the below output
patching file muc.lib.lua
Hunk #1 succeeded at 1390 (offset 134 lines).
Then you will get a new file muc.lib.lua and the original file will be saved to muc.lib.lua.orig
if you have already mucked out with a patch the previous command can fail.
Now restart the service to change the effect
sudo service prosody restart && sudo service jicofo restart
Now we need to disable moderator access notification edit
nano /usr/share/jitsi-meet/interface_config.js
Then replace the below line
DISABLE_FOCUS_INDICATOR: true,