ホームページ  >  記事  >  データベース  >  win10 64ビットシステムでのmysql5.7.13のインストールと設定方法の共有

win10 64ビットシステムでのmysql5.7.13のインストールと設定方法の共有

黄舟
黄舟オリジナル
2017-03-27 14:08:311345ブラウズ

この記事では主に、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

(6) 管理者として cmd と入力し (以下すべて)、cd コマンドを使用して mysql ディレクトリの bin フォルダーに入ります。

(7) コマンドを実行して mysql サービスをインストールします:

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 を終了します。

(15) 同じコマンドの後、新しいパスワードを使用して mysql に入り、コマンド:

mysql -uroot -p123456

MySQL:

select * from information_schema.TABLES t limit 3;

を入力した後、SQL を入力して、正常にインストールされているかどうかを確認します。

(16) MySQL 公式 Web サイトにアクセスして Workbench をダウンロードしてインストールし、

MySQL のグラフィカル インターフェイスを使用できるようにします

以上がwin10 64ビットシステムでのmysql5.7.13のインストールと設定方法の共有の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。