0
0

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.

MacにMySQLのインストールと設定

Last updated at Posted at 2021-08-11

始めに

MySQLの勉強を始めようと思い、ここの記事を参考にインストールと設定を行なった。

環境

macOS: Catalina 10.15.7
xCode: version 12.4

MySQLのインストール

いつものように、Homebrewでインストールする。

terminal
$ brew install mysql

MySQLの設定

サーバーを起動して初期設定を行う。

terminal
$ mysql.server start
$ mysql_secure_installation

以下のことに関して聞かれるので、それぞれ設定を行う(リンク)

  • root userのパスワード変更
  • anonymous usersの削除するか否か
  • リモートからのrootログインを許可するか否か。
  • test DBを削除するか否か
  • 権限テーブルを読み込ませて、上記の変更をすぐに反映させるか否か

終わったらサーバーを停止する。

terminal
$ mysql.server stop

実行

サーバーの起動

terminal
$ mysql.server start

MySQLの実行

terminal
$ mysql -uroot -p

ctrl+dで抜けられる。

サーバーの停止

terminal
$ mysql.server stop
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?