the MySQL service on local computer started and then stopped

前端 未结 24 3123
抹茶落季
抹茶落季 2020-11-30 21:59

the MySQL service on local computer started and then stopped. Some services stop automatically if they are not in use by other services or programs.

Can anyone resol

24条回答
  •  攒了一身酷
    2020-11-30 23:00

    This may be because of changing lower_case_table_names after a server has been already initialized.

    From the docs:

    lower_case_table_names can only be configured when initializing the server. Changing the lower_case_table_names setting after the server is initialized is prohibited.

    The solution to this problem is to set lower_case_table_names parameter at server installation as described in the following answer:

    Can't set lower_case_table_names in MySQL 8.x on Windows 10

提交回复
热议问题