0

OpenMeetings is a free and open supply web-based utility written in Java that can be utilized for presenting, on-line coaching, net conferencing, collaborative whiteboard drawing and doc modifying, and person desktop sharing. Openmeetings supplies video conferencing, immediate messaging, white board, collaborative doc modifying and different groupware instruments utilizing API features of the Red5 Streaming Server for Remoting and Streaming. OpenMeetings supplies numerous options like Audio and Video Conferencing, Assembly recording and Display screen sharing, File Explorer, Moderating System, Multi-Whiteboard and Chat, Consumer and room administration, Personal message middle, Polls and Votes, Backup and way more.

On this tutorial, we might be going to clarify how one can set up OpenMeetings on Ubuntu 18.04 server.

Necessities

  • A server operating Ubuntu 18.04.
  • A non-root person with sudo privileges.

Set up Java

OpenMeetings is written in Java. So you’ll need to put in Java in your system. By default, the most recent model of Java will not be av*ailable within the Ubuntu 18.04 default repository. So you’ll need so as to add the Java repository to your system. You may add it by operating the next command:

sudo add-apt-repository –yes ppa:webupd8team/java

Subsequent, replace the repository and set up Java with the next command:

sudo apt-get set up oracle-java8-installer -y

After putting in Java, you may confirm the Java model with the next command:

java -version

Output:

java model "1.8.0_171"
 Java(TM) SE Runtime Atmosphere (construct 1.8.0_171-b11)
 Java HotSpot(TM) 64-Bit Server VM (construct 25.171-b11, combined mode)
 

Set up Required Dependencies

Subsequent, you’ll need to put in some dependencies in your system. You may set up all of them by operating the next command:

sudo apt-get set up set up imagemagick ghostscript libxt6 libxrender1 ffmpeg sox -y

Set up and Configure MariaDB

Subsequent, you’ll need to put in MariaDB Server to your system. You may set up it by operating the next command:

sudo apt-get set up mariadb-server -y

As soon as the MariaDB is put in, log in to M*ariaDB shell:

mysql -u root -p

Enter your root password and press Enter, then create a database and person with the next command:

MariaDB [(none)]> CREATE DATABASE openmeetings;
MariaDB [(none)]> CREATE USER openmeetings;

Subsequent, grant privileges to the Openmeetings database with the next command:

MariaDB [(none)]> GRANT ALL PRIVILEGES ON openmeetings.* TO ‘openmeetings’@’localhost’ IDENTIFIED BY ‘password’;

Subsequent, you’ll need to run the FLUSH PRIVILEGES command in order that the privileges desk might be reloaded by MySQL and we are able to use new credentials:

MariaDB [(none)]> FLUSH PRIVILEGES;

Subsequent, exit from the MariaDB console with the next command:

MariaDB [(none)]> q

Set up OpenMeetings

You may obtain the most recent model of the OpenMeetings from the Apache OpenMeetings obtain web page:

wget http://www-eu.apache.org/dist/openmeetings/4.0.4/bin/apache-openmeetings-4.0.4.tar.gz

As soon as the obtain is accomplished extract the downloaded file with the next command:

sudo tar xvf apache-openmeetings-4.0.4.tar.gz -C /decide/openmeetings

Subsequent, begin the appliance with the next command:

cd /decide/openmeetings
sudo sh red5.sh openmeetings

OpenMeetings is now began and listening on port 5080.

Entry OpenMeetings Web Interface

Open your net browser and kind the URL http://your-server-ip:5080/openmeetings. You’ll be redirected to the next web page:

OpenMeetings Installer

Right here, click on on the > button. It is best to see the next web page:

Select the database type

Right here, choose your database kind and supply the database identify, then click on on the > button. It is best to see the next web page:

Enter database credentials

Right here, present your username, password and electronic mail, then click on on the > button. It is best to see the next web page:

SMTP settings

Now, present your SMTP particulars, then click on on the > button. It is best to see the next web page:

Set program paths like FFmpeg and ImageMagick

Right here, present ImageMagick, sox and FFmpeg path, then click on on the > button. It is best to see the next web page:

Choose crypt type

Right here, choose default worth and click on on the > button. It is best to see the next web page:

Installation finished

Now, click on on the Enter the Utility button. It is best to see the next web page:

Login to OpenMeetings

Now, present your login credentials, then click on on the Signal In button. It is best to see the next web page:

OpenMeetings Dashboard

The Significance of Mentoring in Web Design

Previous article

CPU Buying Suggestions as Quick As Doable

Next article

You may also like

Comments

Leave a Reply

More in Apache