Setting up mysql on mac with sequel pro and homebrew
MacOS high sierra 10.13.6
Homebrew version 1.7.6
Assuming you've installed homebrew...
$ brew install mysql
$ brew services start mysql
you can stop the server: $ brew services stop mysql
$ mysql_secure_installation
then enter all the infos, you'll set your password etc etc...
$ mysql -u root -p
then fill in your password
$ password: <insert your thing>
change your user info to handle this error MySQL said: Authentication plugin 'caching_sha2_password' cannot be loaded: dlopen(/usr/local/lib/plugin/caching_sha2_password.so, 2): image not found
ALTER USER '<username>'@'<localhost>' IDENTIFIED WITH mysql_native_password BY '<your_password>'
- username: root
- localhost: localhost
- your_password:
************
Download and install Sequel Pro for nicer views into your databases