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

后端 未结 29 2097
深忆病人
深忆病人 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

    Just perform a MySQL upgrade that will re-build innoDB engine along with rebuilding of many tables required for proper functioning of MySQL such as performance_schema, information_schema, etc.

    Issue the below command from your shell:

    sudo mysql_upgrade -u root -p
    

提交回复
热议问题