Installation

Note

Please check the software requirements, before installing OC.

Debian/Ubuntu (example for 20.04 LTS)

Prepare environment:

  1. Update Debian/Ubuntu system:
1
2
3
root@shell> apt update
root@shell> apt install unzip
root@shell> apt-get install libpng-dev libcurl4-gnutls-dev libexpat1-dev gettext libz-dev libssl-dev*
  1. Install nodejs:
1
2
3
4
root@shell> sudo apt install curl (if debian)
root@shell> curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
root@shell> apt-get install -y nodejs
root@shell> node -v // to check
  1. Install yarn:
1
2
3
4
root@shell> curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
root@shell> echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
root@shell> apt-get update && apt-get install yarn
root@shell> yarn -v // to check
  1. Install git:
1
2
root@shell> apt-get install git
root@shell> git --version // to check
  1. Install java:
1
2
3
root@shell> apt install openjdk-8-jdk
root@shell> apt install openjdk-8-jre (can be optional)
root@shell> java -version // to check
  1. Install gradle:
1
2
3
4
5
root@shell> apt-get install software-properties-common (if debian)
root@shell> add-apt-repository ppa:cwchien/gradle
root@shell> apt-get update
root@shell> apt upgrade gradle
root@shell> gradle -v // to check
  1. Install neo4j:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
root@shell> wget --no-check-certificate -O - https://debian.neo4j.org/neotechnology.gpg.key | sudo apt-key add -
root@shell> echo 'deb http://debian.neo4j.org/repo stable/' > /etc/apt/sources.list.d/neo4j.list
root@shell> apt update
root@shell> apt install neo4j
root@shell> /usr/bin/neo4j-admin set-initial-password secret // change password if you want
root@shell> service neo4j status  // to check
root@shell> sed -i '/#dbms.connectors.default_listen_address=0.0.0.0/c\dbms.connectors.default_listen_address=0.0.0.0' /etc/neo4j/neo4j.conf
root@shell> sed -i '/#dbms.security.auth_enabled=false/c\dbms.security.auth_enabled=false' /etc/neo4j/neo4j.conf
root@shell> service neo4j restart
root@shell> systemctl enable neo4j
  1. Install MariaDB:
1
2
3
4
5
root@shell> apt install mariadb-server mariadb-client
root@shell> mysql_secure_installation // set password
root@shell> mysql -u root -e "UPDATE mysql.user SET plugin = 'mysql_native_password' WHERE User = 'root';"
root@shell> mysql -u root -e "FLUSH PRIVILEGES"
root@shell> mysql --version // to check
  1. Install MY-NETDATA:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
if debian
root@shell> sudo apt-get install zlib1g-dev uuid-dev libmnl-dev pkg-config gcc make autoconf autoconf-archive autogen automake python python-yaml python-mysqldb nodejs lm-sensors python-psycopg2 netcat
root@shell> git clone https://github.com/firehol/netdata.git --depth=1 /usr/lib/netdata
root@shell> cd /usr/lib/netdata
root@shell> sudo ./netdata-installer.sh

if ubuntu
root@shell> apt-get install netdata -y

root@shell> sed -i '/\tbind socket to IP = 127.0.0.1/c\\tbind socket to IP = 0.0.0.0' /etc/netdata/netdata.conf
root@shell> wget https://bitbucket.org/becon_gmbh/opencelium/raw/cf5b43c102cca25d0a7abe778f1de0fe0c4e40c7/docs/netdata/oc-mode.html -O /usr/share/netdata/web/oc-mode.html

 (if debian)
root@shell> chown netdata:netdata /usr/share/netdata/web/oc-mode.html

root@shell> systemctl restart netdata
  1. Install Elasticsearch (optional)
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
 root@shell> apt-get install apt-transport-https
 root@shell> wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
 root@shell> add-apt-repository "deb https://artifacts.elastic.co/packages/7.x/apt stable main"
 root@shell> apt-get update
 root@shell> apt-get install elasticsearch
 root@shell> sed -i '/\#cluster.name: my-application/c\cluster.name: opencelium' /etc/elasticsearch/elasticsearch.yml
 root@shell> sed -i '/\#network.host: 192.168.0.1/c\network.host: 0.0.0.0' /etc/elasticsearch/elasticsearch.yml
 root@shell> echo "cluster.initial_master_nodes: node-1" >> /etc/elasticsearch/elasticsearch.yml
 root@shell> /bin/systemctl enable elasticsearch.service
 root@shell> systemctl start elasticsearch.service

Note

If elasticsearch is not running, check if “transport.host: localhost” is set in /etc/elasticsearch/elasticsearch.yml

  1. Install Kibana (optional)
1
2
3
4
5
 root@shell> apt-get install kibana
 root@shell> sed -i '/\#server.host: "localhost"/c\server.host: "0.0.0.0"' /etc/kibana/kibana.yml
 root@shell> sed -i '/\#elasticsearch.hosts: ["http://localhost:9200"]/c\elasticsearch.hosts: ["http://localhost:9200"]' /etc/kibana/kibana.yml
 root@shell> /bin/systemctl enable kibana.service
 root@shell> service kibana start

Install Application:

  1. Get frontend repository
root@shell> cd /opt
root@shell> git clone -b <StableVersion> https://bitbucket.org/becon_gmbh/opencelium.git . // Get stable versions here https://bitbucket.org/becon_gmbh/opencelium/downloads/?tab=tags
  1. Build frontend project
root@shell> cd src/frontend
root@shell> yarn
root@shell> echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p // increasing the amount of inotify watchers
  1. Enable OC service
root@shell> ln -s /opt/scripts/oc_service.sh /usr/bin/oc
  1. Start frontend
root@shell> oc start_frontend
  1. Create application.yml file for backend
root@shell> cd /opt/src/backend
root@shell> cp src/main/resources/application_default.yml src/main/resources/application.yml
root@shell> // make changes inside of application.yml. change neo4j and mysql database password
  1. Install database
root@shell> cd /opt/src/backend/database
root@shell> mysql -u root -p -e "source oc_data.sql"
  1. Build backend project
root@shell> cd /opt/src/backend/
root@shell> gradle build
  1. Start backend
root@shell> oc start_backend
  1. Welcome to OC
Visit opencelium http://SERVERIP:8888

Note

If yarn is not run use this command: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p

SUSE Linux Enterprise Server (example for SLES 15 SP1)

Prepare environment:

  1. Install nodejs:
1
2
3
4
root@shell> zypper addrepo http://download.opensuse.org/repositories/devel:/languages:/nodejs/SLE_15_SP2 node14
root@shell> zypper refresh
root@shell> zypper install nodejs14
root@shell> node -v
  1. Install yarn:
1
2
root@shell> sudo npm install yarn -g
root@shell> yarn -v // to check
  1. Install git:
1
2
root@shell> zypper install git
root@shell> git --version // to check
  1. Install java:
1
2
3
root@shell> zypper install java-1_8_0-openjdk
root@shell> zypper install java-1_8_0-openjdk-devel
root@shell> java -version // to check
  1. Install gradle:
1
2
3
4
5
6
root@shell> cd /tmp
root@shell> wget https://services.gradle.org/distributions/gradle-5.6.2-all.zip
root@shell> mkdir /opt/gradle
root@shell> unzip -d /opt/gradle gradle-5.6.2-all.zip
root@shell> export PATH=$PATH:/opt/gradle/gradle-5.6.2/bin
root@shell> gradle -v // to check
  1. Install neo4j:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
root@shell> zypper addrepo --refresh https://yum.neo4j.org/stable neo4j-repository
root@shell> zypper refresh
root@shell> zypper install neo4j-3.5.11
root@shell> /usr/bin/neo4j-admin set-initial-password secret // change password if you want
root@shell> neo4j start
root@shell> neo4j status  // to check
root@shell> sed -i '/#dbms.connectors.default_listen_address=0.0.0.0/c\dbms.connectors.default_listen_address=0.0.0.0' /etc/neo4j/neo4j.conf
root@shell> sed -i '/#dbms.security.auth_enabled=false/c\dbms.security.auth_enabled=false' /etc/neo4j/neo4j.conf
root@shell> neo4j restart
root@shell> zypper install insserv
root@shell> systemctl enable neo4j
  1. Install MariaDB:
1
2
3
4
root@shell> zypper install mariadb mariadb-client
root@shell> rcmysql start
root@shell> mysql_secure_installation // set password
root@shell> mysql --version // to check
  1. Install MY-NETDATA:
1
2
3
4
5
6
7
8
9
root@shell> zypper addrepo https://download.opensuse.org/repositories/devel:libraries:c_c++/SLE_15_SP1/devel:libraries:c_c++.repo
root@shell> zypper refresh
root@shell> zypper install zlib-devel libuv-devel libuuid-devel pkg-config gcc make autoconf autoconf-archive autogen automake python python-yaml nodejs netcat
root@shell> git clone https://github.com/firehol/netdata.git --depth=1 /usr/lib/netdata
root@shell> cd /usr/lib/netdata
root@shell> sudo ./netdata-installer.sh
root@shell> wget https://bitbucket.org/becon_gmbh/opencelium/raw/cf5b43c102cca25d0a7abe778f1de0fe0c4e40c7/docs/netdata/oc-mode.html -O /usr/share/netdata/web/oc-mode.html
root@shell> chown netdata:netdata /usr/share/netdata/web/oc-mode.html
root@shell> service netdata status
  1. Install Elasticsearch (optional)
1
2
3
4
5
6
7
8
9
 root@shell> rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch
 root@shell> echo -e "[elasticsearch-7.x]\nname=Elasticsearch repository for 7.x packages\nbaseurl=https://artifacts.elastic.co/packages/oss-7.x/yum\ngpgcheck=1\ngpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch\nenabled=1\nautorefresh=1\ntype=rpm-md" >> /etc/zypp/repos.d/elasticsearch.repo
 root@shell> zypper install elasticsearch-oss
 root@shell> sed -i '/\#cluster.name: my-application/c\cluster.name: opencelium' /etc/elasticsearch/elasticsearch.yml
 root@shell> sed -i '/\#network.host: 192.168.0.1/c\network.host: 0.0.0.0' /etc/elasticsearch/elasticsearch.yml
 root@shell> echo "cluster.initial_master_nodes: node-1" >> /etc/elasticsearch/elasticsearch.yml
 root@shell> chkconfig elasticsearch on
 root@shell> systemctl daemon-reload
 root@shell> systemctl restart elasticsearch.service
  1. Install Kibana (optional)
1
2
3
4
5
6
7
 root@shell> echo -e "[kibana-7.x]\nname=Kibana repository for 7.x packages\nbaseurl=https://artifacts.elastic.co/packages/7.x/yum\ngpgcheck=1\ngpgkey=https://artifacts.elastic.co/\GPG-KEY-elasticsearch\nenabled=1\nautorefresh=1\ntype=rpm-md" >> /etc/zypp/repos.d/kibana.repo
 root@shell> zypper install kibana
 root@shell> sed -i '/\#server.host: "localhost"/c\server.host: "0.0.0.0"' /etc/kibana/kibana.yml
 root@shell> sed -i '/\#elasticsearch.hosts: ["http://localhost:9200"]/c\elasticsearch.hosts: ["http://localhost:9200"]' /etc/kibana/kibana.yml
 root@shell> chkconfig kibana on
 root@shell> systemctl daemon-reload
 root@shell> systemctl restart kibana.service

Install Application:

  1. Get frontend repository
root@shell> cd /opt
root@shell> git clone -b <StableVersion> https://bitbucket.org/becon_gmbh/opencelium.git . // Get stable versions here https://bitbucket.org/becon_gmbh/opencelium/downloads/?tab=tags
  1. Run frontend with yarn
root@shell> cd src/frontend
root@shell> yarn
root@shell> echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p // increasing the amount of inotify watchers
  1. Enable OC service
root@shell> ln -s /opt/scripts/oc_service.sh /usr/bin/oc
  1. Start frontend
root@shell> oc start_frontend
  1. Create application.yml file for backend
root@shell> cd /opt/src/backend
root@shell> cp src/main/resources/application_default.yml src/main/resources/application.yml
root@shell> // make changes inside of application.yml. change neo4j and mysql database password
  1. Install database
root@shell> cd /opt/src/backend/database
root@shell> mysql -u root -p -e "source oc_data.sql"
  1. Build backend project
root@shell> cd /opt/src/backend/
root@shell> gradle build
  1. Start backend
root@shell> oc start_backend
  1. Welcome to OC
Visit opencelium http://SERVERIP:8888

Red Hat Enterprise Linux

Prepare environment:

  1. Update Red Hat system:
1
root@shell> yum update
  1. Install nodejs:
1
2
3
4
root@shell> yum install -y gcc-c++ make
root@shell> curl -sL https://rpm.nodesource.com/setup_14.x | sudo -E bash -
root@shell> yum install nodejs
root@shell> node -v // to check
  1. Install yarn:
1
2
3
root@shell> curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
root@shell> yum install yarn
root@shell> yarn -v // to check
  1. Install git:
1
2
root@shell> yum install git
root@shell> git --version // to check
  1. Install java:
1
2
3
root@shell> yum install java-1.8.0-openjdk
root@shell> yum install java-1.8.0-openjdk-devel
root@shell> java -version // to check
  1. Install gradle:
1
2
3
4
5
6
root@shell> cd /tmp
root@shell> wget https://services.gradle.org/distributions/gradle-5.6.2-all.zip
root@shell> mkdir /opt/gradle
root@shell> unzip -d /opt/gradle gradle-5.6.2-all.zip
root@shell> export PATH=$PATH:/opt/gradle/gradle-5.6.2/bin
root@shell> gradle -v // to check
  1. Install neo4j:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
root@shell> rpm --import https://debian.neo4j.org/neotechnology.gpg.key
root@shell> cat <<EOF>  /etc/yum.repos.d/neo4j.repo
                        [neo4j]
                        name=Neo4j RPM Repository
                        baseurl=https://yum.neo4j.org/stable
                        enabled=1
                        gpgcheck=1
                        EOF
root@shell> yum install neo4j-3.5.11
root@shell> /usr/bin/neo4j-admin set-initial-password secret // change password if you want
root@shell> service neo4j status  // to check
root@shell> sed -i '/#dbms.connectors.default_listen_address=0.0.0.0/c\dbms.connectors.default_listen_address=0.0.0.0' /etc/neo4j/neo4j.conf
root@shell> sed -i '/#dbms.security.auth_enabled=false/c\dbms.security.auth_enabled=false' /etc/neo4j/neo4j.conf
root@shell> service neo4j restart
root@shell> systemctl enable neo4j
  1. Install MariaDB:
1
2
3
4
root@shell> yum install mariadb-server
root@shell>     service mariadb start
root@shell> mysql_secure_installation // set password
root@shell> mysql --version // to check
  1. Install MY-NETDATA:
1
2
3
4
5
6
7
8
9
if debian
root@shell> yum install zlib-devel libuuid-devel libmnl-devel gcc make git autoconf autogen automake pkgconfig
root@shell> git clone https://github.com/firehol/netdata.git --depth=1 /usr/lib/netdata
root@shell> cd /usr/lib/netdata
root@shell> sudo ./netdata-installer.sh
root@shell> sed -i '/\tbind socket to IP = 127.0.0.1/c\\tbind socket to IP = 0.0.0.0' /etc/netdata/netdata.conf
root@shell> wget https://bitbucket.org/becon_gmbh/opencelium/raw/cf5b43c102cca25d0a7abe778f1de0fe0c4e40c7/docs/netdata/oc-mode.html -O /usr/share/netdata/web/oc-mode.html
root@shell> chown netdata:netdata /usr/share/netdata/web/oc-mode.html
root@shell> systemctl restart netdata

Install Application:

  1. Get frontend repository
root@shell> cd /opt
root@shell> git clone -b <StableVersion> https://bitbucket.org/becon_gmbh/opencelium.git . // Get stable versions here https://bitbucket.org/becon_gmbh/opencelium/downloads/?tab=tags
  1. Run frontend with yarn
root@shell> cd src/frontend
root@shell> yarn
root@shell> echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p // increasing the amount of inotify watchers
  1. Enable OC service
root@shell> cp -a /opt/scripts/oc_service.sh /usr/bin/oc
root@shell> oc start_frontend
  1. Create application.yml file for backend
root@shell> cd /opt/src/backend
root@shell> cp src/main/resources/application_default.yml src/main/resources/application.yml
root@shell> // make changes inside of application.yml. change neo4j and mysql database password
  1. Install database
root@shell> cd /opt/src/backend/database
root@shell> mysql -u root -p -e "source oc_data.sql"
  1. Build backend project
root@shell> cd /opt/src/backend/
root@shell> gradle build
  1. Start backend
root@shell> oc start_backend
  1. Welcome to OC
Visit opencelium http://SERVERIP:8888

Note

Please make sure that firewall is disabled (service firewalld stop)!

Ansible

Note

Only available for Ubuntu system (>=16.04 LTS)!

Prepare environment:

  1. Install Ansible:

Note

Use default Ansible installation guide. You can find documentation here -> https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html

  1. Get oc playbook:
1
2
root@shell> cd /etc/ansible
root@shell> git clone https://bitbucket.org/becon_gmbh/opencelium.setup.ansible.git .
  1. Add localhost in ansible
root@shell> printf "[local]\nlocalhost ansible_connection=local" >> hosts
  1. Run playbook
root@shell> ansible-playbook --connection=local -e 'host_key_checking=False' playbooks/install_oc.yml

Docker Compose

Warning

We currently do not support Docker environments in productive use. We recommend using it for use in a test phase!

Note

You need at least 4 GB of RAM to run the containers. We recommend 8GB for a better performance.

Docker is a container-based software framework for automating deployment of applications. Compose is a tool for defining and running multi-container Docker applications.

This repo is meant to be the starting point for somebody who likes to use dockerized multi-container OpenCelium in production. The OpenCelium Docker image uses the stable branch of OpenCelium’s Git repo.

The Docker images are hosted on Dockerhub.

Install Docker Environment:

  1. Install Docker:

Use default Docker installation guide.

  1. Getting started with opencelium-docker-compose:
1
2
root@shell> git clone https://github.com/opencelium/opencelium-docker.git  // we recommend to use always the latest tag version
root@shell> cd opencelium-docker
  1. Start OpenCelium using DockerHub images
root@shell> docker-compose up -d