MySql 5.6.36 64位綠色版安裝

李四老師發表於2017-05-27

網上MySQL安裝的文章有很多哈,但是今天在自己的筆記本上安裝遇到了問題,僅此做下記錄。

1、下載MySQL的zip壓縮包,在官網https://dev.mysql.com/downloads/mysql/ 根據需要下版本 Windows有32位和64位的。

2、下載下來之後解壓到你指的資料夾。這是我解壓後的路徑。


3、配置環境變數,和配置Java的環境變數一樣。

4、更改資料庫配置檔案。將根目錄下的my-default.ini複製一份重新命名為my.ini

更改裡面的配置,注意裡面的檔案路徑 一定要加英文的雙引號。

# 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]

# 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 = 128M

# 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 Files\mysql-5.6.36-winx64"
datadir ="D:\Program Files\mysql-5.6.36-winx64\data"
# port = .....
# server_id = .....


# 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 
#服務端的編碼方式
character-set-server=utf8
[client]
#客戶端編碼方式,最好和服務端儲存一致
loose-default-character-set = utf8

[WinMySQLadmin]  
Server = "D:\Program Files\mysql-5.6.36-winx64\bin\mysqld.exe"

5、安裝mysql服務 ,dos視窗切換到MySQL的bin 目錄下 執行命令

mysqld -install

我的出了問題,網上找了下說是缺少Microsoft Visual C++ 2010 執行庫。


好吧,去官網下 這個 安裝好重啟了 服務安裝成功。


執行services.msc檢視註冊的服務,然後啟動MySQL服務。


到此我們MySQL伺服器已經安裝完畢了。

6、登入MySQL伺服器,重新設定密碼。

由於預設的使用者名稱為root 密碼為空 使用命令mysql –u root –p按回車提示輸入密碼直接回車就可以登入啦。到此mysql-5.6.36-winx64綠色版就安裝成功。


我們改下預設密碼吧,還是在bin命令目錄下,使用mysqladmin.exe命令改密碼

mysqladmin –u root –p password 123456//123456是新密碼,按回車提示輸入密碼,此時為原來的密碼,原密碼為空直接回車就修改成功了。


使用新密碼登入


黑視窗下操作著實不方便,實際工作中mysql的視覺化工具用的最多是navicat for mysql 這個工具。






相關文章