亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

mysql 5.7.21 winx64綠色版安裝配置方法圖文教程

發布時間:2020-09-16 21:22:45 來源:腳本之家 閱讀:189 作者:zbq2018 欄目:MySQL數據庫

本文記錄了mysql 5.7.21安裝配置方法,具體內容如下

1.下載

下載地址

mysql 5.7.21 winx64綠色版安裝配置方法圖文教程

解壓到自己喜歡的一個位置即可(目錄中不要包含中文)

如:D:\Program Files\

2.系統環境變量配置

(1)新增系統變量 

         變量名:MYSQL_HOME
         變量值:Mysql解壓目錄,如D:\Program Files\mysql-5.7.21-winx64

(2)追加PATH

         ;%MYSQL_HOME%\bin;

3.配置my.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.7.21-winx64"
 datadir = "D:\\Program Files\mysql-5.7.21-winx64\data"
 port = 3306
 character_set_server = utf8
 
# 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 5.7.21 winx64綠色版安裝配置方法圖文教程

4.管理員方式啟動命令提示窗符

進入mysql解壓目錄到bin目錄下

如:D:\Program Files\mysql-5.7.21-winx64\bin

mysql 5.7.21 winx64綠色版安裝配置方法圖文教程

分別執行:

(1)初始化:mysqld -initialize-insecure

mysql 5.7.21 winx64綠色版安裝配置方法圖文教程

如果報錯failed to set datadir to 則 執行一下  mysqld --initialize --user=mysql --console,再執行(1);

正確之后會在Mysql解壓根目錄生成data文件夾以及相關文件

(2)mysqld -install

mysql 5.7.21 winx64綠色版安裝配置方法圖文教程

*如提示Install/Remove of the Service Denied,說明不是已管理員的方式進入的命令提示符

(3)啟動服務:net start mysql

mysql 5.7.21 winx64綠色版安裝配置方法圖文教程

(4)登陸,改密碼 mysql -u root -p

【成功登陸的直接到(5)】

我的出現了

mysql 5.7.21 winx64綠色版安裝配置方法圖文教程

在my.ini中增加

mysql 5.7.21 winx64綠色版安裝配置方法圖文教程

重啟服務,成功登陸

mysql 5.7.21 winx64綠色版安裝配置方法圖文教程

(5)執行改密碼語句 (正常登陸的使用set password= password(‘新密碼'); 

update user set authentication_string = password("新密碼") where user='root';

mysql 5.7.21 winx64綠色版安裝配置方法圖文教程

(6)exit;  net stop mysql

mysql 5.7.21 winx64綠色版安裝配置方法圖文教程

(7)登陸成功的忽略這一步

mysql 5.7.21 winx64綠色版安裝配置方法圖文教程

到my.ini中注釋掉

重啟進入之后set password= password(‘新密碼');

mysql 5.7.21 winx64綠色版安裝配置方法圖文教程

到此就可以正常使用了。

(8)測試 show databases;

mysql 5.7.21 winx64綠色版安裝配置方法圖文教程

5.寫兩個bat文件用于啟動和關閉mysql服務

(1)啟動mysql服務

@echo off
echo 確定要啟動MySQL服務嗎?
pause
net start mysql
echo 啟動MySQL服務完成,請確認有沒有錯誤發生。
Pause

保存為   mysql服務啟動.bat   文件,運行時要以管理員方式運行

mysql 5.7.21 winx64綠色版安裝配置方法圖文教程

(2)關閉mysql服務

@echo off
echo 確定要關閉MySQL服務嗎?
pause
net stop mysql
echo 關閉MySQL服務完成,請確認有沒有錯誤發生。
Pause

保存為   mysql服務關閉.bat   文件,運行時要以管理員方式運行

mysql 5.7.21 winx64綠色版安裝配置方法圖文教程

MySql到此安裝結束。

精彩專題分享:

mysql不同版本安裝教程

mysql5.7各版本安裝教程

mysql5.6各版本安裝教程

mysql8.0各版本安裝教程

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南木林县| 关岭| 马尔康县| 舟山市| 藁城市| 桐庐县| 绥德县| 罗甸县| 平利县| 自治县| 宝清县| 丹凤县| 漳平市| 鄂托克前旗| 哈尔滨市| 平乡县| 金堂县| 新沂市| 炉霍县| 临漳县| 上蔡县| 八宿县| 临西县| 德清县| 宁国市| 武冈市| 聂拉木县| 多伦县| 宣化县| 宁海县| 兴隆县| 灵武市| 萨嘎县| 凤山县| 小金县| 昌都县| 遵义县| 南乐县| 郯城县| 吉安县| 义乌市|