Learn about Centmin Mod LEMP Stack today
Become a Member

Feedback AlmaLinux or Rocky Linux [POLL]

Discussion in 'AlmaLinux 8 & Rocky Linux 8 Beta Testing' started by buik, Sep 29, 2022.

  1. AlmaLinux

    70.0%
  2. Rocky Linux

    30.0%
  1. buik

    buik “The best traveler is one without a camera.”

    2,031
    524
    113
    Apr 29, 2016
    Flanders
    Ratings:
    +1,676
    Local Time:
    8:03 AM
    CMM8 introduces Enterprise Linux (EL) 8 and in addition AlmaLinux and Rocky Linux.
    Which Linux distribution do you use?

     
  2. eva2000

    eva2000 Administrator Staff Member

    55,155
    12,249
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,825
    Local Time:
    4:03 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    I tend to favour AlmaLinux where possible :)
     
  3. happyhacking

    happyhacking Member

    111
    18
    18
    Apr 23, 2021
    Ratings:
    +61
    Local Time:
    1:03 AM
    1.22.0
    MariadDB 10.4.25
    I personally love Oracle Linux, but i mostly use CentOS because Centminmod.

    Raising the bar, I would love to see AlmaLinux 9 supported and MariaDB 10.9
     
    Last edited: Oct 2, 2022
  4. buik

    buik “The best traveler is one without a camera.”

    2,031
    524
    113
    Apr 29, 2016
    Flanders
    Ratings:
    +1,676
    Local Time:
    8:03 AM
    Why do you love Oracle Linux? Are there certain options and features why you prefer Oracle?
    Why specifically? Alma and Rocky are close.
     
  5. eva2000

    eva2000 Administrator Staff Member

    55,155
    12,249
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,825
    Local Time:
    4:03 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Guess it's partially related to AlmaLinux folk's experience with their CloudLinux and KernelCare stuff and fact that AlmaLinux seems to been adopted by more web hosts out of the box earlier than Rocky linux.
     
  6. buik

    buik “The best traveler is one without a camera.”

    2,031
    524
    113
    Apr 29, 2016
    Flanders
    Ratings:
    +1,676
    Local Time:
    8:03 AM
    Could be. For example. One of the largest control panels:

    That's a pretty big difference.
     
  7. rdan

    rdan Well-Known Member

    5,449
    1,410
    113
    May 25, 2014
    Ratings:
    +2,204
    Local Time:
    2:03 PM
    Mainline
    10.2
    Except for DigitalOcean.
     
  8. eva2000

    eva2000 Administrator Staff Member

    55,155
    12,249
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,825
    Local Time:
    4:03 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Yeah control panels are determining what gets supported first - though I guess lucky no one is looking to Centmin Mod for an example LOL
    Yeah not sure what's up with that :)
     
  9. buik

    buik “The best traveler is one without a camera.”

    2,031
    524
    113
    Apr 29, 2016
    Flanders
    Ratings:
    +1,676
    Local Time:
    8:03 AM
    Wrong :)
    Hetzner is on the Rocky only train to.
    But I also understand.
    Within just a few minutes you are from Rocky to Alma or visa versa with the migrate script.
     
  10. eva2000

    eva2000 Administrator Staff Member

    55,155
    12,249
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,825
    Local Time:
    4:03 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Yeah I asked Upcloud when they will have AlmaLinux 9 and Rocky Linux 9 OS available as they only have EL8. They said they're reworking their distro release system to support faster syncing of versions once a distro is released. But because of this work they aren't prioritizing EL9 versions and instead gave me commands to do in place Rocky Linux 8 to Rocky Linux 9 major upgrades - so I added that as one of the options in my automated Terraform scripting. So right now with Terraform and Upcloud for EL9 I test on Rocky Linux 9 :)
     
  11. buik

    buik “The best traveler is one without a camera.”

    2,031
    524
    113
    Apr 29, 2016
    Flanders
    Ratings:
    +1,676
    Local Time:
    8:03 AM
    Then post those upgrade commands on the forum.
     
  12. eva2000

    eva2000 Administrator Staff Member

    55,155
    12,249
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,825
    Local Time:
    4:03 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    This part is from my Rocky Linux 8 to Rocky Linux 9 upgrade script. 11 commands to do in-place Rocky Linux 8 to Rocky Linux 9 upgrade as long as no 3rd party YUM repos have been installed i.e. EPEL etc. It seems to mess up the in-place upgrade even if previously installed 3rd party YUM repos and removed them before doing the below commands. So really needs to be a fresh virgin installed Rocky Linux 8 OS.
    Code (Text):
    REPO_URL="https://download.rockylinux.org/pub/rocky/9/BaseOS/x86_64/os/Packages/r"
    curl -4sL "$REPO_URL" > repourl
    RELEASE_PKG=$(cat repourl | grep -Eo "rocky\-release\-[0-9.]+\-[0-9.]+\.el9\.noarch\.rpm" | uniq)
    REPOS_PKG=$(cat repourl | grep -Eo "rocky\-repos\-[0-9.]+\-[0-9.]+\.el9\.noarch\.rpm" | uniq)
    GPG_KEYS_PKG=$(cat repourl | grep -Eo "rocky\-gpg\-keys\-[0-9.]+\-[0-9.]+\.el9\.noarch\.rpm" | uniq)
    sudo dnf update
    sudo dnf -y install $REPO_URL/$RELEASE_PKG $REPO_URL/$REPOS_PKG $REPO_URL/$GPG_KEYS_PKG
    rm -rf /usr/share/redhat-logos
    sudo dnf --releasever=9 --allowerasing --setopt=deltarpm=false distro-sync -y
    sudo rpm --rebuilddb
    reboot
    
     
  13. buik

    buik “The best traveler is one without a camera.”

    2,031
    524
    113
    Apr 29, 2016
    Flanders
    Ratings:
    +1,676
    Local Time:
    8:03 AM
    Why do you prefer a dangerous in-place upgrade between 8 to 9 anyway, when Red Hat didn't even support in-place upgrades before recently? And now only in very specific circumstances, using Leapp.

    Why not install CentOS 9 Stream on Upcloud and migrate to AlmaLinux 9 or Rocky Linux 9 afterwards, with their migration script?

    Although CentOS 9 Stream is unstable and not suitable for use in production, if you ask me. It does support EL9 throughout its support phase. And thus ideal for migrating to AlmaLinux 9 * or Rocky Linux 9. Albeit Red Hat likes to see that you migrate to Red Hat Enterprise Linux 9. Hence that compatibility. :)

    *
     
    Last edited: Oct 9, 2022
  14. happyhacking

    happyhacking Member

    111
    18
    18
    Apr 23, 2021
    Ratings:
    +61
    Local Time:
    1:03 AM
    1.22.0
    MariadDB 10.4.25
    Main reason is Unbreakeable Linux Kernel, a subscription service for a self patching rebootless kernel upgrade, oracle db support and cluster tools, amid that is bibary compatible with redhat, centos, etc.
     
  15. eva2000

    eva2000 Administrator Staff Member

    55,155
    12,249
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,825
    Local Time:
    4:03 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    It's only for automated testing so nothing for production use :)
     
  16. buik

    buik “The best traveler is one without a camera.”

    2,031
    524
    113
    Apr 29, 2016
    Flanders
    Ratings:
    +1,676
    Local Time:
    8:03 AM
    Oki doki. Then consider the message for another reader wondering how to migrate Enterprise Linux (EL) easily: As easy as pie!