mac stop mysql code example

Example 1: stop mysql server mac

brew services stop mysql
brew services start mysql
brew services restart mysql

Example 2: restart mysql mac command line

# mysql start/stop/restart
# MAC
$ cd /Applications/Ampps/mysql/bin
$ mysql.server restart
#Linux
$ /etc/init.d/mysqld restart
or
$ service mysqld restart
or
$ systemctl restart mysqld

Example 3: restart mysql mac

alias mysqlstart='sudo /usr/local/mysql/support-files/mysql.server start'
alias mysqlstop='sudo /usr/local/mysql/support-files/mysql.server stop'