This is an automated email from the ASF dual-hosted git repository. alexey pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kudu.git
commit 86b3a733cccab62d4159ddd31c3b43a699773b25 Author: Alexey Serbin <[email protected]> AuthorDate: Tue Jun 20 13:43:23 2023 -0700 [doc] update build/install instructions for RHEL9 Change-Id: I9fb448a48d1d61ac35301cadd4624f90f00e2c09 Reviewed-on: http://gerrit.cloudera.org:8080/20102 Tested-by: Kudu Jenkins Reviewed-by: Yingchun Lai <[email protected]> --- docs/installation.adoc | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/docs/installation.adoc b/docs/installation.adoc index 023b87e24..7910fae03 100644 --- a/docs/installation.adoc +++ b/docs/installation.adoc @@ -98,7 +98,7 @@ on a version older than 8.0, the Red Hat Developer Toolset must be installed ---- $ sudo yum install autoconf automake cyrus-sasl-devel cyrus-sasl-gssapi \ cyrus-sasl-plain flex gcc gcc-c++ gdb git java-1.8.0-openjdk-devel \ - krb5-server krb5-workstation libtool make openssl-devel patch \ + krb5-server krb5-workstation krb5-devel libtool make openssl-devel patch \ pkgconfig redhat-lsb-core rsync unzip vim-common which ---- @@ -111,6 +111,12 @@ $ sudo yum install centos-release-scl-rh $ sudo yum install devtoolset-8 ---- +. If building on RHEL or CentOS older than 9.0, install the `redhat-lsb-core` package: ++ +---- +$ sudo yum install redhat-lsb-core +---- + . Optional: If support for Kudu's NVM (non-volatile memory) block cache is desired, install the memkind library. + @@ -240,8 +246,10 @@ automated deployment scenario. It skips the steps marked *Optional* above. sudo yum -y install autoconf automake curl cyrus-sasl-devel cyrus-sasl-gssapi \ cyrus-sasl-plain flex gcc gcc-c++ gdb git java-1.8.0-openjdk-devel \ - krb5-server krb5-workstation libtool make openssl-devel patch pkgconfig \ - redhat-lsb-core rsync unzip vim-common which + krb5-server krb5-workstation krb5-devel libtool make openssl-devel patch \ + pkgconfig rsync unzip vim-common which +# Uncomment the next line if installing on RHEL/CentOS < 9 +# sudo yum -y install redhat-lsb-core sudo yum -y install centos-release-scl-rh sudo yum -y install devtoolset-8 git clone https://github.com/apache/kudu
