Introduce Database Tool(MySQL, MariaDB)with M1 Mac OS

Chanjong Park
Chan’s Programming Diary
3 min readApr 21, 2021
Sequel Ace from App Store

When handling datas, using database tool is pretty helpful than accessing it directly via terminal. There are a lot of famous tools such as DBeaver, MySQL Workbench, Sequel Pro, etc. But i found they almost didn’t work on M1 Mac Because It’s been only half year M1 processor came out the world.

I installed 3 tools i said before. DBeaver and MySQL Workbench didn’t work perfectly, Sequel Pro worked first but it occurred Force Quit few minutes later.

So I tried to find which one is working on M1. While searching on google, I found out there’s someone getting same issue with me. And it included the solution which i have to install as well.

Sequel Ace is Database Management Tool for MySQL/MariaDB which works on Mac OS with free. and It works on M1 as you can see in the picture below(Apple Silicon).

You can see it on Github

You can install it on App Store, Homebrew and Github.

I’ll show you how to install in Homewbrew.

1. Install with Homebrew

brew install --cask sequel-ace

Now you can see the application icon.

2. Connect to Mysql/MariaDB

  • Let’s click the icon to run Sequel Ace.
  • Connect to your DB.
  • If there is any error, check your port, username(if not root) and especially password.

3. Choose your specific Database

  • You can choose DB what you want to access with the button at the middle of top.

4. Star on Github

If it works everything, go to Github and Star!

Thank you for watching my post and hope you guys it helps.

--

--