$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

Zookeeper Installation in Fedora 35 – Step-by-step

February 8, 2023 | By the+gnu+linux+evangelist.

Installing

  1. 2. Downloading Zookeeper

    Download Apache Zookeeper for GNU/Linux

    Here Apache Zookeeper tar.gz
    Link to Download the Open Source Apache Zookeeper for Linux
  2. 3. Extracting Zookeeper

    Double-Click on Archive Extract into /tmp

    Install Zookeeper on Fedora 35 - Archive Extraction

    Or from Command Line:

    Copy
    tar xvzf zookeeper*.tar.gz -C /tmp/
  3. 4. Installing Zookeeper

    Now to Install Zookeeper on Fedora
    First, set Ownership with:

    Copy
    sudo su -c "chown -R root:root /tmp/zookeeper*"

    And then Switch the contents into the Target:

    Copy
    sudo su -c "mv /tmp/zookeeper* /opt/zookeeper"

    Authenticate with the User Admin Pass.
    If Got “User is Not in Sudoers file” then see: How to Enable sudo.

  4. 5. Installing JDK

    How to Install Required Oracle Java JDK on Fedora

    Here Install Oracle JDK for Fedora
    How to Install Oracle-Sun Java SE JDK on Linux Fedora
  5. 6. Setting Up Java

    Setting Up the Java Heap Memory Size
    A Good Value is about 75% of RAM.
    So let’s go Editing the Bash Config File:

    Copy
    nano $HOME/.bashrc

    Append:

    Copy
    export JVMFLAGS="-Xmx1500m"

    Set Size with ‘m’ postfix for Megabites and ‘g’ for Gigabites.
    Ctrl+x to Save & Exit from nano Editor :)

    Copy
    bash

    To Load the New SetUp!

Contents