Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save questionlp/4a13f5bb33d035513ca88e71d53158c7 to your computer and use it in GitHub Desktop.
Save questionlp/4a13f5bb33d035513ca88e71d53158c7 to your computer and use it in GitHub Desktop.
Fedora: Switching Between MySQL 8.4 LTS and 8.0

Fedora: Switching Between MySQL 8.4 LTS and 8.0

Switching from MySQL 8.0 to 8.4

sudo dnf config-manager --disable mysql80-community
sudo dnf config-manager --disable mysql-tools-community

sudo dnf config-manager --enable mysql-8.4-lts-community
sudo dnf config-manager --enable mysql-tools-8.4-lts-community

Switching from MySQL 8.4 to 8.0

sudo dnf config-manager --disable mysql-8.4-lts-community
sudo dnf config-manager --disable mysql-tools-8.4-lts-community

sudo dnf config-manager --enable mysql80-community
sudo dnf config-manager --enable mysql-tools-community
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment