我倒!!!
出现该提示后MYSQL能运行,谁知道这是怎么回事吗?

解决方案 »

  1.   

    1.mysql3.23.38 Support for transactions with two types of tables: 
      InnoDB and BDB.2.Can't initialize InnoDB as 'innodb_data_file_path' is not set
      The above means that the InnoDB tables are disabled, however the
      server is ready for the others tables3.  If you don't want the InnoDB tables support and to avoid the above
        warning message, you could create the \my.cnf or \WindDir\my.ini file
        and add the below variable:
        [mysqld]
        skip-innodb    Otherwise if you want the InnoDB tables support, you need to read in
        our Manual how to prepare the configuration file. Below the
        preliminaries instructions:     - Create the log and data directories, for example: c:\ibdata and
           c:\iblogs.
         - Create the configuration file and edit the variables according
           with the Manual instructions. Notice that the sizes of the files
           can't exceed 2000M.
         - Start the server and you will see, the messages that InnoDB are
           creating the files:       C:\mysql\bin>mysqld-max --standalone
           InnoDB: The first specified data file c:\ibdata\ibdata1 did not
           exist:
           InnoDB: a new database to be created!
           InnoDB: Setting file c:\ibdata\ibdata1 size to 26214400
           InnoDB: Database physically writes the file full: wait...
           InnoDB: Data file c:\ibdata\ibdata2 did not exist: new to be created
           InnoDB: Setting file c:\ibdata\ibdata2 size to 38797312
           InnoDB: Database physically writes the file full: wait...
           InnoDB: Data file c:\ibdata\ibdata3 did not exist: new to be created
           InnoDB: Setting file c:\ibdata\ibdata3 size to 104857600
           InnoDB: Database physically writes the file full: wait...
           InnoDB: Data file c:\ibdata\ibdata4 did not exist: new to be created
           InnoDB: Setting file c:\ibdata\ibdata4 size to 314572800
           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 5242880
           InnoDB: Log file c:\iblogs\ib_logfile1 did not exist: new to be
           created
           InnoDB: Setting log file c:\iblogs\ib_logfile1 size to 5242880
           InnoDB: Log file c:\iblogs\ib_logfile2 did not exist: new to be
           created
           InnoDB: Setting log file c:\iblogs\ib_logfile2 size to 5242880
           InnoDB: Started    Notice that you can to start the server as service on WinNT and
        Win2k OSs. The server should be used is the mysqld-max-nt.exe