🖥

MySQL環境をMac上に構築する

2023/04/22に公開

手順

  • Homebrewを準備
  • Homebrewを使ってMySQLをインストール
  • MySQLのパスを通す
$ brew list | grep mysql
$ brew info mysql-client
$ mysql.server start
$ mysql.server status

セキュリティ設定

MySQLを稼働した状態で以下を実行する

$ mysql_secure_installation

Securing the MySQL server deployment.

Connecting to MySQL using a blank password.

VALIDATE PASSWORD COMPONENT can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD component?

# Yにした。
Press y|Y for Yes, any other key for No: Y

There are three levels of password validation policy:

LOW    Length >= 8
MEDIUM Length >= 8, numeric, mixed case, and special characters
STRONG Length >= 8, numeric, mixed case, special characters and dictionary                  file

# 数字を入力することで、パスワードのレベルを選択できるらしい。最も強固な2にした
Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 2
Please set the password for root here.

New password:

Re-enter new password:

# 推定強度100やで〜って褒められた(?)
Estimated strength of the password: 100
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : Y

By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.

# 匿名ユーザを削除するかどうか。Yにした。
Remove anonymous users? (Press y|Y for Yes, any other key for No) : Y
Success.


Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.

# リモートでのrootログインを禁止するか?
# 手元にあるMacからしかアクセスしないので、Yesにした。

Disallow root login remotely? (Press y|Y for Yes, any other key for No) : Y

Success.

By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.

# testという名前のDBがあるけど消す?もちろんYesです。
Remove test database and access to it? (Press y|Y for Yes, any other key for No) : Y

 - Dropping test database...
Success.

 - Removing privileges on test database...
Success.

# 特権テーブルをリロードすると、すべての変更が確実に行われます
これまでに作成されたものはすぐに有効になります。今すぐ特権テーブルをリロードしますか?←よくわからんけど、とりまYesってことにした。
Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.

Reload privilege tables now? (Press y|Y for Yes, any other key for No) : Y
Success.

All done!

MySQLにログインしていく

$ mysql -uroot -p
Enter password:[設定したパスワード]

これで入れる!

参考

https://prog-8.com/docs/mysql-env
https://qiita.com/hkusu/items/cda3e8461e7a46ecf25d
https://chiritsumo-blog.com/mac-mysql-install/

【補足】DBeaverでアクセスする

ポート番号は3306でOK。
ホストはlocalhostのままでOK
あとはroot,設定したパスワードでログインする

以下、参考
https://qiita.com/hkusu/items/cda3e8461e7a46ecf25d

所感

意外と簡単にできた。難しそうっていう思い込みは恐ろしい。

勉強用に作ったけど、もし何かセキュリティの観点で危険性があればご指摘いただきたいです。

GitHubで編集を提案

Discussion