Xampp-mysql - “Table doesn't exist in engine” #1932

后端 未结 10 2087
[愿得一人]
[愿得一人] 2020-12-15 05:18

Xampp error after moving xampp folder:

Apache is running fine:

as given below image i\'m sucess to run apache but unable to run mysql if in

相关标签:
10条回答
  • 2020-12-15 05:41
    • Copy the content of backups folder into data folder. This worked for me.
    • After this you have to reconfigure innodb files of your existent databases
    0 讨论(0)
  • 2020-12-15 05:43

    I had previously moved my mysql directory and forgot to change ALL references to the old location in \mysql\bin\my.ini.

    change these three lines:

    datadir = "/programs/xampp/mysql/data"
    innodb_data_home_dir = "/programs/xampp/mysql/data"
    innodb_log_group_home_dir = "/programs/xampp/mysql/data"
    

    Change "/programs/xampp/mysql/data" to new location this one was commented but I changed it anyways

    #innodb_log_arch_dir = "/programs/xampp/mysql/data"
    
    0 讨论(0)
  • 2020-12-15 05:45

    If you have copied & Pasted files from an old backup folder to new then its simple. Just copy the old ibdata1 into your new one. You can find it from \xampp\mysql\data

    0 讨论(0)
  • 2020-12-15 05:47

    I also had same issue on my mac. I was running 5.3.0 version. I removed that version and installed 7.2.1 version. After this it is working in my case.

    0 讨论(0)
提交回复
热议问题