blob: 28c8f9874b4fcbd92a06419b0c0b02a98650ca3d [file]
The following packages need to be installed:
- C++ compiler
- cmake 3.6+
- jdk
- openssl, including header files
- unixODBC
Installation instructions for several popular distributions are listed below:
[tabs]
--
tab:Ubuntu 18.04/20.04[]
[source,bash,subs="attributes,specialchars"]
----
sudo apt-get install -y build-essential cmake openjdk-11-jdk unixodbc-dev libssl-dev
----
tab:CentOS/RHEL 7[]
[source,shell,subs="attributes,specialchars"]
----
sudo yum install -y epel-release
sudo yum install -y java-11-openjdk-devel cmake3 unixODBC-devel openssl-devel make gcc-c++
----
tab:CentOS/RHEL 8[]
[source,shell,subs="attributes,specialchars"]
----
sudo yum install -y java-11-openjdk-devel cmake3 unixODBC-devel openssl-devel make gcc-c++
----
--