0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【MySQL】インストール

Last updated at Posted at 2025-01-04

#ダウンロード#

image.png

したのほうへ

image.png

MySQL Community (GPL) Downloads »

をクリック

MySQL Community Downloads
>MySQL Community Server

image.png

Go to Download page

image.png

mysql-installer-community-8.0.21.0.msi

こちらをインストール

No thanks , just start my download.

インストール時に一緒にいろいろとインストールできる場合もある
「Excute」を実行すると、チェックされる。
image.png


#インストールを続ける#

MySQL Installerを起動する

image.png

Microsoft Visual C++n2015-2019 が必要
image.png

Microsoft Visual C++n2015-2019 インストール後

image.png

image.png

image.png

Visual Studioインストール
image.png

check Requirements
image.png

Installation

image.png
※2021/1/29 tatemono
image.png

※ちょっと時間がかかるところ。。

image.png

※2021/1/29 tatemono
image.png

image.png

image.png

image.png

image.png

image.png

↑Windowサービスへの登録

image.png

image.png

image.png

connect to server
image.png


image.png

一回、インストーラーを再起動した
※MySQL Installerより、Connector ODBC(x64)をアンインストールする
 (先にアンインストールしないとx84(32bit)がインストールできない)
※Connector ODBC(x84)をMySQL Installerよりインストールする

↓MySQL Installer
image.png


#ODBCの設定#

C:\Windows\SysWOW64\odbcad32.exe

をクリックして起動する

image.png

image.png

image.png


あとで、Worldを入れて、再設定した!
(あとで、接続データベースは変更可能。)
image.png

#サンプルデータベースWorldのセットアップ#

image.png

SOURCE [パス]\world.sql

今回、USBで持ち込んだので

SOURCE E:\MySQL_world\world.sql\world.sql

と入力。

mysql> SHOW databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
| world              |
+--------------------+
5 rows in set (0.00 sec)

入りました。

#my.iniの文字コード設定#
[client] default-character-set=utf8mb4
[mysql] default-character-set=utf8mb4
[mysqld] character-set-server=utf8mb4

mysql
mysql> show variables like "chara%";
+--------------------------+---------------------------------------------------------+
| Variable_name            | Value                                                   |
+--------------------------+---------------------------------------------------------+
| character_set_client     | utf8                                                    |
| character_set_connection | utf8                                                    |
| character_set_database   | utf8mb4                                                 |
| character_set_filesystem | binary                                                  |
| character_set_results    | utf8                                                    |
| character_set_server     | utf8mb4                                                 |
| character_set_system     | utf8                                                    |
| character_sets_dir       | C:\Program Files\MySQL\MySQL Server 5.7\share\charsets\ |
+--------------------------+---------------------------------------------------------+
8 rows in set, 1 warning (0.00 sec)

mysql> show global variables like 'character_set%';
+--------------------------+---------------------------------------------------------+
| Variable_name            | Value                                                   |
+--------------------------+---------------------------------------------------------+
| character_set_client     | utf8mb4                                                 |
| character_set_connection | utf8mb4                                                 |
| character_set_database   | utf8mb4                                                 |
| character_set_filesystem | binary                                                  |
| character_set_results    | utf8mb4                                                 |
| character_set_server     | utf8mb4                                                 |
| character_set_system     | utf8                                                    |
| character_sets_dir       | C:\Program Files\MySQL\MySQL Server 5.7\share\charsets\ |
+--------------------------+---------------------------------------------------------+
8 rows in set, 1 warning (0.00 sec)

my.iniが「上書き禁止」のとき (2021.1.11)

(MySQL 8.0)

※コピーして編集
※古いmi.iniを何らかの名前でリネーム
※編集したほうを、my.iniにする
※mySQLを再起動

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?