インストール -> 8.0.18
【環境】
MySQL: 8.0.15
Windows: 10 Pro 64bit
MySQL: 8.0.15
Windows: 10 Pro 64bit
DL
公式:MySQL Community Downloads
から DL。
2019-11-05 現在
mysql-installer-community-8.0.18.0.msi
(Web 版は避けた)
Windows (x86, 32-bit), MSI Installer と書かれていたけど
公式:MySQL Community Downloads
こちらでは、Windows (x86, 32 & 64-bit), MSI Installer と書かれているので、
64bit もこれでよさそう。
また、DL しようとすると、Oracle アカウントについて聞かれるけど
[No thnaks, just start my download.] というリンクから、アカウントなしで DL できる。
インストール
- mysql-installer-community-8.0.18.0.msi ダブルクリック
- 「License Agreement」ダイアログは存在しなかった
- 「Choosing a Setup Type」ダイアログ
- [Developer Default] を選択
- [Next]
- 「Check Requirements」ダイアログ
- インストールするのに、要件を満たしていないものが列挙されているらしい
- MySQL For Excel 1.3.8:Visual Studio 2010 Tools for Office Runtime is not installed
- Connector/Python 8.0.18:Python (64-bit) is not installed
- ひとまずスルーして [Next]
- 継続警告ダイアログが出るので [Yes]
- 「Installation」ダイアログ
- [Execute]
- インストールが完了したら [Next]
- 「Product Configuration」ダイアログ
- [Next]
- 「High Availability」ダイアログ
- [Standalon MySQL Server / Classic MySQL Replication] を選択
- [Next]
- 「Type and Networking」ダイアログ
- デフォルトのまま
- [Next]
- 「Authentication Method」ダイアログ
- デフォルトのまま
- [Next]
- 「Accounts and Roles」ダイアログ
- MySQL Root Password:任意
- Repeat Password:上記と同一のもの
- [Next]
- 「Windows Service」ダイアログ
- [Configure MySQL Server as a Windows Service] にチェック
- Windows Service Name:MySQL8018
- [Start the MySQL Server at System Startup] のチェックを外す
- [Next]
- 「Apply Configuration」ダイアログ
- [Execute]
- [Finish]
- 「Product Configuration」ダイアログ
- [Next]
- 「MySQL Router Configuration」ダイアログ
- [Finish]
- 「Product Configuration」ダイアログ
- [Next]
- 「Connect to Server」ダイアログ
- Password:先程のもの
- [Check]
- [Next]
- 「Apply Configuration」ダイアログ
- [Execute]
- [Finish]
- 「Product Configuration」ダイアログ
- [Next]
- 「Installation Complete」ダイアログ
- [Finish]
インストール先
大概のアプリが、インストールウィザード内で
インストール先の選択があるけれど
MySQL には、それがなかったので、ちょっと焦った。
インストール先は、こちら。
C:\Program Files\MySQL
Shell
C:\Program Files\MySQL\MySQL Shell 8.0\bin\mysqlsh.exe
MySQLWorkbench
C:\Program Files\MySQL\MySQL Workbench 8.0 CE\MySQLWorkbench.exe
環境変数
C:\Program Files\MySQL\MySQL Server 8.0\bin
動作確認
コマンドプロンプトを開く。
サービス
コマンドプロンプトを管理者権限で実行。
// 開始
net start mywql8018
// 終了
net stop mywql8018
接続
mysql -u root -p
Enter password: **********
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 15
Server version: 8.0.18 MySQL Community Server - GPL
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
タイムゾーン
設定
C:\ProgramData\MySQL\MySQL Server 8.0\my.ini
こちらをバックアップを取ってから、下記に従って追記。
my.cnf 8.0.x
参考サイト
DBOnline:MySQL Community Server 8.0.15のインストール
ProEngineer:MySQLのダウンロード&インストールと初期設定方法(2019-09-27)