Apache OpenMeetings open source online conferencing system - installation configuration

OpenMeetings is an open source online conferencing systems, audio and video support, and support desktop sharing.

Official website address: http: //openmeetings.apache.org/index.html

installation

The current version is 4.0.6, requires a minimum jre8 installation environment.

  1. Download apache openmeetings (hereinafter referred to as OM) installation package, address: https://www.apache.org/dyn/closer.lua/openmeetings/4.0.6/bin/apache-openmeetings-4.0.6.zip

    Choose their own image to download address.

    For example, I chose:

    wget http://mirror.bit.edu.cn/apache/openmeetings/4.0.6/bin/apache-openmeetings-4.0.6.zip 

    Once downloaded, extract the zip file, remember to place the item to the corresponding directory, my directory is: / opt / apache-openmeetings /

  2. Since the database is used by default OM Apache Derby, and I was officially environments, so I'm going to use MySql database configuration.

    OM MySql configuration of the following steps:

    . A download JConnector jar package, and is placed under the / opt / apache-openmeetings / webapps / openmeetings / WEB-INF / lib / directory, the Download JConnector jar package:

    https://dev.mysql.com/downloads/connector/j/

    Because only jar package, so only need to execute the following command to download the jar package to JConnector

    wget https://cdn.mysql.com//Downloads/Connector-J/mysql-connector-java-8.0.12.zip 

    After decompression, you can find the latest mysql-connector-java-8.0.12.jar in unpacked directory, copy it to the / opt / apache-openmeetings / webapps / openmeetings / WEB-INF / lib / directory.

    . B Log mysql, OM for the new database, specifically how to create a new mysql database, you can refer to my other blog post: MariaDB installation

    After the new database, modify the mysql OM configuration files, you need to configure the main project is the database name, address database user and password configuration file is:

    /opt/apache-openmeetings/webapps/openmeetings/WEB-INF/classes/META-INF/mysql_persistence.xml
    
  3. Red5.sh run command to start OM.

    When you see the following prompt, indicate OM started successfully.

    	################################################################################ # Openmeetings is up # # 4.0.6 694d690 2018-10-10T08:21:20Z # # and ready to use # ################################################################################ 
  4. Next, we need to access

    http://localhost:5080/openmeetings/install

    To carry out the initial installation of OM.

    Follow the prompts to set up step by step on it, remember to select the database MySql,

  5. In the initial installation process, you will be prompted to install some third-party plug-ins, the specific role and installation is as follows:

    ImageMagick mainly used to send pictures, using the following command to install

    yum install ImageMagick
    

    After installation, configuration ImageMagick related commands in OM's path to the initialization wizard, I was, tap Check prompted by it:

    /usr/bin
    

    Send PDF GhostScript

    FFMpeg is mainly used to transport .avi, .flv, .mov and .mp4 file

    If you need OpenOffice or Libre Office Legend of office documents, you need to install and configure Office software.

    I actually use, only equipped with ImageMagick, the other three did not do configuration, etc. come back later when the actual needs of the installation.

  6. According to the configuration is quite initialization is complete, according to the final prompt to restart the service, you can access the system by following the address:

    http://localhost:5080/openmeetings/signin

other

OM provides SIP functionality, I am here not to do configuration, the subsequent activation can be considered to see how to use.

 Recommended: Food brand design 

Guess you like

Origin www.cnblogs.com/1994jinnan/p/12644196.html