Windows 10にMySQL 8.0.27コマンドへ環境PATHを設定する

環境
Windows 10 64bit
MySQL 8.0.27

1.MySQLコマンドへPATHを設定します
MySQL のコマンドラインツールである mysql.exe は MySQL をインストールしたディレクトリの中の bin ディレクトリの中に含まれています。
場所 C:\Program Files\MySQL\MySQL Server 8.0\bin

2.システム環境変数の設定
(1).「ここに入力して検索」に「システム環境」を入力し、「システム環境変数の編集」をクリックします。
(2).「環境変数(N)」->「システム環境変数(S)」->「Path」->「編集(I)」をクリックします。
(3).「環境変数名の編集」画面に「新規(N)」をクリックし、以下のパスを入力します
C:\Program Files\MySQL\MySQL Server 8.0\bin
「OK」をクリックします

3.PATH の設定ができたかどうか確認します
バージョンを確認します

>mysql --version
mysql  Ver 8.0.27 for Win64 on x86_64 (MySQL Community Server - GPL)

4.MySQLに接続します

>mysql -uroot -p
Enter password: *********
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 20
Server version: 8.0.27 MySQL Community Server - GPL

Copyright (c) 2000, 2021, Oracle and/or its affiliates.

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.

mysql>

 

MySQL

Posted by arkgame