Skip to content

Instantly share code, notes, and snippets.

@rad182
Forked from nickcernis/mariadb-brew-macos.md
Created March 9, 2023 14:30
Show Gist options
  • Save rad182/3b0f5c6c411bbd5125ca0360d5537996 to your computer and use it in GitHub Desktop.
Save rad182/3b0f5c6c411bbd5125ca0360d5537996 to your computer and use it in GitHub Desktop.
Install MariaDB with brew on macOS and fix the “access denied” issue

Attempting mysql -u root fails with Access denied for user 'root'@'localhost immediately after doing brew install mariadb and starting mariadb with brew services start mariadb.

To fix it (with MariaDB still running):

  1. sudo mysql then enter your Mac user password
  2. ALTER USER 'root'@'localhost' IDENTIFIED BY 'newrootpassword'; replacing newrootpassword with the password you wish to use for the MariaDB root user.
  3. Ctrl-C to exit mysql.

You should then be able to connect to MariaDB with mysql -u root -p, then entering the root password when prompted.

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