1. 下载下列东东from
http://dev.mysql.com/downloads
/
1) mysql XXX windows noninstall zip
2) Mysql GUI Tools windows noninstall zip
3) jdbc driver: MySQL Connector/J XXX
2. extract mysql XXX windows noninstall zip
3. create
my.ini并放到windows系统安装目录。 file
你可以通过在DOS窗口里打命令“echo %WINDIR%”来查看系统安装目录
my.ini文件的内容为:
[mysqld
]
Port=3306
# set basedir to your installation path
basedir=E:/mysql
# set datadir to the location of your data directory
datadir=E:/mydata/data
一定不能漏了“
port=3306
”这一行,否则后面使用
MySQLAdministrator
就会报错!!这可能是MySQLAdministrator5.0的bug
4. 尝试第一次start mysql (
通过
dos
命令,后面用到
mysql gui tool
来启动
mysql
,方便很多)
在dos窗口下进入mysql_install_root/bin,输入命令
mysqld [--console]
如果没有选项console,也可以,只是没有启动的基本信息显示而已。建议使用该选项
Shutdown mysql的命令是:
mysqladmin -u root shutdown
注意:如果root account有密码的话,那么上述命令要加上
“-p”参数with密码
5. (
可选,但强烈建议!因为这样可以在你启动
windows
时自动启动
mysql
,
而且只有设置成
service
,才能够使用
mysql GUI tool
!!)把
mysql
设置为
windows service
服务
1) 在把mysql设置成window service之前,必须保证mysql server是关闭的,如果没有关闭,就使用命令:
mysqladmin -u root shutdown
2) 输入下列命令来把mysql设置成window service:
mysqld-nt --install MySQL --defaults-file="C:/windows/my.ini"
这时你的services里就会看到一个name为mysql的service
一定不能漏了选项“
—defaults-file
”,否则后面使用
MySQLAdministrator
就会报错!!这可能是MySQLAdministrator5.0的bug
3) 如果要remove mysql service,只需要输入命令:
mysqld-nt –remove
6. 安装完毕,在start mysql server后,输入命令:
mysqlshow
来测试mysql是否运行正常
7. 修改root account的密码,输入命令:
mysqladmin -u root -p password "newpwd"
如何安装Mysql GUI tool
1. extract 下载的Mysql GUI Tools windows noninstall zip
2. 里面有3个tool
1)MySQLSystemTrayMonitor
2)MySQLQueryBrowser
3)MySQLAdministrator
Double click就可以直接使用它们!!