下载了绿色版的MySQL5.1,修改了My.ini配置文件,添加了服务程序,运行net start mysql,提示1067错误,进程意外中止。
“事件查看器”-“应用程序”,关于MySQL进程错误一大堆,其中重要的提示是
"default-character-set' is deprecated and will be removed in a future release. Please use 'character-set-server' instead.
'skip-locking' is deprecated and will be removed in a future release. Please use 'skip-external-locking' instead.
Plugin 'InnoDB' init function returned error.
Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
于时重新修改配置参数,还提示InnoDB存储引擎不支持,改为MyISAM,能正常启动MySQL服务。
但在c:\> mysql -u root 提示
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
不知道是否MySQL5.1的版本问题,当换成免安装版本的MySQL5.5,就能正常运行,并且支持InnoDB。