📜  mac restart mysql server - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:54.652000             🧑  作者: Mango

代码示例2
# 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