win7 64位旗舰版下 用免安装包弄得的官方mysql 但是启动服务的时候总是出现下面这些代码
111123 15:57:51 [Note] Plugin 'FEDERATED' is disabled.
111123 15:57:51 InnoDB: The InnoDB memory heap is disabled
111123 15:57:51 InnoDB: Mutexes and rw_locks use Windows interlocked functions
111123 15:57:51 InnoDB: Compressed tables use zlib 1.2.3
111123 15:57:51 InnoDB: Initializing buffer pool, size = 128.0M
111123 15:57:51 InnoDB: Completed initialization of buffer pool
111123 15:57:51 InnoDB: highest supported file format is Barracuda.
111123 15:57:51  InnoDB: Waiting for the background threads to start
111123 15:57:52 InnoDB: 1.1.7 started; log sequence number 1595675
111123 15:57:52 [Note] Event Scheduler: Loaded 0 events
111123 15:57:52 [Note] mysqld: ready for connections.
Version: '5.5.13'  socket: ''  port: 3306  MySQL Community Server (GPL)请问插件和innod引擎禁用原因是什么 查了很多资料都没有查到 希望高手帮主解答一下 谢谢了

解决方案 »

  1.   

    innod引擎并没有被禁用,不信你试试create table test1(a int)engine=innodb;
      

  2.   

    你应该贴出来带error得错误日志那行数据
      

  3.   

    InnoDB: The first specified datafile c:\ibdata\ibdata1 did not exist:
    InnoDB: a new database to be created!
    InnoDB: Setting file c:\ibdata\ibdata1 size to 209715200
    InnoDB: Database physically writes the file full: wait...
    InnoDB: Log file c:\iblogs\ib_logfile0 did not exist: new to be created
    InnoDB: Setting log file c:\iblogs\ib_logfile0 size to 31457280
    InnoDB: Log file c:\iblogs\ib_logfile1 did not exist: new to be created
    InnoDB: Setting log file c:\iblogs\ib_logfile1 size to 31457280
    InnoDB: Log file c:\iblogs\ib_logfile2 did not exist: new to be created
    InnoDB: Setting log file c:\iblogs\ib_logfile2 size to 31457280
    InnoDB: Doublewrite buffer not found: creating new
    InnoDB: Doublewrite buffer created
    InnoDB: creating foreign key constraint system tables
    InnoDB: foreign key constraint system tables created
    011024 10:58:25  InnoDB: Started这是官方给出的musqld --console的运行结果 为什么我的运行结果信息跟官方的不一样啊
    111123 15:57:51 [Note] Plugin 'FEDERATED' is disabled.
    111123 15:57:51 InnoDB: The InnoDB memory heap is disabled
      

  4.   

    1、检查文件夹的权限;
    2、你的数据是直接COPY的?INNODB的一般用MYSQLDUMP备份再导入 ;
    3、如果是新的数据库,将ib_logfile*。*、ibdata1*。*删除,重新启动会自动生成;
    4、ibdata1、ib_logfile必须配套。
      

  5.   

    或者你先装个集成环境,如XAMPP,比较一下差别,有助于解决问题。
      

  6.   

    安装包完整吗?innodb插件在包里面吗?innodb并不是mysql小组开发的,是第三方存储引擎插件。
      

  7.   

    朋友 我对数据库不太了解 这个是在官网下载的最新解压版的 不知道包不包含你说的那个插件请问那个innodb是还需要自己特意安装么 应该在哪里下载
      

  8.   

    朋友 我对数据库不太了解 这个是在官网下载的最新解压版的 不知道包不包含你说的那个插件请问那个innodb是还需要自己特意安装么 应该在哪里下载
      

  9.   

    你的INNODB应该是正常的啊。show engines;你可以用这个命令看一下系统中有效的存储引擎。 只不过是INNODB的一个内存表未安装插件。
    FEDERAL 存储引擎需要编译安装。总体来说,你的MYSQL应该是一切正常。