LoginSignup
0
0

More than 1 year has passed since last update.

Jitsi MeetオープンソースWeb会議システムubuntuにインストール

Last updated at Posted at 2022-12-04

Jitsi MeetオープンソースWeb会議システムubuntuにインストールしてみました。

# apt update
# apt install apt-transport-https
# apt-add-repository universe
# apt update
# apt install openjdk-8-jdk
# curl https://download.jitsi.org/jitsi-key.gpg.key | sh -c 'gpg --dearmor > /usr/share/keyrings/jitsi-keyring.gpg'
# echo 'deb [signed-by=/usr/share/keyrings/jitsi-keyring.gpg] https://download.jitsi.org stable/' | tee /etc/apt/sources.list.d/jitsi-stable.list > /dev/null
# apt update
# sudo apt install jitsi-meet

Jitsi Meetをインストール
TLS証明書は、とりあえず自己署名証明書を作る
TLS証明書をLet's Encrypt利用で下記shell実行
更に、# crontab -u root -eコマンドにて毎月1日の午前4時に更新するよう、crontabを設定

# sudo /usr/share/jitsi-meet/scripts/install-letsencrypt-cert.sh

# crontab -u root -e
0 4 1 * * certbot renew && systemctl systemctl restart apache2
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0