1. ホーム
  2. Database

2021MySql-8.0.26インストール詳細チュートリアル(ベビーシッターレベル)

2022-02-10 16:53:05
<パス

MySql-8.0.26インストール詳細チュートリアル子守レベル

インストールパッケージのダウンロード

インストールパッケージのダウンロードは
でダウンロードしてください。
https://dev.mysql.com/downloads/
これを選択する
入力・選択
最初の1枚を直接ダウンロードする
ダウンロードを開始するには、ここをクリック

インストール設定

インストールパッケージを解凍する
ここでdドライブに解凍してみました
開く

MySQLの設定ファイルの書き方
解凍したディレクトリにmy.iniファイルを新規に作成します。

以下のテキストを my,ini ファイルにコピーしてください。

[mysqld]
# Set port 3306
port=3306
# Set the mysql installation directory ---------- is your file path -------------
basedir=D:\mysql-8.0.26-winx64\mysql-8.0.26-winx64
# Set the directory where the mysql database data is stored --------- is your file path data folder create it yourself
#datadir=E:\mysql\mysql\data
# Maximum number of connections allowed
max_connections=200
# The number of connection failures allowed.
max_connect_errors=10
# The default character set used by the server is utf8mb4
character-set-server=utf8mb4
# Default storage engine to be used when creating new tables
default-storage-engine=INNODB
# Default authentication with "mysql_native_password" plugin
# mysql_native_password
default_authentication_plugin=mysql_native_password
[mysql]
# set mysql client default character set
default-character-set=utf8mb4
[client]
# Set the default port used by the mysql client to connect to the server
port=3306
default-character-set=utf8mb4


MySQLデータベースの初期化
コマンドプロンプトを管理者権限で開く
binディレクトリに移動します。

MySQLディレクトリのbinディレクトリで、コマンドを実行します。

mysqld --initialize --console

mysqld --install mysql

net start mysql

mysql -uroot -p


<イグ 私のランダムパスワードは:2(eE8rwv#a(?)。
mysqlサービスをインストールし、起動します。

ALTER USER 'root'@'localhost' IDENTIFIED BY '111111';


<イグ MySQLサービスの開始

net start mysql


<イグ MySQLへの接続

mysql -uroot -p


先程入力したランダムなパスワードを入力します
パスワードの変更

ALTER USER 'root'@'localhost' IDENTIFIED BY '111111';


ここでは、パスワードは111111です
quit または exit と入力すると終了します。
ログインするには、mysql -uroot -p を使用します。

環境変数の設定

順番に開く
この PC->Properties->Advanced System Settings->Environment Variables
システム変数の中に、新しい
変数名: MYSQL_HOME
変数の値です。MySQLのディレクトリ
次に、システム変数からパス変数を探します。
MYSQL_HOME%bin を追加する。
OKをクリック
次に、このコンピュータを右クリックします。
mysqlを探し、起動の種類を手動に変更します。

トリプルバー