標籤:efault server utf8 windows 改密碼 body 運行 mysqld console
1. 下載並解壓 noinstall 壓縮包,假設解壓到 D:\APP\mariadb-10.0.17-winx64 目錄
(MariaDB 10.0.17 Stable):llarian.net
2. 建立設定檔 my.ini (D:\APP\mariadb-10.0.17-winx64\my.ini)
這個檔案可直接從 D:\MariaDB 目錄下的 my-xxx.ini 隨便複製一個過來改動,只需要增加幾個配置項即可,分別是:
[mysql]
default-character-set=utf8
[mysqld]
#程式安裝目錄
basedir=D:\\APP\\mariadb-10.0.17-winx64
#DB儲存路徑
datadir=E:\\database\\MYSQL
character-set-server=utf8
3. 第一次啟動 MariaDB
在 D:\APP\mariadb-10.0.17-winx64\bin 目錄下運行 mysqld --console 以控制台模式啟動資料庫伺服器,此步驟將會在E:\database\MYSQL目錄建立資料檔案和記錄檔(另外需要將D:\APP\mariadb-10.0.17-winx64\data下的mysql(系統資料表)目錄拷貝至該目錄)
4. 將 MariaDB 安裝為 Windows 服務
同樣在 D:\MariaDB\bin 目錄下運行 mysqld --install 則會建立名為 MySQL 的 Windows 服務,如果你已經裝有 MySQL 則會提示服務名已存在,那麼可以用 mysqld --install MariaDB 來建立名為 MariaDB 的服務,也可以使用其他服務名。
建立完的服務並沒有啟動,並且啟動類型設定為自動啟動。
5. 啟動後的 MariaDB 預設有一個 root 使用者,訪問密碼為空白。
修改密碼方法:mysqladmin -u root password "新密碼"
6.相關故障處理
MySQL 5.5以後版本my.ini內[mysqld]項中不能再寫default-character-set=utf8,而是 character-set-server=utf8 否則在啟動MySQL服務時會有1067錯誤。
錯誤記錄檔路徑:E:\database\MYSQL\%PC_NAME%.err
150418 13:09:57 [ERROR] Can‘t open the mysql.plugin table. Please run mysql_upgrade to create it.
150418 13:09:57 [ERROR] Can‘t open and lock privilege tables: Table ‘mysql.servers‘ doesn‘t exist
150418 13:09:58 [ERROR] Fatal error: Can‘t open and lock privilege tables: Table ‘mysql.user‘ doesn‘t exist
將D:\APP\mariadb-10.0.17-winx64\data下的mysql(系統資料表)目錄拷貝至E:\database\MYSQL
參考:
http://www.oschina.net/question/12_8500
http://www.2cto.com/database/201210/163125.html
http://aoyi.iteye.com/blog/1121940
好文要頂
MariaDB 在 Windows 下 noinstall 版本的安裝和配置