Skip to content

Instantly share code, notes, and snippets.

@iamvickyav
Created June 19, 2021 17:33
Show Gist options
  • Save iamvickyav/8dbba191985ab21918d37910f3eda549 to your computer and use it in GitHub Desktop.
Save iamvickyav/8dbba191985ab21918d37910f3eda549 to your computer and use it in GitHub Desktop.

MySQL Local Setup in MAC

brew install mysql

mysql

$(brew --prefix mysql)/bin/mysqladmin -u root password root

mysql -h localhost -P 3306 -u root -p (Enter password as root to login)

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root';

Install Sequal Pro - https://www.sequelpro.com/

Use Socket Type to Login

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