Installing MariaDB + Galera via yum fails with "No package MariaDB-Galera-server available"

64

As per official documentation I quote

There are no longer separate MariaDB Galera Cluster releases for MariaDB 10.1 and above. Simply download MariaDB (10.1 or above) and configure your cluster as normal.

You won't find the package MariaDB-Galera-server on the repo 10.1

To answer your question since you are using the repo 10.0, i just made a test and notice that the package MariaDB-Galera-server is present on CentOS 7.

Screenshot showing MariaDB-Galera-server

  • I am sure that you did not clean the server from old MySQL or MariaDB packages on the machine.
  • Also verify the presence of any libs related to mysql or mariadb.
  • Also do a yum clean all and try installing it.
Share:
64

Related videos on Youtube

Kasia Baczewska
Author by

Kasia Baczewska

Updated on September 18, 2022

Comments

  • Kasia Baczewska
    Kasia Baczewska over 1 year

    I would like to create ComboBoxes in my cells. I've figured out how to create such a thing in a specific cell:

    Set curCombo = ActiveSheet.Shapes.AddFormControl(xlDropDown, t.Left, t.Top, t.Width, t.Height)
            With curCombo
                .ControlFormat.DropDownLines = 2
                .ControlFormat.AddItem "yes", 1
                .ControlFormat.AddItem "no", 2
            End With
    

    I will have a lot of ComboBoxes in my Sheet. So now, I have a problem with how to find ComboBox which I am interested in, and get the value, having the row and column of this Combobox. What's more, I would like to have this in the cell. It means that if I would like to remove the entire column, all combo boxes will be removed too.

    I will appreciate all the answers because I have this problem for a long time and can't figure it out.