How to stop mysqld

前端 未结 18 929
清酒与你
清酒与你 2020-12-04 04:32

To find out the start command for mysqld (using a mac) I can do:

ps aux|grep mysql

I get the following output, which allows me to start mys

18条回答
  •  南笙
    南笙 (楼主)
    2020-12-04 05:20

    for Binary installer use this:

    to stop:

    sudo /Library/StartupItems/MySQLCOM/MySQLCOM stop
    

    to start:

    sudo /Library/StartupItems/MySQLCOM/MySQLCOM start
    

    to restart:

    sudo /Library/StartupItems/MySQLCOM/MySQLCOM restart
    

提交回复
热议问题