程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 64位Win10體系裝置Mysql5.7.11的辦法(案例詳解)

64位Win10體系裝置Mysql5.7.11的辦法(案例詳解)

編輯:MySQL綜合教程

64位Win10體系裝置Mysql5.7.11的辦法(案例詳解)。本站提示廣大學習愛好者:(64位Win10體系裝置Mysql5.7.11的辦法(案例詳解))文章只能為提供參考,不一定能成為您想要的結果。以下是64位Win10體系裝置Mysql5.7.11的辦法(案例詳解)正文


比來在裝了64位Win10體系的mac book筆記本上用mysql-installer-community-5.7.11.0裝置Mysql5.7.11,在設置裝備擺設mysql server時總是卡住,報錯。(在其余PC雷同windows體系,主動裝置沒成績),決議手動裝置,仍然成績多多,最初的勝利裝置案例以下:

一.預備裝置軟件

1.mysql.com下載mysql-5.7.11-win32.zip

2.mysql-workbench-community-6.3.6-win32.msi

3.vcredist_x64 (第2步須要裝置MicroSoft Visual C++ 2013 Redistributable Package)

二.裝置Mysql

1.解壓mysql-5.7.11-win32.zip 到 c:\mysql-5.7.11-win32

2.設置情況變量 MYSQL_HOME=c:\mysql-5.7.11-win32, path=%MYSQL_HOME%\bin

3.症結一步是my.ini的設置,我的是

[WinMySQLAdmin] 
Server="C:/mysql-5.7.11-win32/bin/mysqld.exe" 
[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="C:\mysql-5.7.11-win32\" 
datadir="C:\mysql-5.7.11-win32\data\" 
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

4. 治理員身份進入cmd(以下都是)

5.mysqld --install MySQL --defaults-file=C:\mysql-5.7.11-win32\my.ini 裝置mysql辦事

6.mysqld --initialize 這是生成data目次及初始化數據

7.在data目次mysql_error_log文件,找[Note] A temporary password is generated for root@localhost: 5ZC=7Qe&eneg,“:”前面白色標識的三位就是初始暗碼

8.啟動辦事net start mysql 或在辦事中啟動

9.mysqld

10.新開cmd, mysql -uroot -p

輸出初始暗碼銜接進入mysql數據庫後,修正暗碼以下:

set password=password('123456');
flush privileges;

加入再次登錄,應用新暗碼就好了:

mysql -uroot -p123456

3、為便利操作裝置workbench

1.先裝置Visual C++2013 Redistributable Package

2.裝置workbench 32位

這兩步沒甚麼艱苦。

以上所述是小編給年夜家引見的64位Win10體系裝置Mysql5.7.11的辦法,願望對年夜家有所贊助,假如年夜家有任何疑問請給我留言,小編會實時答復年夜家的。在此也異常感激年夜家對網站的支撐!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved