Skip to content

Instantly share code, notes, and snippets.

@vunhatchuong
Created August 13, 2024 12:56
Show Gist options
  • Select an option

  • Save vunhatchuong/fb5a408f0931b754f494cdefb89f15e4 to your computer and use it in GitHub Desktop.

Select an option

Save vunhatchuong/fb5a408f0931b754f494cdefb89f15e4 to your computer and use it in GitHub Desktop.
Arch install MySQL Percona + MySQL-WorkBench

Update

sudo pacman -Syu

Install keyring for WorkBench

sudo pacman -S gnome-keyring

Install Components

sudo pacman -S percona-server-clients percona-server mysql-workbench

Init server

Manually create mysqld.log since there's a chance encounter permission deny.

sudo touch /var/log/mysqld.log
sudo chown mysql:mysql /var/log/mysqld.log

sudo mysqld --initialize

Install

sudo systemctl enable --now mysqld
sudo grep 'temporary password' /var/log/mysqld.log

mysql_secure_installation

References

@back2Lobby

back2Lobby commented May 7, 2026

Copy link
Copy Markdown

Thank you, everything worked like a charm on my CachyOS.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment