How do you stop MySQL on a Mac OS install?

前端 未结 20 1438
暗喜
暗喜 2020-11-30 16:08

I installed MySQL via MacPorts. What is the command I need to stop the server (I need to test how my application behave when MySQL is dead)?

20条回答
  •  春和景丽
    2020-11-30 16:43

    If you installed the MySQL 5 package with MacPorts:

    sudo launchctl  unload -w /Library/LaunchDaemons/org.macports.mysql.plist 
    

    Or

    sudo launchctl  unload -w /Library/LaunchDaemons/org.macports.mysql5-devel.plist 
    

    if you installed the mysql5-devel package.

提交回复
热议问题