Start using MySQL
Start and stop the MySQL server
Run the versioned MySQL 8.4 Homebrew service and verify which server release is active before troubleshooting.
8 minute lesson
~~~
Start and stop the versioned Homebrew service with:
brew services start mysql@8.4
brew services stop mysql@8.4
Check its state before changing passwords or reinstalling anything:
brew services list
A client cannot connect while the server is stopped. The service name also tells you which MySQL release Homebrew is running.
Lesson completed