この記事では主に、win10 64 ビットでの mysql 5.7.13 のインストールと設定方法のグラフィック チュートリアルを共有します。興味のある方は参照してください。この記事の例では、インストールと設定のグラフィック チュートリアルを共有します。 mysql 5.7.13 winx64の設定方法、具体的な内容は以下の通りです
(1) MySQLプログラムをダウンロードします。MySQL公式Webサイトからダウンロードするか、ここをクリックしてダウンロードできます
(2) 解凍します。 mysql-5.7.13-winx64.zip ファイルをインストールするディレクトリにコピーします。私の例はD:programmysql-5.7.13-winx64 です。ディレクトリ構造は次のとおりです。
フォルダー: bin docs include lib share
ファイル: COPYING README my-default.ini
(3) ファイル my-default.ini を同じディレクトリにコピーし、名前を my.ini に変更します。
(4) Eドライブに新しいmysqlDataフォルダーを作成します。
(5) my.ini の内容をクリアし、再度コピーします。
[client] no-beep # pipe # socket=mysql port=3306 [mysql] default-character-set=utf8 # For advice on how to change settings please see # http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html # *** DO NOT EDIT THIS FILE. It's a template which will be copied to the # *** default location during install, and will be replaced if you # *** upgrade to a newer version of MySQL. [mysqld] explicit_defaults_for_timestamp = TRUE # Remove leading # and set to the amount of RAM for the most important data # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%. innodb_buffer_pool_size = 2G # Remove leading # to turn on a very important data integrity option: logging # changes to the binary log between backups. # log_bin # These are commonly set, remove the # and set as required. basedir="D:\program\mysql-5.7.13-winx64\" datadir="E:\mysqlData\" port=3306 server_id=1 general-log=0 general_log_file="mysql_general.log" slow-query-log=1 slow_query_log_file="mysql_slow_query.log" long_query_time=10 log-error="mysql_error_log.err" default-storage-engine=INNODB max_connections=1024 query_cache_size=128M key_buffer_size=128M innodb_flush_log_at_trx_commit=1 innodb_thread_concurrency=128 innodb_autoextend_increment=128M tmp_table_size=128M # Remove leading # to set options mainly useful for reporting servers. # The server defaults are faster for transactions and fast SELECTs. # Adjust sizes as needed, experiment to find the optimal values. # join_buffer_size = 128M # sort_buffer_size = 2M # read_rnd_buffer_size = 2M #sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION" character-set-server=utf8 innodb_flush_method=normal
mysqld --install MySQL --defaults-file=D:\program\mysql-5.7.13-winx64\my.ini
(8) データ ディレクトリと初期化データを生成するには、次のコマンドを実行します:
mysqld --initialize
このコマンドを実行すると、上で作成した E:mysqlData フォルダーに MySQL に必要なファイルとフォルダーが生成されます。
(9) E:mysqlData フォルダー内のファイル構造は次のとおりです:
フォルダー: mysql、performance_schema、sysファイル: auto.cnf DESKTOP-SDK08IO.pid ib_buffer_pool ib_logfile0 ib_logfile1 ibdata1 ibtmp1 mysql_error_log.err ry.log
( 10) E:mysqlData フォルダーの mysql_error_log ファイルで次の行を見つけます:
コードは次のとおりです:
2016-08-02T23:09:18.827488Z 1 [Note] A temporary password is generated for root@localhost: #98um:=-RfbI
一時パスワードは
root@localhost:の後に #98um:=-RfbI が続きます。 (11) 同じコマンドラインプログラムでサービス net start mysql を開始します。
(12) 新しいコマンドポストプログラムを開き、D:programmysql-5.7.13-winx64bin フォルダーに入り、次のコマンドを実行します:
mysql -uroot -p
(13)
mysql データベースに接続するための初期パスワードを入力した後、次のようにパスワードを変更します: set password=password('123456');
flush privileges;
(14) exit と入力して MySQL を終了します。
mysql -uroot -p123456
select * from information_schema.TABLES t limit 3;
を入力した後、SQL を入力して、正常にインストールされているかどうかを確認します。
(16) MySQL 公式 Web サイトにアクセスして Workbench をダウンロードしてインストールし、
MySQL のグラフィカル インターフェイスを使用できるようにします以上がwin10 64ビットシステムでのmysql5.7.13のインストールと設定方法の共有の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。