2012年9月26日 星期三

在 Windows 安裝 Noinstall Zip Archive 版的 MySQL 5.1.x

在 Windows 安裝 Noinstall Zip Archive 版的 MySQL 5.1.x

The materials presented in this web page is provided as is and is used solely for educational purpose. Use at your own risks.
Written by: 國立中興大學資管系呂瑞麟 Eric Jui-Lin Lu

請勿轉貼
看其他教材

首先,請到 http://dev.mysql.com/downloads/ 下載 MySQL。本文的說明,以 MySQL Server 5.1.x 的 Noinstall Zip Archive 版為例,因此下載的檔案名稱類似 mysql-noinstall-5.1.x-win32.zip; 如果下載的版本是 5.11.14 版,則 x 的值就是 14。
  1. 解壓縮:我們建議將下載的檔案安裝於電腦分割區的根目錄,以 E 槽為例, 請將檔案解壓縮在 E:\,並將目錄名稱更改為 mysql
  2. 建立設定檔:請在 e:\mysql 的目錄下建立設定檔 my.ini, 檔案內容如下:
    [mysqld]
    # set basedir to your installation path
    basedir=E:/mysql
    # set datadir to the location of your data directory
    datadir=E:/mysql/data
    # set default character set
    default-character-set=utf8
    
    [client]
    default-character-set=big5
    
    在這個設定檔中,總共有四項設定:第一個是 basedir,該設定用來 告訴 MySQL Server 其安裝路徑;第二個是 datadir,該項設定用來 告訴 MySQL Server 資料庫存放資料的位置;第三以及第四個設定是為了中文(Big5) 資料能夠正常顯示的設定,其參考資料為23.11.8: What problems should I be aware of when working with the Big5 Chinese character set?;除了 23.11.8 之外, 有興趣進一步了解的讀者,請閱讀 23.11.9 或者 MySQL Server 與中文
  3. 建立啟動檔:請在 e:\mysql 的目錄下建立 startup.bat, 檔案內容如下:
    start e:\mysql\bin\mysqld --defaults-file=my.ini --console
    
  4. 建立停止檔:請在 e:\mysql 的目錄下建立 shutdown.bat, 檔案內容如下:
    e:\mysql\bin\mysqladmin -u root shutdown
    
    如果之後,你為 MySQL 的 root 帳號設定了密碼之後(剛安裝好的時候,root 是 沒有密碼的),你必須將 root 改成 root -p;這項 改變會讓你有機會輸入密碼。




Written by: 國立中興大學資管系呂瑞麟 Eric Jui-Lin Lu



沒有留言:

張貼留言