如果在win2000下安装,就像安装一个普通软件一样,就是“下一步”啦。

解决方案 »

  1.   

    Install MySQL on Windows 
    1. Download MySQL binary distribution(e.g. mysql-3.23.37-win.zip) from http://www.mysql.com;
    2. Unzip it to a temporary directory;
    3. Run the Setup.exe program and dictate the installation path(e.g. e:\mysql);
    4. Copy e:\mysql\my-example.cnf to c:\my.cnf;
    5. Edit c:\my.cnf to suit the setup:
    - Uncomment the line “#basedir = c:\mysql” by deleting the leading “#”;
    - Replace all “c:”s with “e:”.Start MySQL on Window95/98/ME
    Start the MySQL Server:
    e:\mysql\bin\mysqld
    e:\mysql\bin\mysqld-optKill the MySQL Server:
    e:\mysql\bin\mysqladmin –u root shutdownStart MySQL on WindowsNT/2000/XP
    Start the MySQL Server as standalone:
    e:\mysql\bin\mysqld-nt –-standaloneKill the standalone MySQL Server:
    e:\mysql\bin\mysqladmin –u root shutdownInstall MySQL Server as a service:
    e:\mysql\bin\mysqld-nt –-installRemove MySQL Server from service:
    e:\mysql\bin\mysqld-nt –-removeStart the MySQL service:
    net start mysqlStop the MySQL service:
    net stop mysql
      

  2.   

    这次安装时出了点问题,正好看到这个文件,原来是少作了一步“#basedir = c:\mysql”,多谢了。