Why does MySQL 8 starts the server with --super-read-only flag on Windows Startup?

Viewed 148

I've just installed MySQL Server 8.0.20 with a new InnoDB Cluster and configured to Start it at System Startup. Everything works fine, except when I try to create a new Table I get this Error:

The MySQL server is running with the --super-read-only option so it cannot execute this statement

How can I turn off this option?

Thanks in advance!

1 Answers

You need to run dba.rebootClusterFromCompleteOutage('clusterName') in order to reboot it.

Related