LoginSignup
0
0

【MySQL】起動、ログイン、ログアウト、停止

Last updated at Posted at 2024-06-02

概要

MySQLの管理に必要なコマンドを紹介しています。


MySQL一連の手順

MySQL起動

コマンド
brew services start mysql@5.7

MySQLログイン

コマンド
mysql --user=root --password

MySQLログアウト

コマンド
exit;

MySQL停止

コマンド
brew services stop mysql@5.7

brewとは

Homebrew(通称 "brew")のことで、macOSおよびLinux用のパッケージ管理ソフトウェアです。
Homebrewを利用することで brew コマンドが使えるようになり、ソフトウェアのインストール、アップデート、管理がコマンドラインから簡単に行えます。

0
0
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
0
0