欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

mysql 5.7.11 winx64.zip安裝配置方法圖文教程

 更新時間:2017年02月20日 10:13:49   作者:Endv  
這篇文章主要為大家分享了mysql5.7.11安裝配置方法圖文教程,具有一定的參考價值,感興趣的朋友可以參考一下

安裝和配置MySql數(shù)據(jù)庫系統(tǒng)。

 1、下載

http://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.11-winx64.zip

2.解壓縮zip包

D:\Program Files\mysql-5.7.11-winx64 

3.配置環(huán)境變量

3.1 添加path路徑,

D:\Program Files\mysql-5.7.11-winx64\bin

3.2.修改mysql-default.ini配置文件,

# These are commonly set, remove the # and set as required.
# basedir = .....
# datadir = .....
# port = .....
# server_id = .....

改為

# These are commonly set, remove the # and set as required.
 basedir = D:\Program Files\mysql-5.7.11-winx64
 datadir = D:\Program Files\mysql-5.7.11-winx64\Data
 port = 3306
# server_id = .....

4.以管理員身份進入命令提示符 cmd 

進入mysql的bin目錄下,

Microsoft Windows [版本 6.3.9600]
(c) 2013 Microsoft Corporation。保留所有權利。

C:\Users\Administrator>cd D:
D:\

C:\Users\Administrator>cd D:\Program Files\mysql-5.7.11-winx64\bin

C:\Users\Administrator>d:

D:\Program Files\mysql-5.7.11-winx64\bin> 

執(zhí)行mysqld.exe --initialize 命令,

D:\Program Files\mysql-5.7.11-winx64\bin>mysqld.exe --initialize
D:\Program Files\mysql-5.7.11-winx64\bin>

創(chuàng)建了data目錄

5.執(zhí)行 mysqld -install命令

D:\Program Files\mysql-5.7.11-winx64\bin>mysqld -install
Service successfully installed. //成功安裝服務

 6.執(zhí)行mysqld.exe -nt --skip-grant-tables

注意:窗口無反應

Microsoft Windows [版本 6.3.9600]
(c) 2013 Microsoft Corporation。保留所有權利。

C:\Users\Administrator>cd D:
D:\

C:\Users\Administrator>cd D:\Program Files\mysql-5.7.11-winx64\bin

C:\Users\Administrator>d:

D:\Program Files\mysql-5.7.11-winx64\bin>mysqld.exe --initialize

D:\Program Files\mysql-5.7.11-winx64\bin>mysqld -install
Service successfully installed. //服務安裝成功

D:\Program Files\mysql-5.7.11-winx64\bin>mysqld.exe -nt --skip-grant-tables 

7.重新打開dos窗口,執(zhí)行mysql -u root

進入mysql命令行,執(zhí)行命令use mysql; update user set authtication_string=Password('123456') where user="root"; set password=Password('123456');

按 Ctrl+C 復制代碼

Microsoft Windows [版本 6.3.9600]
(c) 2013 Microsoft Corporation。保留所有權利。

C:\Users\Administrator>mysqld.exe -nt --skip-grant-tables

C:\Users\Administrator>mysql -u root
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.11 MySQL Community Server (GPL)

Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> use mysql
Database changed
mysql> update user set authtication_string=Password('123456') where user="root"
 -> set password=Password('123456')
 ->

按 Ctrl+C 復制代碼

8.在任務管理器中終止mysqld進程,開啟mysql服務。

安裝完成。

精彩專題分享:mysql不同版本安裝教程 mysql5.7各版本安裝教程 mysql5.6各版本安裝教程

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

相關文章

  • MYSQL數(shù)據(jù)庫中cmd命令操作詳解

    MYSQL數(shù)據(jù)庫中cmd命令操作詳解

    今天我們就來看一下數(shù)據(jù)庫的各種命令,以下命令全部是從CMD命令窗口下的命令行輸入指令,首先如果如果輸入mysql,系統(tǒng)提示“mysql不是內部命 令或外部命令
    2016-04-04
  • MySQL中如何正確存儲IP地址

    MySQL中如何正確存儲IP地址

    在MySQL中,當存儲IPv4地址時,應該使用32位的無符號整數(shù)(UNSIGNED INT)來存儲IP地址,而不是使用字符串,下面就來詳細的介紹一下具體原因,感興趣的可以了解一下
    2023-05-05
  • Windows Server 2003 下配置 MySQL 集群(Cluster)教程

    Windows Server 2003 下配置 MySQL 集群(Cluster)教程

    這篇文章主要介紹了Windows Server 2003 下配置 MySQL 集群(Cluster)教程,本文先是講解了原理知識,然后給出詳細配置步驟和操作方法,需要的朋友可以參考下
    2015-06-06
  • MySQL存儲過程中的基本函數(shù)和觸發(fā)器的相關學習教程

    MySQL存儲過程中的基本函數(shù)和觸發(fā)器的相關學習教程

    這篇文章主要介紹了MySQL存儲過程中的基本函數(shù)和觸發(fā)器的相關學習教程,包括觸發(fā)器的創(chuàng)建和刪除等基本操作,需要的朋友可以參考下
    2015-11-11
  • mysql下mysql-udf-http效率測試小記

    mysql下mysql-udf-http效率測試小記

    看到張宴的博客上關于"http/rest客戶端的文章",怎樣安裝啥的直接都跳過,下面直接進入測試階段。
    2011-08-08
  • 通過實例解析MySql CURRENT_TIMESTAMP函數(shù)

    通過實例解析MySql CURRENT_TIMESTAMP函數(shù)

    這篇文章主要介紹了通過實例解析MySql CURRENT_TIMESTAMP函數(shù),文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
    2020-09-09
  • Mysql 5.7從節(jié)點配置多線程主從復制的方法詳解

    Mysql 5.7從節(jié)點配置多線程主從復制的方法詳解

    這篇文章主要介紹了Mysql 5.7從節(jié)點配置多線程主從復制的相關資料,文中介紹的非常詳細,對大家具有一定的參考價值,需要的朋友們下面來一起看看吧。
    2017-03-03
  • CentOS 7中MySQL連接數(shù)被限制為214個的解決方法

    CentOS 7中MySQL連接數(shù)被限制為214個的解決方法

    這篇文章主要給大家介紹了關于CentOS 7中MySQL連接數(shù)被限制為214個的解決方法,文中通過示例代碼介紹的非常詳細,對大家具有一定的參考學習價值,需要的朋友們下面跟著小編來一起看看吧。
    2017-06-06
  • 深入淺析MySQL COLUMNS分區(qū)

    深入淺析MySQL COLUMNS分區(qū)

    COLUMN分區(qū)是5.5開始引入的分區(qū)功能,只有RANGE COLUMN和LIST COLUMN這兩種分區(qū);支持整形、日期、字符串;RANGE和LIST的分區(qū)方式非常的相似。下面就兩者的區(qū)別給大家介紹下,對mysql columns知識感興趣的朋友一起看看吧
    2016-11-11
  • MySQL Flink Watermark實現(xiàn)事件時間處理的關鍵技術

    MySQL Flink Watermark實現(xiàn)事件時間處理的關鍵技術

    Flink Watermark是Flink流處理框架中實現(xiàn)事件時間處理的關鍵技術之一。它是通過一種機制來解決數(shù)據(jù)亂序和延遲的問題,使得Flink可以在處理遲到的數(shù)據(jù)時保證結果的準確性。Flink Watermark可以在數(shù)據(jù)流中插入一個時間戳,將數(shù)據(jù)流轉化為具有時間維度的數(shù)據(jù)集合
    2023-05-05

最新評論