ブログ - MySQLサーバを停止して,自動起動になっているか確認する
MySQLサーバを停止して見る.
停止した.プロセスを確認する.
起動してないことが確認できた.
macOS SierraでOSが起動した時に自動的にMySQLサーバが起動する設定となっているか,確認する.launchctlで管理している.
登録されている.あとはOSを再起動してmysqldが起動するか確認すれば良い.
zeus:~ server$ brew services stop mysql
Stopping `mysql`... (might take a while)
==> Successfully stopped `mysql` (label: homebrew.mxcl.mysql)
zeus:~ server$
zeus:~ server$ ps -ef|grep mysqld
501 9055 5640 0 6:37PM ttys003 0:00.00 grep mysqld
zeus:~ server$
macOS SierraでOSが起動した時に自動的にMySQLサーバが起動する設定となっているか,確認する.launchctlで管理している.
zeus:~ server$ launchctl list|grep mysql
8392 0 homebrew.mxcl.mysql
zeus:~ server$