# Redis - Installation on RedHat 9

#### Install the Latest Version using the Remi Repository

<div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" id="bkmrk-for-the-latest-stabl" jsaction="" jscontroller="a7qCn" jsuid="IHhTXd_26" role="heading">For the latest stable version of Redis, you can use the Remi repository, which provides more recent packages for RHEL derivatives.<span class="uJ19be notranslate" data-processed="true" data-sfc-cb="" data-sfc-root="c" data-wiz-uids="IHhTXd_2c,IHhTXd_2d"><span class="vKEkVd" data-animation-atomic="" data-processed="true" data-wiz-attrbind="class=IHhTXd_2b/TKHnVd"><span aria-hidden="true" data-processed="true"> </span><button aria-label="OneUptime (+2) - View related links" class="rBl3me IWyTpf pjvauc" data-amic="true" data-hveid="CAYQAQ" data-icl-uuid="19f15e7f-53bb-4562-9f9d-40cadd8e5774" data-processed="true" data-ved="2ahUKEwjknIO6tsCTAxUq6MkDHYhBHlgQye0OegQIBhAB" data-wiz-attrbind="disabled=IHhTXd_2b/C5gNJc;aria-label=IHhTXd_2b/bOjMyf;class=IHhTXd_2b/UpSNec" tabindex="0"></button></span></span></div>1. <span class="T286Pc" data-processed="true" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c">**Install the Remi repository configuration package**:</span><div class="r1PmQe" data-hveid="CAcQAQ" data-processed="true" data-sfc-cb="" data-sfc-root="c" data-wiz-uids="IHhTXd_2l,IHhTXd_2m,IHhTXd_2n" jsaction="" jscontroller="HP6Sjf" jsuid="IHhTXd_2k"><div data-processed="true"><div class="pHpOfb" data-animation-atomic="" data-processed="true">  
    <div class="pCTyYe" data-processed="true" dir="ltr"></div></div></div></div>```bash
    sudo dnf install -y https://rpms.remirepo.net/enterprise/remi-release-9.rpm
    
    ```
2. <span class="T286Pc" data-processed="true" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c">**Enable the specific Redis module stream** (e.g., Redis 7.2) from the Remi repository:</span><div class="r1PmQe" data-hveid="CAcQBA" data-processed="true" data-sfc-cb="" data-sfc-root="c" data-wiz-uids="IHhTXd_2u,IHhTXd_2v,IHhTXd_2w" jsaction="" jscontroller="HP6Sjf" jsuid="IHhTXd_2t"><div data-processed="true"><div class="pHpOfb" data-animation-atomic="" data-processed="true">  
    <div class="pCTyYe" data-processed="true" dir="ltr"></div></div></div></div>```bash
    sudo dnf module enable redis:remi-7.2 -y
    
    ```
3. <span class="T286Pc" data-processed="true" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c">**Install Redis**:</span><div class="r1PmQe" data-hveid="CAcQBw" data-processed="true" data-sfc-cb="" data-sfc-root="c" data-wiz-uids="IHhTXd_33,IHhTXd_34,IHhTXd_35" jsaction="" jscontroller="HP6Sjf" jsuid="IHhTXd_32"><div data-processed="true"><div class="pHpOfb" data-animation-atomic="" data-processed="true">  
    <div class="pCTyYe" data-processed="true" dir="ltr"></div></div></div></div>```bash
    sudo dnf install -y redis
    
    ```
4. <span class="T286Pc" data-processed="true" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c">**Start and enable the Redis service**:</span><div class="r1PmQe" data-hveid="CAcQCg" data-processed="true" data-sfc-cb="" data-sfc-root="c" data-wiz-uids="IHhTXd_3c,IHhTXd_3d,IHhTXd_3e" jsaction="" jscontroller="HP6Sjf" jsuid="IHhTXd_3b"><div data-processed="true"><div class="pHpOfb" data-animation-atomic="" data-processed="true">  
    <div class="pCTyYe" data-processed="true" dir="ltr"></div></div></div></div>```bash
    sudo systemctl enable --now redis
    ```