Page 1 of 1

MySQL Shutdown Unexpectedly

PostPosted: 27. July 2022 21:56
by Nautidogge
# mysqld --defaults-file=mysql\bin\my.ini --standalone --console
2022-07-27 16:48:31 0 [Note] Using unique option prefix 'key_buffer' is error-prone and can break in the future. Please use the full name 'key_buffer_size' instead.
2022-07-27 16:48:31 0 [Note] mysqld (mysqld 10.4.24-MariaDB) starting as process 7876 ...
2022-07-27 16:48:31 0 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2022-07-27 16:48:31 0 [Note] InnoDB: Uses event mutexes
2022-07-27 16:48:31 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
2022-07-27 16:48:31 0 [Note] InnoDB: Number of pools: 1
2022-07-27 16:48:31 0 [Note] InnoDB: Using SSE2 crc32 instructions
2022-07-27 16:48:31 0 [Note] InnoDB: Initializing buffer pool, total size = 16M, instances = 1, chunk size = 16M
2022-07-27 16:48:31 0 [Note] InnoDB: Completed initialization of buffer pool
2022-07-27 16:48:31 0 [Note] InnoDB: 128 out of 128 rollback segments are active.
2022-07-27 16:48:31 0 [Note] InnoDB: Creating shared tablespace for temporary tables
2022-07-27 16:48:31 0 [Note] InnoDB: Setting file 'C:\xampp\mysql\data\ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
2022-07-27 16:48:31 0 [Note] InnoDB: File 'C:\xampp\mysql\data\ibtmp1' size is now 12 MB.
2022-07-27 16:48:31 0 [Note] InnoDB: Waiting for purge to start
2022-07-27 16:48:31 0 [Note] InnoDB: 10.4.24 started; log sequence number 69829520; transaction id 50073
2022-07-27 16:48:31 0 [Note] InnoDB: Loading buffer pool(s) from C:\xampp\mysql\data\ib_buffer_pool
2022-07-27 16:48:31 0 [Note] Plugin 'FEEDBACK' is disabled.
2022-07-27 16:48:31 0 [Note] Server socket created on IP: '::'.
2022-07-27 16:48:31 0 [ERROR] mysqld: Table '.\mysql\db' is marked as crashed and last (automatic?) repair failed
2022-07-27 16:48:31 0 [ERROR] Fatal error: Can't open and lock privilege tables: Table '.\mysql\db' is marked as crashed and last (automatic?) repair failed
2022-07-27 16:48:31 0 [ERROR] Aborting

Having the exact same problem - so here is the result

Re: MySQL Shutdown Unexpectedly

PostPosted: 28. July 2022 08:14
by Altrea
your mysql database needs to be repaired.

  • open the XAMPP Shell by clicking the Shell button in your XAMPP Control Panel
  • execute the following command:
    Code: Select all
    mysqld --console --skip-grant-tables --skip-external-locking
  • Leave this black command line window open and click on the Shell button in the Control Panel again to open a second command line window and execute this command:
    Code: Select all
    mysqlcheck -r --databases mysql --use-frm
  • you Can close both command line Windows and try to start mysql again normally from your XAMPP control panel