Created
February 7, 2017 02:10
-
-
Save aipi/0bb68880a60e93e45e10df67f0b22c6b to your computer and use it in GitHub Desktop.
MySQL Start, Stop and Restart on MacOS
This file contains 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
#To start MySQL: | |
$ sudo mysql.server start | |
#To stop MySQL: | |
$ sudo mysql.server stop | |
#To restart MySQL: | |
$ sudo mysql.server restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here are the three basic commands to start, stop, and restart MySQL in Mac OS X. Be sure to enter the command onto a single line, sudo obviously requires an administrator password to be entered.