mysql ibdata1的作用

今天启动mysql报错:

InnoDB: Error: log file ./ib_logfile0 is of different size 0 5242880 bytesInnoDB: Error: log file ./ib_logfile0 is of different size 0 5242880 bytes

上网说logfile0删掉就可以了

这个文件超级大, 查了一下, 大概的作用如下

是储存的格式
INNODB类型数据状态下,
ibdata用来储存文件的数据
而库名的文件夹里面的那些表文件只是结构而已

由于mysql4.1默认试innodb,所以这个文件默认就存在了http://man.chinaunix.net/database/mysql/inonodb_zh/2.htm 这个链接试innodb的中文参考, innodb的东西可以在my.ini中设置

你可能感兴趣的:(mysql)