Kudu Installation

Download and configure the Kudu repositories for your operating system.

For RHEL 7:

  1. Save and wget the below file into /etc/yum.repos.d

    https://archive.cloudera.com/kudu/redhat/7/x86_64/kudu/cloudera-kudu.repo

  2. Install kudu using the below commands:

    sudo yum install kudu
    sudo yum install kudu-master
    sudo yum install kudu-tserver
    
  3. Start Kudu services using the below commands:

    $ sudo service kudu-master start
    $ sudo service kudu-tserver start
    
Top