2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

MySQLインストール(Mac)

Posted at

前提

MacPC使っている人
homebrew必要まだの人は↓から導入

MySQLインストール

ターミナルを起動します

homebrewのupdateをしておく

% brew update

インストール可能なMsSQLのバージョンを検索

% brew search mysql | grep "mysql@"
mysql@5.7
mysql@8.0

バージョンを指定してMsSQLをbrewでインストール

% brew install mysql@8.0

※最新verが欲しい場合は@でverを指定せず「brew install mysql」で実行すると最新verがインストールされます

Installing mysqlが完了したら終わりです
スクリーンショット 2024-03-10 8.47.21.png

MySQLのインストール確認

% mysql --version
mysql  Ver 8.3.0 for macos12.6 on x86_64 (Homebrew)

MySQLのバージョンが確認できたらインストール完了です

MySQL起動・停止

各種コマンド

・起動

% mysql.server start
Starting MySQL
.. SUCCESS!

・ステータス確認

% mysql.server status
 SUCCESS! MySQL running (7172)

・停止

% mysql.server stop 
Shutting down MySQL
. SUCCESS!

MySQLは上記の起動コマンドを実行すると立ち上がります
起動していないとプログラムなどでDBとして使う時にエラーになるので注意が必要です
また、よく起動していたっけという状態になるのでstatusで起動しているか確認しましょう
使わない時は停止しておきましょう

おわり

他の記事でMySQL使うことが多いとので導入まで
MySQLへのログインやMySQLのコマンド類は今回は省きます

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?