Install from Repository (RedHat Enterprise Linux, CentOS, Scientific Linux)
There is an RPM software repository available for RedHat-based Linux distributions provided by the University of Osnabrück. This repository provides preconfigured Opencast installations, including all 3rd-Party-Tools. Using this method, you do not have to compile the software by yourself.
It may also be interesting for developers as all dependencies for Opencast usage, testing and development are provided by the RPM repository.
Currently supported are are
- CentOS 6.x, 7.x (x86_64)
- RedHat Enterprise Linux 6.x, 7.x (x86_64)
- Scientific Linux 6.x, 7.x (x86_64)
Other architectures like i386, i686, arm, … are not supported!
CentOS, SL, RHEL 7.x is recommended over 6.x.
Registration
Before you can start you need to get an account for the repository. You will need the credentials that you get by mail
after the registration to successfully complete this manual. The placeholders [your_username]
and [your_password]
are used in this manual wherever the credentials are needed.
Activate Repository
First you have to install the necessary repositories so that your package manager can access them:
-
Add Opencast repository:
cd /etc/yum.repos.d curl -O http://repo.virtuos.uos.de/opencast.repo \ -d os=el -d version=7 \ -u [YOUR_USERNAME]:[YOUR_PASSWORD]
Note: For RHEL/CentOS/SL 6.x use
version=6
It might take some time after the final version is released before the RPMs are moved to the stable repository. Before that, you can use
.../opencast-testing.repo
instead to get the latest version. -
Add EPEL repository:
yum install epel-release
Install 3rd-party-tools
This step is optional and only recommended for those who want to build Opencast from source. If you install Opencast from the repository, all necessary dependencies will be installed automatically.
You can install all necessary 3rd-Party-Tools for Opencast like this:
yum install ffmpeg tesseract hunspell sox
Install Apache ActiveMQ
The Apache ActiveMQ message broker is required by Opencast since version 2.0. It does not necessarily have to be installed on the same machine as Opencast but would commonly for an all-in-one system. ActiveMQ is available from the Opencast RPM repository as well and can be installed by running:
yum install activemq-dist
A prepared configuration file for ActiveMQ can be found at /usr/share/opencast/docs/scripts/activemq/activemq.xml
after Opencast itself has been installed and should replace /etc/activemq/activemq.xml
. For an all-in-one
installation the following command should suffice:
cp /usr/share/opencast/docs/scripts/activemq/activemq.xml /etc/activemq/activemq.xml
ActiveMQ should be started prior to Opencast.
More information about how to properly set up ActiveMQ for Opencast can be found in the message broker configuration documentation.
Install Opencast
For this guide, opencast21-*
is used as placeholder for the package name. It will install the latest version of the
Opencast 2.1.x branch. If you want to install another version, please change the name accordingly.
Basic Installation
For a basic installation (All-In-One) just run:
yum install opencast21-allinone
This will install the default distribution of Opencast and all its dependencies, including the 3rd-Party-Tools.
Now you can start Opencast:
-
On a SysV-init based system
service opencast start
-
On a Systemd based system
systemctl start opencast.service
While Opencast is preconfigured, it is strongly recommended to follow at least the Basic Configuration guide. It will help you to set your hostname, login information, …
Advanced Installation
While the basic installation will give you an all-in-one Opencast distribution which is nice for testing, you might want to have more control over your system and deploy it over several machines by choosing which parts of Opencast you want to install. You can list all Opencast packages with:
dnf search opencast
Starting with Opencast 2.1, this will list all available Opencast distributions in the form
opencast<version>-<dist-type>
Current available distributions are:
- opencast21-allinone
- opencast21-admin
- opencast21-worker
- opencast21-presentation
Uninstall Opencast
Sometimes you want to uninstall Opencast. For example to do a clean reinstall. You can do that by executing:
yum remove opencast
This will not touch your created media files or modified configuration files. If you want to remove them as well, you have to to that by yourself.
# Remove media files
sudo rm -rf /srv/opencast
# Remove local db, search index and working files
sudo rm -rf /var/lib/opencast
# Remove configuration files
sudo rm -rf /etc/opencast
# Remove system logfiles
sudo rm -rf /var/log/opencast