Last active
January 8, 2024 16:21
-
-
Save emailrhoads/0196ccdc6175fb47ffbcea052657fd5e to your computer and use it in GitHub Desktop.
mysql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# So what happens is Mac has a native mysql server running on port 3306 | |
# and this has a fJ db, but there are no jobs in it | |
# disable this and start the mariaDB docker service to use a better DB | |
# is it running? | |
sudo lsof -i -P | grep LISTEN | grep 3306 | |
# kill it forever | |
/usr/local/mysql/bin/mysqladmin -u root shutdown |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment