Error Code: 2013. Lost connection to MySQL server during query

后端 未结 29 2189
深忆病人
深忆病人 2020-11-22 16:22

I got the Error Code: 2013. Lost connection to MySQL server during query error when I tried to add an index to a table using MySQL Workbench. I noticed als

29条回答
  •  再見小時候
    2020-11-22 16:37

    This usually means that you have "incompatibilities with the current version of MySQL Server", see mysql_upgrade. I ran into this same issue and simply had to run:

    mysql_upgrade --password The documentation states that, "mysql_upgrade should be executed each time you upgrade MySQL".

提交回复
热议问题