綠色版 MySQL 的安裝配置

來源:互聯網
上載者:User

本人下載的MySQL是5.1版的

http://dev.mysql.com/downloads/mysql/

下載 免安裝包(mysql-noinstall-5.1.45-win32.zip)

解壓該壓縮檔到E:\mysql-5.1.39-win32

1.在系統內容變數path中添加 E:\mysql-5.1.39-win32\bin (註:這是本人的MySQL安裝路徑)

2.編輯mysql的回合組態檔案my.ini,如果沒有,可以拿my-medium.ini複製然後更名成 my.ini

分別copy一份到E:\mysql-5.1.39-win32和 C:\WINDOWS 中

編輯該檔案my.ini檔案

 [mysqld] 
# 設定mysql的安裝目錄 
basedir=E:/mysql-5.1.39-win32/ 
# 設定mysql資料庫的資料的存放目錄,必須是data,或者是\\xxx\data 
datadir=E:/mysql-5.1.39-win32/data 

*************************分割線*******************
# 設定mysql伺服器的字元集
default-character-set=utf8 
 
[client]
# 設定mysql用戶端的字元集
default-character-set=gbk

*************************分割線*******************

註:分割線中的配置為可選,可以在建立資料庫的時候自行設定。

3.安裝mysql服務
從MS-DOS視窗進入目錄E:\myserver\mysql-5.0.37-win32\bin,運行如下命令:
mysqld --install mysql5 --defaults-file=C:\WINDOWS\my.ini

其中,mysql5 只是該服務的名字,可以自己另外設定,比如改為 xiaomai  

即:mysqld --install xiaomai --defaults-file=C:\WINDOWS\my.ini

 

4.啟動mysql資料庫
還在上面的命令視窗裡面,輸入命令:net start mysql5 
這樣就啟動了mysql 服務。

5.停止服務
執行 net stop mysql5  即可 

 

6.以上5步安裝完畢之後,MySQL預設的root使用者密碼為空白的。

可以設定一下root的密碼:

win+R -> 輸入cmd->開啟windows命令控制台,隨意定位檔案目錄,如下

E:\erlangPro\mysqlTest\src>mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 5.1.39-community MySQL Community Server (GPL)

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

mysql> use mysql
Database changed
mysql> update user set password=password('admin') where user='root';
Query OK, 2 rows affected (0.03 sec)
Rows matched: 2  Changed: 2  Warnings: 0

mysql>

退出MySQL,重啟MySQL服務即可

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.