Ubuntu安装kurento

安装指南

kurento media server(kms) 可以通过多种方式安装

  • AWS
  • docker方式
  • 本地安装

我们需要在生产上使用,并且服务器使用的是京东云,所以选择的是本地安装的方式。

本地安装

使用这种方法,可以从Kurento项目提供的本地Ubuntu软件包存储库中安装Kurento Media Server。KMS 对Ubuntu的两个长期支持(LTS)版本有明确的支持:Ubuntu 16.04(Xenial)和Ubuntu 18.04(Bionic)(仅64位)。

打开终端并运行以下命令:

  1. 确保已安装GnuPG。

sudo apt-get update && sudo apt-get install --no-install-recommends --yes \
    gnup
  1. 将Kurento存储库添加到系统配置中
# Import the Kurento repository signing key
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 5AFA7A83

# Get Ubuntu version definitions
source /etc/upstream-release/lsb-release 2>/dev/null || source /etc/lsb-release

# Add the repository to Apt
sudo tee "/etc/apt/sources.list.d/kurento.list" >/dev/null <
  1. 安装KMS:
sudo apt-get update && sudo apt-get install --no-install-recommends --yes \
    kurento-media-server

这将安装Kurento Media Server的发行版本。
该服务器包含与Ubuntu初始化系统集成的服务文件,因此您可以使用以下命令来启动和停止它:

sudo service kurento-media-server start
sudo service kurento-media-server stop

来自KMS的日志消息将在中提供/var/log/kurento-media-server/。有关KMS日志的更多详细信息,请参阅调试日志记录。

你可能感兴趣的:(webrtc)