D:/dev" />
最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識(shí)百科 - 正文

windows732bit下MySQL5.5.22安裝筆記_MySQL

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-09 18:15:42
文檔

windows732bit下MySQL5.5.22安裝筆記_MySQL

windows732bit下MySQL5.5.22安裝筆記_MySQL:bitsCN.com 1. 準(zhǔn)備文件 mysql解壓版 下載地址ftp://ftp.iij.ad.jp/pub/db/mysql/Downloads/MySQL-5.5/mysql-5.5.22-win32.zip 2. 解壓到本地目錄 D:/devTools/mysql 3. 把添加系統(tǒng)環(huán)境變量 MYSQL_HOME ==> D:/dev
推薦度:
導(dǎo)讀windows732bit下MySQL5.5.22安裝筆記_MySQL:bitsCN.com 1. 準(zhǔn)備文件 mysql解壓版 下載地址ftp://ftp.iij.ad.jp/pub/db/mysql/Downloads/MySQL-5.5/mysql-5.5.22-win32.zip 2. 解壓到本地目錄 D:/devTools/mysql 3. 把添加系統(tǒng)環(huán)境變量 MYSQL_HOME ==> D:/dev

bitsCN.com
1. 準(zhǔn)備文件 mysql解壓版 下載地址ftp://ftp.iij.ad.jp/pub/db/mysql/Downloads/MySQL-5.5/mysql-5.5.22-win32.zip 2. 解壓到本地目錄 D:/devTools/mysql 3. 把添加系統(tǒng)環(huán)境變量 MYSQL_HOME ==> D:/devTools/mysql (新建) Path ==> ;%MYSQL_HOME%/bin (追加) 4. 修改MySQL5.5的配置文件,把my-small.ini改名為my.ini進(jìn)行編輯 a)在[mysqld]下追加 ------- basedir = "d://devTools//mysql" datadir = "d://devTools//mysql//data" character-set-server = utf8 ------- b) 在[client]下追加 ------- default-character-set = utf8 ------- 5. 保存my.ini的配置, 然后打開命令行(開始菜單==>運(yùn)行==>cmd ) 輸入: mysqld --console 然后回車將看到如下類似內(nèi)容: ------- C:/Windows/system32>mysqld --console 120410 14:25:22 [Note] Plugin 'FEDERATED' is disabled. 120410 14:25:22 InnoDB: The InnoDB memory heap is disabled 120410 14:25:22 InnoDB: Mutexes and rw_locks use Windows interlocked functions 120410 14:25:22 InnoDB: Compressed tables use zlib 1.2.3 120410 14:25:22 InnoDB: Initializing buffer pool, size = 128.0M 120410 14:25:22 InnoDB: Completed initialization of buffer pool 120410 14:25:22 InnoDB: highest supported file format is Barracuda. 120410 14:25:22 InnoDB: Waiting for the background threads to start 120410 14:25:23 InnoDB: 1.1.8 started; log sequence number 1595675 120410 14:25:23 [Note] Event Scheduler: Loaded 0 events 120410 14:25:23 [Note] mysqld: ready for connections. Version: '5.5.22' socket: '' port: 3306 MySQL Community Server (GPL) ------- ==> 證明mysql服務(wù)已啟動(dòng) 6. 設(shè)置登陸mysql root帳號(hào)的的密碼 打開新的命令行,輸入 mysql -uroot 回車 ------- Welcome to the MySQL monitor. Commands end with ; or /g. Your MySQL connection id is 1 Server version: 5.5.22 MySQL Community Server (GPL) Copyright (c) 2000, 2011, 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. ------- ==〉看到上面類似內(nèi)容說明登陸成功,此時(shí)的root帳號(hào)是沒有密碼的 執(zhí)行命令修改密碼: use mysql; update user set password=PASSWORD("這里填寫你要設(shè)置的密碼") where user='root'; 執(zhí)行完成后退出mysql操作,然后關(guān)閉mysql服務(wù)(ctrl+C 關(guān)閉另一個(gè)命令窗口),然后重啟mysql服務(wù) 作者 lotnhiro bitsCN.com

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

windows732bit下MySQL5.5.22安裝筆記_MySQL

windows732bit下MySQL5.5.22安裝筆記_MySQL:bitsCN.com 1. 準(zhǔn)備文件 mysql解壓版 下載地址ftp://ftp.iij.ad.jp/pub/db/mysql/Downloads/MySQL-5.5/mysql-5.5.22-win32.zip 2. 解壓到本地目錄 D:/devTools/mysql 3. 把添加系統(tǒng)環(huán)境變量 MYSQL_HOME ==> D:/dev
推薦度:
標(biāo)簽: 安裝 Windows win
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top