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
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