Difference between revisions of "Quobyte"

From Define Wiki
Jump to navigation Jump to search
Line 2: Line 2:
  
 
== Server Installation ==
 
== Server Installation ==
 +
 +
===Prerequisites===
 +
Before installing quobyte software there are some tasks that need to be performed on each server to ensure correct functionality.
 +
 +
====Configure NTP====
 +
Each server needs to have the same time, or some services will not start. Ensure that NTP is configured and running on all servers, and check all clocks are synced.
 +
 +
====Disable Swap====
 +
Disable swap on each storage server. Running <code>swapoff -a</code> will disable all swap devices found in /proc/swaps and /etc/fstab. Also comment out/remove any swap lines in /etc/fstab to prevent swap being activated if a server is rebooted.
 +
 +
====Install dependencies====
 +
<syntaxhighlight>yum -y install java-1.8.0-openjdk-headless wget</syntaxhighlight>
 +
 +
====Download the Quobyte yum repo file====
 +
<syntaxhighlight>
 +
cd /etc/yum.repos.d
 +
wget https://packages.quobyte.com/repo/9/<YOUR_REPO_ID>/rpm/CentOS_7/quobyte.repo
 +
</syntaxhighlight>
 +
 +
====Install Quobyte Server package====
 +
<syntaxhighlight>yum -y install quobyte-server</syntaxhighlight>

Revision as of 11:06, 1 March 2018

Error creating thumbnail: File missing

Server Installation

Prerequisites

Before installing quobyte software there are some tasks that need to be performed on each server to ensure correct functionality.

Configure NTP

Each server needs to have the same time, or some services will not start. Ensure that NTP is configured and running on all servers, and check all clocks are synced.

Disable Swap

Disable swap on each storage server. Running swapoff -a will disable all swap devices found in /proc/swaps and /etc/fstab. Also comment out/remove any swap lines in /etc/fstab to prevent swap being activated if a server is rebooted.

Install dependencies

yum -y install java-1.8.0-openjdk-headless wget

Download the Quobyte yum repo file

cd /etc/yum.repos.d
wget https://packages.quobyte.com/repo/9/<YOUR_REPO_ID>/rpm/CentOS_7/quobyte.repo

Install Quobyte Server package

yum -y install quobyte-server