欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

解决MySQL5.1安装时出现Cannot create windows service for mysql.error:0

程序员文章站 2023-12-21 08:38:40
安装mysql5.1过程中,我把以前mysql5.0的gui工具和服务器全部删掉,安装目录全部删掉,数据文件目录名字改掉,注册表用完美卸载清理了。  然后重启安...

安装mysql5.1过程中,我把以前mysql5.0的gui工具和服务器全部删掉,安装目录全部删掉,数据文件目录名字改掉,注册表用完美卸载清理了。
 然后重启安装mysql5.1(我以前遇到过服务启动不了的情况,这样做就搞定了),可配置到最后一步时出现cannot create windows service for mysql.error:0错误,把配置工具关掉重试几次都不行,后来百度了下,听说要在系统管理员用户下执行sc delete mysql删除mysql服务后再启动配置工具配置,实在不行重启后再试。
 我删掉服务再配置还是同样错误,再删掉服务,重启后配置还是不行。
 又在网上参考了好些文章,最后解决办法如下:

1.出现错误后关掉配置工具,在系统管理员帐户下执行命令:sc delete mysql(mysql是服务名,根据你的服务名定); 

2.删除c:/documents and settings/all users/application data/mysql/mysql server 5.1/data目录下ib_logfile0、ib_logfile1两个文件删除,顺便说句,此目录下有个err文件,是以主机名命名的,里面记载着错误信息,类似下面这段: 

innodb: the first specified data file e:/data/ibdata1 did not exist:
 innodb: a new database to be created!
090501 19:20:08  innodb: setting file e:/data/ibdata1 size to 10 mb
innodb: database physically writes the file full: wait...
innodb: error: log file ./ib_logfile0 is of different size 0 48234496 bytes
innodb: than specified in the .cnf file 0 17825792 bytes!
090501 19:20:09 [error] plugin 'innodb' init function returned error.
090501 19:20:09 [error] plugin 'innodb' registration as a storage engine failed.
090501 19:20:09 [error] unknown/unsupported table type: innodb
090501 19:20:09 [error] aborting
090501 19:20:09 [warning] forcing shutdown of 1 plugins
090501 19:20:09 [note] e:/program files/mysql/mysql server/bin/mysqld: shutdown complete
 

3.删除配置时指定的数据文件目录,好像当时我的不能立即删除,我用unlocker删除时它说要下次重启时删除。
4.重启。
5.启动配置工具配置。 

这次就成功了。 

感谢提供帮助信息的前辈们,也希望对出现同样错误的朋友有帮助。

以上就是mysql5.1安装错误的解决方法,希望对大家的学习有所帮助,也希望大家多多支持。

上一篇:

下一篇: