1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[My SQL] macOSでログイン、ログアウトする方法

Posted at

#環境
MySQLがインストールされたPC
MySQLのバージョンは 5.7

#MySQLにログインする方法
##MySQLを起動する
ターミナルで以下を実行します。

$ brew services start mysql@5.7

起動に成功すると以下のようになります。
すでに起動していた場合は再起動(restart)されます。

Successfully started `mysql@5.7` (label: homebrew.mxcl.mysql@5.7)

##ログインする
ターミナルで以下を実行し、rootユーザーとしてログインします。

$ mysql --user=root --password

コマンド実行後 Enter password: と表示されるので設定したパスワードを入力します。
ログインに成功すると mysql> と表示されます。

#ログアウトとMySQLの停止をする
ターミナルで以下を実行し、ログアウトします。

$ exit;

Bye と表示されたらログアウト成功です。
次にターミナルで以下を実行し、MySQLを停止します。

$ brew services stop mysql@5.7

Successfully stopped msyql@5.7 と表示されたらMySQLの停止は成功です。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?