找的好辛苦,总之是看日志
报错:
The innodb_system data file ‘./ibdata1’ is of a different size 4864 pages (rounded down to MB) than the 768 pages s

mysql启动错误记录
关键词
主要是innob引擎
参数文件中的系统表空间大于实际的系统表空间大小,导致启动报错。 更改/etc/my.cnf
innodb_data_file_path=ibdata1:1000M;ibdata2:1000M:autoextend
一般只有ibdata1,除非自己扩展,因为innob默认是共享表的空间,当然也可以单表共享空间。
切记要加autoextend

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-03-03
  • 2021-07-29
  • 2021-12-21
  • 2022-12-23
  • 2022-01-22
  • 2021-06-23
猜你喜欢
  • 2022-12-23
  • 2022-02-07
  • 2021-07-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-22
相关资源
相似解决方案