打開我的電腦,進入D:\web,在其下新建一個文件夾,名為 mysql 。 到其官方站點下載 http://dev.mysql.com/get/Downloads/MySQL-5.0/mysql-5.0.37-win32.zip/from/pickr 并執(zhí)行。 按Next,然后選擇Custom安裝方式。 點擊Change,改變安裝路徑;為:"D:\web\mysql"。 等安裝進度條load完時,會出現(xiàn)一個Sign Up向?qū)В@里不用理,選擇最下面的那個Skip Sign-Up,然后Next,上面有個 "Configure the MySQL Server now" 是打勾的,不要去掉,直接點Finish。 現(xiàn)在開始安裝最后的配置,點Next,選擇Detailed Configuration,然后選擇第二個Server Machine。 再Next,選擇Non-Transactional Database Only。 再Next,選擇Manual Setting,連接數(shù)選擇200到300,在此因為是本機測試,所以此項并不重要。 再Next,是設(shè)置其的端口,默認是3306,不要動它。 再Next,選擇Manual Selected Default Character Set / Collation,在下面的 Character Set選擇gbk。 再Next,在Include Bin Directory in Windows PATH前打勾。 再Next,在Modify Security Settings前的勾取消,因為是本地環(huán)境,非服務(wù)器和虛擬主機。 最后一個Next再加Execute,可以看到上面的步驟全部完成。 MySQL的帳號是:root,密碼為空。 檢測MySQL,鍵盤的Win + R,彈出運行對話框,輸入cmd后回車,進入命令提示符,然后輸入:"mysql -uroot -p",回車后要求輸入密碼,因為密碼為空,所以直接再按回車即可?,F(xiàn)在可以看到如下成功的提示: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 to server version:5.0.37-community-nt
Type 'help;' or '\h' for help. Type '\c' to clear the buffer. 表示全部安裝成功。 操作符變成了"mysql>",鍵入exit退出即可。
到其官方站點http://sourceforge.net/projects/phpmyadmin下載 phpMyAdmin-2.10.0.2-all-languages.zip 并解壓,并更改目錄名為phpmyadmin,然后移動到"C:\inetpub\wwwroot下"。 編輯:libraries下的config.default.php。 查找: $cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (config, http or cookie based)? $cfg['Servers'][$i]['user'] = 'root'; // MySQL user $cfg['Servers'][$i]['password'] = ''; // MySQL password (only needed // with 'config' auth_type) $cfg['Servers'][$i]['nopassword'] = FALSE; // Whether to try to connect without password $cfg['Servers'][$i]['only_db'] = ''; // If set to a db-name, only // this db is displayed in left frame // It may also be an array of db-names, where sorting order is relevant. 這里由于是本地測試環(huán)境,所以所按默認值,不需要更改。 查找: $cfg['DefaultLang'] = 'en-iso-8859-1'; 替換: $cfg['DefaultLang'] = 'gb2312'; 查找: $cfg['DefaultCharset'] = 'iso-8859-1'; 替換: $cfg['DefaultCharset'] = 'gb2312'; 設(shè)置完成?,F(xiàn)在打開IE,鍵入:"http://localhost/phpmyadmin",即可進行相關(guān)操作。