How to stop MySQL after entering $ ps -ef | grep mysql? -


so uninstalled mysql (5.7.16) homebrew on mac, when entered

$ ps -ef | grep mysql 

to check if there's process running, got this

"501  1069  1024   0 10:06am ttys000    0:00.00 grep mysql" 

does mean mysql still running computer? how can uninstall mysql completely?

thanks much!!!

the piped grep command filters lines include given keyword: mysql.

the ps command reports piped grep command running process.

the output receive finally, means running process having keyword mysql piped grep command mysql parameter.


Comments

Popular posts from this blog

php - How to display all orders for a single product showing the most recent first? Woocommerce -

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

angularjs - How restrict admin panel using in backend laravel and admin panel on angular? -