程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql5.7.13 情況搭建教程(解緊縮版)

mysql5.7.13 情況搭建教程(解緊縮版)

編輯:MySQL綜合教程

mysql5.7.13 情況搭建教程(解緊縮版)。本站提示廣大學習愛好者:(mysql5.7.13 情況搭建教程(解緊縮版))文章只能為提供參考,不一定能成為您想要的結果。以下是mysql5.7.13 情況搭建教程(解緊縮版)正文


比來決議進修數據庫,在比擬了各個數據庫以後,選擇從mysql動手,重要緣由:
 •開源
 •成熟,通用
 •用戶量多,社區完美
 •入門簡略

1、下載裝置
 mysql的官網下載地址:http://dev.mysql.com/downloads/mysql/
 mysql官網有倆種版本可供下載,分離是客戶端版本(Recommended Download,也是官網的推舉版本)息爭緊縮版本(Archive)。我這裡選擇的是解緊縮版本,點擊download停止下載,下載終了後直接將緊縮包解壓到您想要裝置mysql的目的途徑便可。
我下載的是5.7.13版本,解壓後,獲得一個mysql-5.7.13-winx64的文件夾,它包括以下文件:
2016/07/18  14:34    <DIR>          .
2016/07/18  14:34    <DIR>          ..
2016/07/18  14:34    <DIR>          bin
2016/05/25  13:50            17,987 COPYING
2016/07/18  14:34    <DIR>          docs
2016/07/18  14:33    <DIR>          include
2016/07/18  14:34    <DIR>          lib
2016/05/25  14:08             1,141 my-default.ini
2016/05/25  13:50             2,478 README
2016/07/18  14:34    <DIR>          share
               3 個文件         21,606 字節
               7 個目次 118,994,726,912 可用字節
至此,下載裝置終了 

2、設置裝備擺設mysql 

1.設置裝備擺設my.ini
我這裡將mysql-5.7.13-winx64文件重定名為mysql(原文件名太長了),該文件下的my-default.ini是默許的設置裝備擺設文件,我們這裡須要本身從新完成設置裝備擺設:將my-default.ini復制一份偏重定名為my.ini,並將最將basedir、datadir等參數的文件目次調換成你本身mysql地點目次的途徑。

 # For advice on how to change settings please see
 # http://dev.mysql.com/doc/refman/5.7/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 = C:\mysql
datadir = C:\mysql\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 

我這裡的mysql文件放在c盤下,所以只需把下面文件中“c:/mysql”的處所填入你本身的文件途徑就ok了。 

2.設置裝備擺設情況變量
將你的mysql bin文件夾的途徑添加到PATH中,很簡略,不多說了。

3、運轉mysql
以治理員身份運轉cmd(必定要用治理員身份運轉),並進入到mysql的bin文件中
mysqld --remove
mysqld --install
mysqld --initialize //會生成一個data文件夾
net start mysql //啟動mysql辦事
順次履行這三個敕令後,翻開data文件夾,找到其下error文件類型的文件翻開,該文件是本次mysql初始化的log日記,包含初始化暗碼。假如顯示“root@localhost is created with an empty password !”,則為空。然後履行
 mysql -uroot -p
輸出用戶名和暗碼,顯示“ Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. ”,則表現銜接勝利。 

4、登錄失足
 假如登錄的時刻存在成績,顯示“ Access denied for user 'root'@'localhost'”,可以測驗考試從新設置設置root暗碼:
 1.修正/my.ini文件,在[mysqld]下添加 skip-grant-tables , 再啟動mysql

 2.然後用空暗碼方法應用root用戶登錄 MySQL;
 mysql -u root

 3.修正root用戶的暗碼;

 mysql> update mysql.user set password=PASSWORD('新暗碼') where User='root'
mysql> flush privileges;
mysql> quit

 4.從新啟動MySQL,便可以應用新暗碼登錄了。

以上就是本文的全體內容,願望對年夜家的進修有所贊助,也願望年夜家多多支撐。

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