44
50

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 5 years have passed since last update.

【超簡単】macへMySQLをインストール

Posted at

##Homebrewのインストール
https://brew.sh/index_ja.html
まず上記リンクからHomebrewをインストールしてください。
Homebrewはmacで各種ツールをインストールするときにも使います。

##MySQLのインストール
ターミナルを開き、以下のように打ち込んでください。

$ brew install mysql

これでMySQLがインストールされます。

##MySQLのセットアップ
MySQLを起動させます。

$ mysql.server start

セキュリティ設定を行います。

$ mysql_secure_installation

色々質問されますが、基本的には'y'(YES)で答えて大丈夫です。
パスワードを聞かれた時は好きなパスワードを打ち込んでください。

最後に下記のように打ち込み、自分で設定したパスワードを入力すれば完了です。

$ mysql -uroot -p

もうこれでMySQLを使えるようになりました。

MySQL HP(https://dev.mysql.com/downloads/)
からインストールすることも出来るのですが、最初から自分でパスワードを決めることが出来るなど、今回の方法でインストールする方が色々と楽です。
初心者の方には本記事の方法をオススメします。

44
50
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
44
50

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?