本文主要讲解openmeetings-5.1.0安装的过程,九游会官网登录入口网页-ag8九游会j9登录入口服务器的相关配置教程将随后发布。
教程比较详细,可以按照步骤一步一步安装服务器的安装,如果您在安装过程中有遇到其他的问题,请及时联系ag8九游会j9登录入口,我们会进一步更新安装手册。
九游会官网登录入口网页-ag8九游会j9登录入口实际上是集成openmeeting来实现网络会议的,apache-openmeeting是一个开源的网络会议系统,我们可以在openmeeting官方网站上得到更多的信息。
介于openmeetings的安装比较复杂,所以在这里,我们也把我们安装的过程共享出来,希望对大家有所帮助:
openmeetingsag8九游会j9登录入口官网:
openmeetingsag8九游会j9登录入口官网下载:
openmeetings官方手册:
从openmeeting官方发布的安装手册中可以看到,服务器的安装需要如下几个步骤:
本文后续就按照openmeeting官方安装手册的要求逐步完成目前最新版本5.1.0的安装:
version 5.1.0 released! release 5.1.0, provides following improvements: this release provides webrtc audio/video/screen-sharing in the room stability: ●room audio/video should be more stable ●om should work as expected after kms server restart ●backup is further improved ●audio/video connection established faster ●most recent versions of dependencies are used ui: ●user display name is used almost everywhere ●browser notifications are used to notify about new chat messages and moderator actions ●interview room was broken ●mute and "mic status" were broken other fixes and improvements 52 issues are fixed please check and see . |
(含操作系统准备)
kms官方文档:
kms安装手册:
我们可以从里看到,kms支持长期支持版ubuntu16.04和ubuntu18.04(64位版本),这里我们打算使用ubuntu18.04(64位),下文先讲述操作系统准备的过程,已经准备好的朋友,请看后续章节《安装kurento media server》。
下载链接:
在安装过程中会提示选择需要 安装的应用组件,可以根据自己的需要进行选择。建议安装openssh
在安装过程中,设置用户kms,密码:123456。
root密码可以在安装完成后进行修改。
安装完成后,重启服务器,进入登录界面:
使用kms用户登录系统:kms/123456
修改root密码为123456
sudo passwd root
先输入kms用户密码 123456,再设置root密码(unix密码)。
root密码修改成功。
在安装操作系统时就可以根据要求配置网络,也可以在安装完成后进行配置。
ubuntu从17.10开始,已放弃在/etc/network/interfaces里配置ip地址,即使配置也不会生效,而是改成netplan方式,配置写在/etc/netplan/01-netcfg.yaml或者类似名称的yaml文件里,每台主机略有不同:
编辑yaml文件:
vi /etc/netplan/00-installer-config.yaml
# let networkmanager manage all devices on this system
network:
ethernets:
enp129s0f0:
#dhcp4: true
#dhcp4: true
addresses: [172.16.93.9/18]
gateway4: 172.16.64.1
nameservers:
addresses:[172.16.2.43]
version: 2
#renderer: networkmanager
关于子网掩码的表示,可以百度查一下:
172.16.93.9/24 :255.255.255.0
172.16.93.9/18 :255.255.192.0
设置完成后执行命令让配置生效:
sudo netplan apply
设置完成后,可以使用ssh工具连接服务器即可。
sudo ufw disable
make sure that gnupg is installed.
sudo apt-get update && sudo apt-get install --no-install-recommends --yes
gnupg
执行命令过程如下图所示:
add the kurento repository to your system configuration.
run these commands(执行如下命令):
# 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 <# kurento media server - release packages
deb [arch=amd64] http://ubuntu.openvidu.io/6.15.0 $distrib_codename kms6
eof
# import the kurento repository signing key(导入kurento仓库的签名)
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 5afa7a83
此命令执行需要一点时间:
# get ubuntu version definitions(获取ubuntu版本信息定义)
source /etc/upstream-release/lsb-release 2>/dev/null || source /etc/lsb-release
# add the repository to apt(将kurento仓库添加到apt)
sudo tee "/etc/apt/sources.list.d/kurento.list" >/dev/null <# kurento media server - release packages
deb [arch=amd64] http://ubuntu.openvidu.io/6.15.0 $distrib_codename kms6
eof
提醒:此步骤仅适用于第一次安装。如果您已经安装了kurento并想升级它,请按照下面描述的步骤进行:本地升级(local upgrade)。
sudo apt-get update && sudo apt-get install --no-install-recommends --yes
kurento-media-server
执行命令后等待,直到安装完成(需要一点时间):
the server includes service files which integrate with the ubuntu init system, so you can use the following commands to start and stop it:
服务器包含与ubuntu初始化系统集成的服务文件,因此您可以使用以下命令来启动和停止它:
sudo service kurento-media-server start
sudo service kurento-media-server stop
日志目录:/var/log/kurento-media-server/
recommendation for production environment by default openmeetings uses the integrated h2 database. for production environment you should consider using , , or for example , or , or |
生产环境建议
默认情况下,openmeetings使用集成的h2数据库。对于生产环境,您应该考虑使用mysql、postgres,或者例如ibmdb2、oracle或mssql
note: openmeetings requires jre 11, jre 6/7/8 are not compatible!
提醒:openmeetings需要jre11,jre 6/7/8 都无法兼容!
先卸载ubuntu自带的openjdk:
sudo apt-get remove openjdk*
安装jdk的方法有很多,在这里我们可以直接通过apt安装:
apt install openjdk-11-jre-headless
执行命令后等待一会儿即可:
当前jdk版本:11.0.9.1
enabling image upload and import to whiteboard install imagemagick on the server, you can get more information on regarding installation. the instructions for installation can be found there , however on most linux systems you can get it via your favorite package managers (apt-get it) |
启用图像上载和导入到白板
前提条件:在服务器上安装imagemagick,您可以获得有关关于安装。
安装说明可以在那里找到,但是在大多数linux系统上,您可以通过您最喜欢的包管理器(apt-get-it)获得它
sudo apt-get install imagemagick
查询安装的目录:
dpkg -l imagemagick
enabling import of pdfs into whiteboard ● install ghostscript on the server, you can get more information on regarding installation. the instructions for installation can be found there, however on most linux systems you can get it via your favorite package managers (apt-get it). |
启用将pdf导入白板
前提条件:在服务器上安装ghostscript,您可以获得有关关于安装。
安装说明可以在那里找到,但是在大多数linux系统上,您可以通过您最喜欢的包管理器(apt-get-it)获得它。
sudo apt-get install ghostscript
一般在ubuntu18操作系统里,ghostscript已经安装过了。
查询安装的目录:
dpkg -l ghostscript
查询ghostscript版本
ghostscript
enabling import of .doc, .docx, .ppt, .pptx, ... all office documents into whitebaord ● openoffice or libre office installed since version 2.x of openmeetings it is no more required to start openoffice (or libreoffice) service, see for details |
启用将导入.doc、.docx、.ppt、.pptx.....所有office文件都放在白板中
前提条件:已安装openoffice或libre office
由于openmeetings的2.x版不再需要启动openoffice(或libreoffice)服务,有关详细信息,请参阅openofficeconverter
1. enabling recording and import of .avi, .flv, .mov and .mp4 into whiteboard ○ install ffmpeg (with -enabled libmp3lame and libx264 options) . you should get ffmpeg in an up to date copy! openmeetings is tested with ffmpeg version 10.3 and latest build from git for windows you can download a build for example from linux or osx users should be able to use one of the various installation instructions on the web. you need to enable libmp3lame and libx264! ○ install sox . you should install sox in a up to date copy! sox 12.xx will not work! |
启用录制并将.avi、.flv、.mov和.mp4导入白板
前提条件:安装ffmpeg(使用启用的libmp3lame和libx264选项)。你应该得到一份最新的ffmpeg!openmeetings使用ffmpeg 10.3版和git for windows的最新版本进行了测试,您可以从下载一个版本,例如或osx用户应该能够使用web上的各种安装说明之一。您需要启用libmp3lame和libx264!
前提条件:安装soxhttp://sox.sourceforge.net/. 你应该在最新版本中安装sox!sox 12.xx将不起作用!
sudo apt-get install ffmpeg
查询安装的目录:
dpkg -l ffmpeg
查询ffmpeg版本:
ffmpeg
apt-get install sox
查询安装的目录:
dpkg -l sox
查询sox版本
sox --version
下载链接:
或者通过命令直接从服器下载:
wget https://downloads.apache.org/openmeetings/5.1.0/bin/apache-openmeetings-5.1.0.zip
创建/data目录
root@kms:/# mkdir /data
将下载好的apache-openmeetings-5.1.0.zip放到/data目录下:
如果没有unzip命令,则需要先需要安装一下unzip再进行解压:
apt install unzip
将文件解压到/data目录
unzip apache-openmeetings-5.1.0.zip
./data/apache-openmeetings-5.1.0/bin/startup.sh
使用浏览器访问openmeetings提供的安装服务:
url:
点击下一步进行数据库配置:
在这里我们不使用其他的数据库,直接使用默认的h2数据库进行演示,但是在正式环境,我们建议您使用mysql等商用数据库服务器,并且做好数据备份等工作。
下图是mysql服务器配置:
设置好数据库后,点击下一步进行管理员用户信息设置:
这里我们填写用户名,密码,邮件等信息,并且填写一个组织名称,然后点击下一步进行邮件相关配置:
这里我们不作任何改动直接点击下一步,进行文档转换相关设置:
这里我们仍不然任何改变动,直接点击下一步进行信息安全相关设置:
这里我们仍不然任何改变动,直接点击下一步准备开始安装。
在此界面并没有“完成”按钮,点击结束按钮我们可以开始安装(实际上就是完成配置动作),完成安装之后,您可以直接访问来使用openmeetings服务器提供的服务:
输入用户名密码登录到openmeetings服务器:
这里是用户九游会官网登录入口网页主页,一个看板,上面有需要进行的所有工作有交流信息。下图是进入会议后的界面:
点击右上角的分享屏幕,我们可以将自己的计算机屏幕分享给参所有参会者:
关于openmeeting的使用,您可以百度,或者到官方网站看到更多的文档和演示,我们以安装步骤为主,就不过多赘述,下一篇我们将指导大家如何将openmeetings与九游会官网登录入口网页-ag8九游会j9登录入口打通认证机制。