# 推奨: 「mysql データベースの初期化に失敗した場合の解決策: まず my.ini ファイルを見つけて開き、次に my.ini ファイル内の datadir をコメント アウトし、最後にプロンプトに従って UTF8 を UTF8MB4 に置き換えます。
mysql ビデオ チュートリアル」
MySQL8 のインストール、インストール中にデータベースの初期化に失敗しました
プロセスについて# に関するチュートリアルをいくつか見つけました。インターネットを参考にしてください。コメントで見た解決策があります。見つけてください。元のブログはもう利用できません。解決策は次のとおりです。datadir 行をコメントアウトします。
発生した主な問題は、my.ini ファイルの書き込み時に形式と内容にエラーが発生する可能性があることです。形式に注意して、「\」、「\」、「/」を試してください。 **「C:\mysql-8.0.17-winx64」** も二重引用符を追加するかどうかを試してください。以下は私の my.ini ファイルです。一般的な内容は参照ブログと同じです。マークされた場所は、エラーを報告した後に行った変更の一部です。
データベースの初期化中にコマンド ラインで報告されるエラーは次のとおりです:
C:\mysql-8.0.17-winx64\bin>mysqld --initialize --console 2019-08-24T13:33:22.622321Z 0 [System] [MY-013169] [Server] C:\mysql-8.0.17-winx64\bin\mysqld.exe (mysqld 8.0.17) initializing of server in progress as process 8404 2019-08-24T13:33:22.624188Z 0 [Warning] [MY-013243] [Server] --character-set-server: The character set UTF8MB3 is deprecated and will be removed in a future release. Please consider using UTF8MB4 instead. 2019-08-24T13:33:22.625619Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting. 2019-08-24T13:33:22.625635Z 0 [ERROR] [MY-013236] [Server] The designated data directory C:\mysql-8.0.17-winx64\data\ is unusable. You can remove all files that the server added to it. 2019-08-24T13:33:22.643590Z 0 [ERROR] [MY-010119] [Server] Aborting 2019-08-24T13:33:22.643744Z 0 [System] [MY-010910] [Server] C:\mysql-8.0.17-winx64\bin\mysqld.exe: Shutdown complete (mysqld 8.0.17) MySQL Community Server - GPL.
問題は次のとおりです。データ フォルダーに問題があります。その時点では、C:\mysql-8.0.17-winx64 ディレクトリに新しく生成されたデータ フォルダーはありませんでした。
警告の解決策は、プロンプトに従って
UTF8 を UTF8MB4 に置き換えることです。上の図では変更点がマークされています。
2019-08-24T13:33:22.624188Z 0 [Warning] [MY-013243] [Server] --character-set-server: The character set UTF8 is deprecated and will be removed in a future release. Please consider using UTF8MB4 instead.図に示すように、最終的に正常に初期化されました。
C:\mysql-8.0.17-winx64\bin>mysqld --initialize --console 2019-08-24T13:37:11.590803Z 0 [System] [MY-013169] [Server] C:\mysql-8.0.17-winx64\bin\mysqld.exe (mysqld 8.0.17) initializing of server in progress as process 2484 2019-08-24T13:37:15.862830Z 5 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: 37swG%65Qjf1 2019-08-24T13:37:17.783854Z 0 [System] [MY-013170] [Server] C:\mysql-8.0.17-winx64\bin\mysqld.exe (mysqld 8.0.17) initializing of server has completed C:\mysql-8.0.17-winx64\bin>mysqld --install The service already exists! The current server installed: C:\mysql-8.0.17-winx64\bin\mysqld.exe MySQL C:\mysql-8.0.17-winx64\bin>net start mysql MySQL 服务正在启动 . MySQL 服务已经启动成功。 C:\mysql-8.0.17-winx64\bin>mysql -u root -p Enter password: ************ Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8 Server version: 8.0.17 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. mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '111111'; Query OK, 0 rows affected (0.01 sec) mysql>
以上がmysqlデータベースの初期化が失敗した場合の対処方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。