Serveur MySQL 5.6: Erreur 1067 sur Windows 10 après la mise à jour

Windows a installé une autre mise à jour aujourd'hui (maintenant sur la version 1909), et maintenant le service MySQL 5.6 ne démarre pas.

J'ai découvert à partir de https://serverfault.com/questions/214435/error-1067-the-process-terminated-unexpectedly-when-trying-to-install-mysql-o{[11] } cela mysqld --console peut révéler des erreurs expliquant pourquoi le service MySQL ne démarre pas (tant qu'il fonctionne en mode administrateur).

2020-08-17 22:56:34 18132 [ERROR] Can't start server: Bind on TCP/IP port: No error
2020-08-17 22:56:34 18132 [ERROR] Do you already have another mysqld server running on port: 3306 ?
2020-08-17 22:56:34 18132 [ERROR] Aborting

J'ai également exécuté "C:Program FilesMySQLMySQL Server 5.6binmysqld.exe" --defaults-file="C:ProgramDataMySQLMySQL Server 5.6my.ini" --print-defaults et cela sort (après avoir été formaté):

C:Program FilesMySQLMySQL Server 5.6binmysqld.exe would have been started with the following arguments:
--port=3305 
--datadir=C:/ProgramData/MySQL/MySQL Server 5.6/Data 
--default-storage-engine=INNODB 
--sql-mode=STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION 
--log-output=FILE 
--general-log=0 
--general_log_file=DESKTOP-KQ4KCB5.log 
--slow-query-log=1 
--slow_query_log_file=DESKTOP-KQ4KCB5-slow.log 
--long_query_time=10 
--log-error=DESKTOP-KQ4KCB5.err 
--server-id=1 
--lower_case_table_names=1 
--secure-file-priv=C:/ProgramData/MySQL/MySQL Server 5.6/Uploads 
--max_connections=151 
--query_cache_size=0 
--table_open_cache= 
--tmp_table_size=56M 
--thread_cache_size=10 
--myisam_max_sort_file_size=100G 
--myisam_sort_buffer_size=102M 
--key_buffer_size=8M 
--read_buffer_size=64K 
--read_rnd_buffer_size=256K 
--innodb_additional_mem_pool_size=8M 
--innodb_flush_log_at_trx_commit=1 
--innodb_log_buffer_size=4M 
--innodb_buffer_pool_size=345M 
--innodb_log_file_size=48M 
--innodb_thread_concurrency=25 
--innodb_autoextend_increment=64 
--innodb_buffer_pool_instances=8 
--innodb_concurrency_tickets=5000 
--innodb_old_blocks_time=1000 
--innodb_open_files=300 
--innodb_stats_on_metadata=0 
--innodb_file_per_table=1 
--innodb_checksum_algorithm=0 
--back_log=80 
--flush_time=0 
--join_buffer_size=256K 
--max_allowed_packet=4M 
--max_connect_errors=100 
--open_files_limit=161 
--query_cache_type=0 
--sort_buffer_size=256K 
--table_definition_cache=400 
--binlog_row_event_max_size=8K 
--sync_master_info=10000 
--sync_relay_log=10000 
--sync_relay_log_info=10000

J'exécute deux serveurs MySQL différents, l'un version 8.0 sur le port 3306 et l'autre version 5.6 sur le port 3305. J'ai essayé de reconfigurer MySQL 5.6 à partir du programme d'installation MySQL, mais il ne se connecte pas lorsque je mets le mot de passe root. Lorsque j'essaie de reconfigurer MySQL 8.0, il rejette un mauvais mot de passe en 2 secondes, mais lorsque je mets le mot de passe pour MySQL 5.6 (dont je suis sûr qu'il a raison), il se bloque pendant 3 minutes et 7 secondes. Comment puis-je faire fonctionner MySQL 5.6 encore?

C'est l'erreur de la première fois qu'elle s'est produite dans le fichier C:ProgramDataMySQLMySQL Server 5.6data[computer-name].err :

InnoDB: Error: trying to access page number 50326784 in space 0,
InnoDB: space name .ibdata1,
InnoDB: which is outside the tablespace bounds.
InnoDB: Byte offset 0, len 16384, i/o type 10.
InnoDB: If you get this error at mysqld startup, please check that
InnoDB: your my.cnf matches the ibdata files that you have in the
InnoDB: MySQL server.
2020-08-17 21:50:20 1674  InnoDB: Assertion failure in thread 5748 in file fil0fil.cc line 5666
InnoDB: We intentionally generate a memory trap.
InnoDB: Submit a detailed bug report to http://bugs.mysql.com.
InnoDB: If you get repeated assertion failures or crashes, even
InnoDB: immediately after the mysqld startup, there may be
InnoDB: corruption in the InnoDB tablespace. Please refer to
InnoDB: http://dev.mysql.com/doc/refman/5.6/en/forcing-innodb-recovery.html
InnoDB: about forcing recovery.
demandé sur