MySQL Application Crashes

0

I am a Sysadmin & I don’t know much about MySQL DB. The thing is that we have an Application deployed on our windows Server 2012 Machine. What happens is that MySQL DB Service is crashing then I have to restart it manually. It’s happening at least twice a Day now.When I check Events in the Event Viewer I see below Events with EventID 1000. kindly guide me how can I resolve this issue

Below is the complete error details Faulting application name: mysqld.exe, version: 5.6.11.0, time stamp: 0x515ee7da Faulting module name: mysqld.exe, version: 5.6.11.0, time stamp: 0x515ee7da Exception code: 0xc0000005 Fault offset: 0x001f5997 Faulting process id: 0x7dc Faulting application start time: 0x01da7691f2806f13 Faulting application path: C:\Program Files (x86)\MySQL\MySQL Server 5.6\bin\mysqld.exe Faulting module path: C:\Program Files (x86)\MySQL\MySQL Server 5.6\bin\mysqld.exe Report Id: 9da9db4b-e293-11ee-8110-00155d006742 Faulting package full name: Faulting package-relative application ID:

Try to read its log file under C:\Program Files (x86)\MySQL\MySQL Server 5.6\data

I need to known what is the root cause due to which sql application crashes.

Hi,
The Windows events do not give much detail about the crash.
Have you checked the MySQL logs mentioned in that event?
That should explain more about the issue.

@yunus.uyanik Thank you so much for your response I am pasting some other useful information.

socket: ''  port: 3306  MySQL Community Server (GPL)
2024-03-14 12:04:04 3276 [Note] Plugin 'FEDERATED' is disabled.
2024-03-14 12:04:04 3276 [Note] InnoDB: The InnoDB memory heap is disabled
2024-03-14 12:04:04 3276 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2024-03-14 12:04:04 3276 [Note] InnoDB: Compressed tables use zlib 1.2.3
2024-03-14 12:04:04 3276 [Note] InnoDB: Not using CPU crc32 instructions
2024-03-14 12:04:04 3276 [Note] InnoDB: Initializing buffer pool, size = 1.0G
2024-03-14 12:04:04 3276 [Note] InnoDB: Completed initialization of buffer pool
2024-03-14 12:04:04 3276 [Note] InnoDB: Highest supported file format is Barracuda.
2024-03-14 12:04:04 3276 [Note] InnoDB: The log sequence numbers 23829460923 and 23829460923 in ibdata files do not match the log sequence number 23920667293 in the ib_logfiles!
2024-03-14 12:04:04 3276 [Note] InnoDB: Database was not shutdown normally!
2024-03-14 12:04:04 3276 [Note] InnoDB: Starting crash recovery.
2024-03-14 12:04:04 3276 [Note] InnoDB: Reading tablespace information from the .ibd files...
2024-03-14 12:04:05 3276 [Note] InnoDB: Restoring possible half-written data pages 
2024-03-14 12:04:05 3276 [Note] InnoDB: from the doublewrite buffer...
2024-03-14 12:04:06 3276 [Note] InnoDB: 128 rollback segment(s) are active.
2024-03-14 12:04:06 3276 [Note] InnoDB: Waiting for purge to start
2024-03-14 12:04:06 3276 [Note] InnoDB: 5.6.11 started; log sequence number 23920667293
2024-03-14 12:04:06 3276 [Note] Server hostname (bind-address): '*'; port: 3306
2024-03-14 12:04:06 3276 [Note] IPv6 is available.
2024-03-14 12:04:06 3276 [Note]   - '::' resolves to '::';
2024-03-14 12:04:06 3276 [Note] Server socket created on IP: '::'.
2024-03-14 12:04:06 3276 [Note] Event Scheduler: Loaded 0 events
2024-03-14 12:04:06 3276 [Note] MySQL: ready for connections.
Version: '5.6.11'  socket: ''  port: 3306  MySQL Community Server (GPL)

SELECT COUNT(*), sum(data_length), sum(index_length), sum(data_free) FROM information_schema.tables LIMIT 100000; 

Result : 

"593","566850656","236166144","176590914"

As the log said, it was not shutdown normally, and the reason should be in the logs. You might go up a bit and try to look at a bit older logs then this one to find out the reason.

2024-02-28 18:29:00 2416 [Note] Plugin ‘FEDERATED’ is disabled.
2024-02-28 18:29:00 2416 [Note] InnoDB: The InnoDB memory heap is disabled
2024-02-28 18:29:00 2416 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2024-02-28 18:29:00 2416 [Note] InnoDB: Compressed tables use zlib 1.2.3
2024-02-28 18:29:00 2416 [Note] InnoDB: Not using CPU crc32 instructions
2024-02-28 18:29:00 2416 [Note] InnoDB: Initializing buffer pool, size = 512.0M
2024-02-28 18:29:00 2416 [Note] InnoDB: Completed initialization of buffer pool
2024-02-28 18:29:00 2416 [Note] InnoDB: Highest supported file format is Barracuda.
2024-02-28 18:29:00 2416 [Note] InnoDB: The log sequence numbers 23479957660 and 23479957660 in ibdata files do not match the log sequence number 23795517118 in the ib_logfiles!
2024-02-28 18:29:00 2416 [Note] InnoDB: Database was not shutdown normally!
2024-02-28 18:29:00 2416 [Note] InnoDB: Starting crash recovery.
2024-02-28 18:29:00 2416 [Note] InnoDB: Reading tablespace information from the .ibd files…
2024-02-28 18:29:01 2416 [Note] InnoDB: Restoring possible half-written data pages
2024-02-28 18:29:01 2416 [Note] InnoDB: from the doublewrite buffer…
2024-02-28 18:29:01 2416 [Note] InnoDB: 128 rollback segment(s) are active.
2024-02-28 18:29:01 2416 [Note] InnoDB: Waiting for purge to start
2024-02-28 18:29:01 2416 [Note] InnoDB: 5.6.11 started; log sequence number 23795517118
2024-02-28 18:29:01 2416 [Note] Server hostname (bind-address): ‘*’; port: 3306
2024-02-28 18:29:01 2416 [Note] IPv6 is available.
2024-02-28 18:29:01 2416 [Note] - ‘::’ resolves to ‘::’;
2024-02-28 18:29:01 2416 [Note] Server socket created on IP: ‘::’.
2024-02-28 18:29:02 2416 [Note] Event Scheduler: Loaded 0 events
2024-02-28 18:29:02 2416 [Note] MySQL: ready for connections.
Version: ‘5.6.11’ socket: ‘’ port: 3306 MySQL Community Server (GPL)
2024-02-28 18:29:15 2416 [Note] MySQL: Normal shutdown

2024-02-28 18:29:15 2416 [Note] Giving 1 client threads a chance to die gracefully
2024-02-28 18:29:15 2416 [Note] Event Scheduler: Purging the queue. 0 events
2024-02-28 18:29:15 2416 [Note] Shutting down slave threads
2024-02-28 18:29:17 2416 [Note] Forcefully disconnecting 1 remaining clients
2024-02-28 18:29:17 2416 [Warning] MySQL: Forcing close of thread 1 user: ‘root’

2024-02-28 18:29:17 2416 [Note] Binlog end
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘partition’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘PERFORMANCE_SCHEMA’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_SYS_DATAFILES’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_SYS_TABLESPACES’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_SYS_FOREIGN_COLS’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_SYS_FOREIGN’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_SYS_FIELDS’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_SYS_COLUMNS’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_SYS_INDEXES’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_SYS_TABLESTATS’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_SYS_TABLES’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_FT_INDEX_TABLE’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_FT_INDEX_CACHE’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_FT_CONFIG’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_FT_BEING_DELETED’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_FT_DELETED’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_FT_DEFAULT_STOPWORD’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_METRICS’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_BUFFER_POOL_STATS’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_BUFFER_PAGE_LRU’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_BUFFER_PAGE’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_CMP_PER_INDEX_RESET’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_CMP_PER_INDEX’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_CMPMEM_RESET’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_CMPMEM’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_CMP_RESET’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_CMP’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_LOCK_WAITS’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_LOCKS’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘INNODB_TRX’
2024-02-28 18:29:17 2416 [Note] Shutting down plugin ‘InnoDB’
2024-02-28 18:29:17 2416 [Note] InnoDB: FTS optimize thread exiting.
2024-02-28 18:29:17 2416 [Note] InnoDB: Starting shutdown…
2024-02-28 18:29:18 2416 [Note] InnoDB: Shutdown completed; log sequence number 23795519980
2024-02-28 18:29:18 2416 [Note] Shutting down plugin ‘BLACKHOLE’
2024-02-28 18:29:18 2416 [Note] Shutting down plugin ‘ARCHIVE’
2024-02-28 18:29:18 2416 [Note] Shutting down plugin ‘MRG_MYISAM’
2024-02-28 18:29:18 2416 [Note] Shutting down plugin ‘MyISAM’
2024-02-28 18:29:18 2416 [Note] Shutting down plugin ‘MEMORY’
2024-02-28 18:29:18 2416 [Note] Shutting down plugin ‘CSV’
2024-02-28 18:29:18 2416 [Note] Shutting down plugin ‘sha256_password’
2024-02-28 18:29:18 2416 [Note] Shutting down plugin ‘mysql_old_password’
2024-02-28 18:29:18 2416 [Note] Shutting down plugin ‘mysql_native_password’
2024-02-28 18:29:18 2416 [Note] Shutting down plugin ‘binlog’
2024-02-28 18:29:18 2416 [Note] MySQL: Shutdown complete

2024-02-28 18:30:46 7492 [Note] Plugin ‘FEDERATED’ is disabled.
2024-02-28 18:30:46 7492 [Note] InnoDB: The InnoDB memory heap is disabled
2024-02-28 18:30:46 7492 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2024-02-28 18:30:46 7492 [Note] InnoDB: Compressed tables use zlib 1.2.3
2024-02-28 18:30:46 7492 [Note] InnoDB: Not using CPU crc32 instructions
2024-02-28 18:30:46 7492 [Note] InnoDB: Initializing buffer pool, size = 1.0G
2024-02-28 18:30:46 7492 [Note] InnoDB: Completed initialization of buffer pool
2024-02-28 18:30:46 7492 [Note] InnoDB: Highest supported file format is Barracuda.
2024-02-28 18:30:46 7492 [Note] InnoDB: 128 rollback segment(s) are active.
2024-02-28 18:30:46 7492 [Note] InnoDB: Waiting for purge to start
2024-02-28 18:30:46 7492 [Note] InnoDB: 5.6.11 started; log sequence number 23795519980
2024-02-28 18:30:46 7492 [Note] Server hostname (bind-address): ‘*’; port: 3306
2024-02-28 18:30:46 7492 [Note] IPv6 is available.
2024-02-28 18:30:46 7492 [Note] - ‘::’ resolves to ‘::’;
2024-02-28 18:30:46 7492 [Note] Server socket created on IP: ‘::’.
2024-02-28 18:30:46 7492 [Note] Event Scheduler: Loaded 0 events
2024-02-28 18:30:46 7492 [Note] MySQL: ready for connections.
Version: ‘5.6.11’ socket: ‘’ port: 3306 MySQL Community Server (GPL)
2024-02-28 18:42:00 7492 [Note] MySQL: Normal shutdown

2024-02-28 18:42:00 7492 [Note] Giving 6 client threads a chance to die gracefully
2024-02-28 18:42:00 7492 [Note] Event Scheduler: Purging the queue. 0 events
2024-02-28 18:42:00 7492 [Note] Shutting down slave threads
2024-02-28 18:42:02 7492 [Note] Forcefully disconnecting 6 remaining clients
2024-02-28 18:42:02 7492 [Warning] MySQL: Forcing close of thread 1 user: ‘root’

2024-02-28 18:42:02 7492 [Warning] MySQL: Forcing close of thread 2 user: ‘root’

2024-02-28 18:42:02 7492 [Warning] MySQL: Forcing close of thread 3 user: ‘root’

2024-02-28 18:42:02 7492 [Warning] MySQL: Forcing close of thread 4 user: ‘root’

2024-02-28 18:42:02 7492 [Warning] MySQL: Forcing close of thread 5 user: ‘root’

2024-02-28 18:42:02 7492 [Warning] MySQL: Forcing close of thread 6 user: ‘root’

2024-02-28 18:42:02 7492 [Note] Binlog end
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘partition’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘PERFORMANCE_SCHEMA’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_SYS_DATAFILES’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_SYS_TABLESPACES’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_SYS_FOREIGN_COLS’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_SYS_FOREIGN’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_SYS_FIELDS’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_SYS_COLUMNS’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_SYS_INDEXES’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_SYS_TABLESTATS’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_SYS_TABLES’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_FT_INDEX_TABLE’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_FT_INDEX_CACHE’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_FT_CONFIG’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_FT_BEING_DELETED’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_FT_DELETED’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_FT_DEFAULT_STOPWORD’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_METRICS’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_BUFFER_POOL_STATS’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_BUFFER_PAGE_LRU’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_BUFFER_PAGE’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_CMP_PER_INDEX_RESET’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_CMP_PER_INDEX’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_CMPMEM_RESET’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_CMPMEM’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_CMP_RESET’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_CMP’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_LOCK_WAITS’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_LOCKS’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘INNODB_TRX’
2024-02-28 18:42:02 7492 [Note] Shutting down plugin ‘InnoDB’
2024-02-28 18:42:02 7492 [Note] InnoDB: FTS optimize thread exiting.
2024-02-28 18:42:02 7492 [Note] InnoDB: Starting shutdown…
2024-02-28 18:42:03 7492 [Note] InnoDB: Shutdown completed; log sequence number 23797427266
2024-02-28 18:42:03 7492 [Note] Shutting down plugin ‘BLACKHOLE’
2024-02-28 18:42:03 7492 [Note] Shutting down plugin ‘ARCHIVE’
2024-02-28 18:42:03 7492 [Note] Shutting down plugin ‘MRG_MYISAM’
2024-02-28 18:42:03 7492 [Note] Shutting down plugin ‘MyISAM’
2024-02-28 18:42:03 7492 [Note] Shutting down plugin ‘MEMORY’
2024-02-28 18:42:03 7492 [Note] Shutting down plugin ‘CSV’
2024-02-28 18:42:03 7492 [Note] Shutting down plugin ‘sha256_password’
2024-02-28 18:42:03 7492 [Note] Shutting down plugin ‘mysql_old_password’
2024-02-28 18:42:03 7492 [Note] Shutting down plugin ‘mysql_native_password’
2024-02-28 18:42:03 7492 [Note] Shutting down plugin ‘binlog’
2024-02-28 18:42:03 7492 [Note] MySQL: Shutdown complete

2024-02-28 18:43:16 2712 [Note] Plugin ‘FEDERATED’ is disabled.
2024-02-28 18:43:16 2712 [Note] InnoDB: The InnoDB memory heap is disabled
2024-02-28 18:43:16 2712 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2024-02-28 18:43:16 2712 [Note] InnoDB: Compressed tables use zlib 1.2.3
2024-02-28 18:43:16 2712 [Note] InnoDB: Not using CPU crc32 instructions
2024-02-28 18:43:16 2712 [Note] InnoDB: Initializing buffer pool, size = 2.0G
2024-02-28 18:43:16 2712 [Note] InnoDB: Completed initialization of buffer pool
2024-02-28 18:43:16 2712 [Note] InnoDB: Highest supported file format is Barracuda.
2024-02-28 18:43:17 2712 [Note] InnoDB: 128 rollback segment(s) are active.
2024-02-28 18:43:17 2712 [Note] InnoDB: Waiting for purge to start
2024-02-28 18:43:17 2712 [Note] InnoDB: 5.6.11 started; log sequence number 23797427266
2024-02-28 18:43:17 2712 [Note] Server hostname (bind-address): ‘'; port: 3306
2024-02-28 18:43:17 2712 [Note] IPv6 is available.
2024-02-28 18:43:17 2712 [Note] - ‘::’ resolves to ‘::’;
2024-02-28 18:43:17 2712 [Note] Server socket created on IP: ‘::’.
2024-02-28 18:43:17 2712 [Note] Event Scheduler: Loaded 0 events
2024-02-28 18:43:17 2712 [Note] MySQL: ready for connections.
Version: ‘5.6.11’ socket: ‘’ port: 3306 MySQL Community Server (GPL)
2024-03-01 12:09:04 1876 [Note] Plugin ‘FEDERATED’ is disabled.
2024-03-01 12:09:04 1876 [Note] InnoDB: The InnoDB memory heap is disabled
2024-03-01 12:09:04 1876 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2024-03-01 12:09:04 1876 [Note] InnoDB: Compressed tables use zlib 1.2.3
2024-03-01 12:09:04 1876 [Note] InnoDB: Not using CPU crc32 instructions
2024-03-01 12:09:04 1876 [Note] InnoDB: Initializing buffer pool, size = 2.0G
2024-03-01 12:09:04 1876 [Note] InnoDB: Completed initialization of buffer pool
2024-03-01 12:09:04 1876 [Note] InnoDB: Highest supported file format is Barracuda.
2024-03-01 12:09:04 1876 [Note] InnoDB: Log scan progressed past the checkpoint lsn 23817863281
2024-03-01 12:09:04 1876 [Note] InnoDB: Database was not shutdown normally!
2024-03-01 12:09:04 1876 [Note] InnoDB: Starting crash recovery.
2024-03-01 12:09:04 1876 [Note] InnoDB: Reading tablespace information from the .ibd files…
2024-03-01 12:09:05 1876 [Note] InnoDB: Restoring possible half-written data pages
2024-03-01 12:09:05 1876 [Note] InnoDB: from the doublewrite buffer…
InnoDB: Doing recovery: scanned up to log sequence number 23818576367
2024-03-01 12:09:06 1876 [Note] InnoDB: Starting an apply batch of log records to the database…
InnoDB: Progress in percent: 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
InnoDB: Apply batch completed
2024-03-01 12:09:07 1876 [Note] InnoDB: 128 rollback segment(s) are active.
2024-03-01 12:09:07 1876 [Note] InnoDB: Waiting for purge to start
2024-03-01 12:09:07 1876 [Note] InnoDB: 5.6.11 started; log sequence number 23818576367
2024-03-01 12:09:07 1876 [Note] Server hostname (bind-address): '
’; port: 3306
2024-03-01 12:09:07 1876 [Note] IPv6 is available.
2024-03-01 12:09:07 1876 [Note] - ‘::’ resolves to ‘::’;
2024-03-01 12:09:07 1876 [Note] Server socket created on IP: ‘::’.
2024-03-01 12:09:08 1876 [Note] Event Scheduler: Loaded 0 events
2024-03-01 12:09:08 1876 [Note] MySQL: ready for connections.
Version: ‘5.6.11’ socket: ‘’ port: 3306 MySQL Community Server (GPL)
2024-03-01 12:20:24 4148 [Note] Plugin ‘FEDERATED’ is disabled.
2024-03-01 12:20:24 4148 [Note] InnoDB: The InnoDB memory heap is disabled
2024-03-01 12:20:24 4148 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2024-03-01 12:20:24 4148 [Note] InnoDB: Compressed tables use zlib 1.2.3
2024-03-01 12:20:24 4148 [Note] InnoDB: Not using CPU crc32 instructions
2024-03-01 12:20:24 4148 [Note] InnoDB: Initializing buffer pool, size = 2.0G
2024-03-01 12:20:25 4148 [Note] InnoDB: Completed initialization of buffer pool
2024-03-01 12:20:25 4148 [Note] InnoDB: Highest supported file format is Barracuda.
2024-03-01 12:20:25 4148 [Note] InnoDB: Log scan progressed past the checkpoint lsn 23823818385
2024-03-01 12:20:25 4148 [Note] InnoDB: Database was not shutdown normally!
2024-03-01 12:20:25 4148 [Note] InnoDB: Starting crash recovery.
2024-03-01 12:20:25 4148 [Note] InnoDB: Reading tablespace information from the .ibd files…
2024-03-01 12:20:25 4148 [Note] InnoDB: Restoring possible half-written data pages
2024-03-01 12:20:25 4148 [Note] InnoDB: from the doublewrite buffer…
InnoDB: Doing recovery: scanned up to log sequence number 23824256694
2024-03-01 12:20:25 4148 [Note] InnoDB: Starting an apply batch of log records to the database…
InnoDB: Progress in percent: 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
InnoDB: Apply batch completed
2024-03-01 12:20:26 4148 [Note] InnoDB: 128 rollback segment(s) are active.
2024-03-01 12:20:26 4148 [Note] InnoDB: Waiting for purge to start
2024-03-01 12:20:26 4148 [Note] InnoDB: 5.6.11 started; log sequence number 23824256694
2024-03-01 12:20:26 4148 [Note] Server hostname (bind-address): ‘*’; port: 3306
2024-03-01 12:20:26 4148 [Note] IPv6 is available.
2024-03-01 12:20:26 4148 [Note] - ‘::’ resolves to ‘::’;
2024-03-01 12:20:26 4148 [Note] Server socket created on IP: ‘::’.
2024-03-01 12:20:26 4148 [Note] Event Scheduler: Loaded 0 events
2024-03-01 12:20:26 4148 [Note] MySQL: ready for connections.
Version: ‘5.6.11’ socket: ‘’ port: 3306 MySQL Community Server (GPL)
2024-03-01 12:20:44 4148 [Note] MySQL: Normal shutdown

2024-03-01 12:20:44 4148 [Note] Giving 0 client threads a chance to die gracefully
2024-03-01 12:20:44 4148 [Note] Event Scheduler: Purging the queue. 0 events
2024-03-01 12:20:44 4148 [Note] Shutting down slave threads
2024-03-01 12:20:44 4148 [Note] Forcefully disconnecting 0 remaining clients
2024-03-01 12:20:44 4148 [Note] Binlog end
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘partition’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘PERFORMANCE_SCHEMA’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_SYS_DATAFILES’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_SYS_TABLESPACES’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_SYS_FOREIGN_COLS’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_SYS_FOREIGN’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_SYS_FIELDS’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_SYS_COLUMNS’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_SYS_INDEXES’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_SYS_TABLESTATS’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_SYS_TABLES’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_FT_INDEX_TABLE’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_FT_INDEX_CACHE’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_FT_CONFIG’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_FT_BEING_DELETED’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_FT_DELETED’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_FT_DEFAULT_STOPWORD’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_METRICS’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_BUFFER_POOL_STATS’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_BUFFER_PAGE_LRU’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_BUFFER_PAGE’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_CMP_PER_INDEX_RESET’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_CMP_PER_INDEX’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_CMPMEM_RESET’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_CMPMEM’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_CMP_RESET’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_CMP’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_LOCK_WAITS’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_LOCKS’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘INNODB_TRX’
2024-03-01 12:20:44 4148 [Note] Shutting down plugin ‘InnoDB’
2024-03-01 12:20:44 4148 [Note] InnoDB: FTS optimize thread exiting.
2024-03-01 12:20:44 4148 [Note] InnoDB: Starting shutdown…
2024-03-01 12:20:46 4148 [Note] InnoDB: Shutdown completed; log sequence number 23824258605
2024-03-01 12:20:46 4148 [Note] Shutting down plugin ‘BLACKHOLE’
2024-03-01 12:20:46 4148 [Note] Shutting down plugin ‘ARCHIVE’
2024-03-01 12:20:46 4148 [Note] Shutting down plugin ‘MRG_MYISAM’
2024-03-01 12:20:46 4148 [Note] Shutting down plugin ‘MyISAM’
2024-03-01 12:20:46 4148 [Note] Shutting down plugin ‘MEMORY’
2024-03-01 12:20:46 4148 [Note] Shutting down plugin ‘CSV’
2024-03-01 12:20:46 4148 [Note] Shutting down plugin ‘sha256_password’
2024-03-01 12:20:46 4148 [Note] Shutting down plugin ‘mysql_old_password’
2024-03-01 12:20:46 4148 [Note] Shutting down plugin ‘mysql_native_password’
2024-03-01 12:20:46 4148 [Note] Shutting down plugin ‘binlog’
2024-03-01 12:20:46 4148 [Note] MySQL: Shutdown complete

2024-03-05 10:37:59 1564 [Note] Plugin ‘FEDERATED’ is disabled.
2024-03-05 10:37:59 1564 [Note] InnoDB: The InnoDB memory heap is disabled
2024-03-05 10:37:59 1564 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2024-03-05 10:37:59 1564 [Note] InnoDB: Compressed tables use zlib 1.2.3
2024-03-05 10:37:59 1564 [Note] InnoDB: Not using CPU crc32 instructions
2024-03-05 10:37:59 1564 [Note] InnoDB: Initializing buffer pool, size = 1.0G
2024-03-05 10:37:59 1564 [Note] InnoDB: Completed initialization of buffer pool
2024-03-05 10:37:59 1564 [Note] InnoDB: Highest supported file format is Barracuda.
2024-03-05 10:37:59 1564 [Note] InnoDB: The log sequence numbers 23829460923 and 23829460923 in ibdata files do not match the log sequence number 23853923372 in the ib_logfiles!
2024-03-05 10:37:59 1564 [Note] InnoDB: Database was not shutdown normally!
2024-03-05 10:37:59 1564 [Note] InnoDB: Starting crash recovery.
2024-03-05 10:37:59 1564 [Note] InnoDB: Reading tablespace information from the .ibd files…
2024-03-05 10:38:00 1564 [Note] InnoDB: Restoring possible half-written data pages
2024-03-05 10:38:00 1564 [Note] InnoDB: from the doublewrite buffer…
2024-03-05 10:38:01 1564 [Note] InnoDB: 128 rollback segment(s) are active.
2024-03-05 10:38:01 1564 [Note] InnoDB: Waiting for purge to start
2024-03-05 10:38:01 1564 [Note] InnoDB: 5.6.11 started; log sequence number 23853923372
2024-03-05 10:38:01 1564 [Note] Server hostname (bind-address): ‘'; port: 3306
2024-03-05 10:38:01 1564 [Note] IPv6 is available.
2024-03-05 10:38:01 1564 [Note] - ‘::’ resolves to ‘::’;
2024-03-05 10:38:01 1564 [Note] Server socket created on IP: ‘::’.
2024-03-05 10:38:02 1564 [Note] Event Scheduler: Loaded 0 events
2024-03-05 10:38:02 1564 [Note] MySQL: ready for connections.
Version: ‘5.6.11’ socket: ‘’ port: 3306 MySQL Community Server (GPL)
2024-03-06 16:22:29 4768 [Note] Plugin ‘FEDERATED’ is disabled.
2024-03-06 16:22:29 4768 [Note] InnoDB: The InnoDB memory heap is disabled
2024-03-06 16:22:29 4768 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2024-03-06 16:22:29 4768 [Note] InnoDB: Compressed tables use zlib 1.2.3
2024-03-06 16:22:29 4768 [Note] InnoDB: Not using CPU crc32 instructions
2024-03-06 16:22:29 4768 [Note] InnoDB: Initializing buffer pool, size = 1.0G
2024-03-06 16:22:29 4768 [Note] InnoDB: Completed initialization of buffer pool
2024-03-06 16:22:29 4768 [Note] InnoDB: Highest supported file format is Barracuda.
2024-03-06 16:22:29 4768 [Note] InnoDB: The log sequence numbers 23829460923 and 23829460923 in ibdata files do not match the log sequence number 23868725156 in the ib_logfiles!
2024-03-06 16:22:29 4768 [Note] InnoDB: Database was not shutdown normally!
2024-03-06 16:22:29 4768 [Note] InnoDB: Starting crash recovery.
2024-03-06 16:22:29 4768 [Note] InnoDB: Reading tablespace information from the .ibd files…
2024-03-06 16:22:29 4768 [Note] InnoDB: Restoring possible half-written data pages
2024-03-06 16:22:29 4768 [Note] InnoDB: from the doublewrite buffer…
2024-03-06 16:22:29 4768 [Note] InnoDB: 128 rollback segment(s) are active.
2024-03-06 16:22:29 4768 [Note] InnoDB: Waiting for purge to start
2024-03-06 16:22:29 4768 [Note] InnoDB: 5.6.11 started; log sequence number 23868725156
2024-03-06 16:22:29 4768 [Note] Server hostname (bind-address): '
’; port: 3306
2024-03-06 16:22:29 4768 [Note] IPv6 is available.
2024-03-06 16:22:29 4768 [Note] - ‘::’ resolves to ‘::’;
2024-03-06 16:22:29 4768 [Note] Server socket created on IP: ‘::’.
2024-03-06 16:22:29 4768 [Note] Event Scheduler: Loaded 0 events
2024-03-06 16:22:29 4768 [Note] MySQL: ready for connections.
Version: ‘5.6.11’ socket: ‘’ port: 3306 MySQL Community Server (GPL)
2024-03-07 15:48:46 144 [Note] Plugin ‘FEDERATED’ is disabled.
2024-03-07 15:48:46 144 [Note] InnoDB: The InnoDB memory heap is disabled
2024-03-07 15:48:46 144 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2024-03-07 15:48:46 144 [Note] InnoDB: Compressed tables use zlib 1.2.3
2024-03-07 15:48:46 144 [Note] InnoDB: Not using CPU crc32 instructions
2024-03-07 15:48:46 144 [Note] InnoDB: Initializing buffer pool, size = 1.0G
2024-03-07 15:48:46 144 [Note] InnoDB: Completed initialization of buffer pool
2024-03-07 15:48:46 144 [Note] InnoDB: Highest supported file format is Barracuda.
2024-03-07 15:48:46 144 [Note] InnoDB: The log sequence numbers 23829460923 and 23829460923 in ibdata files do not match the log sequence number 23878605890 in the ib_logfiles!
2024-03-07 15:48:46 144 [Note] InnoDB: Database was not shutdown normally!
2024-03-07 15:48:46 144 [Note] InnoDB: Starting crash recovery.
2024-03-07 15:48:46 144 [Note] InnoDB: Reading tablespace information from the .ibd files…
2024-03-07 15:48:46 144 [Note] InnoDB: Restoring possible half-written data pages
2024-03-07 15:48:46 144 [Note] InnoDB: from the doublewrite buffer…
2024-03-07 15:48:47 144 [Note] InnoDB: 128 rollback segment(s) are active.
2024-03-07 15:48:47 144 [Note] InnoDB: Waiting for purge to start
2024-03-07 15:48:47 144 [Note] InnoDB: 5.6.11 started; log sequence number 23878605890
2024-03-07 15:48:47 144 [Note] Server hostname (bind-address): ‘'; port: 3306
2024-03-07 15:48:47 144 [Note] IPv6 is available.
2024-03-07 15:48:47 144 [Note] - ‘::’ resolves to ‘::’;
2024-03-07 15:48:47 144 [Note] Server socket created on IP: ‘::’.
2024-03-07 15:48:47 144 [Note] Event Scheduler: Loaded 0 events
2024-03-07 15:48:47 144 [Note] MySQL: ready for connections.
Version: ‘5.6.11’ socket: ‘’ port: 3306 MySQL Community Server (GPL)
2024-03-08 08:53:38 3332 [Note] Plugin ‘FEDERATED’ is disabled.
2024-03-08 08:53:38 3332 [Note] InnoDB: The InnoDB memory heap is disabled
2024-03-08 08:53:38 3332 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2024-03-08 08:53:38 3332 [Note] InnoDB: Compressed tables use zlib 1.2.3
2024-03-08 08:53:38 3332 [Note] InnoDB: Not using CPU crc32 instructions
2024-03-08 08:53:38 3332 [Note] InnoDB: Initializing buffer pool, size = 1.0G
2024-03-08 08:53:38 3332 [Note] InnoDB: Completed initialization of buffer pool
2024-03-08 08:53:38 3332 [Note] InnoDB: Highest supported file format is Barracuda.
2024-03-08 08:53:38 3332 [Note] InnoDB: The log sequence numbers 23829460923 and 23829460923 in ibdata files do not match the log sequence number 23878621736 in the ib_logfiles!
2024-03-08 08:53:38 3332 [Note] InnoDB: Database was not shutdown normally!
2024-03-08 08:53:38 3332 [Note] InnoDB: Starting crash recovery.
2024-03-08 08:53:38 3332 [Note] InnoDB: Reading tablespace information from the .ibd files…
2024-03-08 08:53:39 3332 [Note] InnoDB: Restoring possible half-written data pages
2024-03-08 08:53:39 3332 [Note] InnoDB: from the doublewrite buffer…
2024-03-08 08:53:39 3332 [Note] InnoDB: 128 rollback segment(s) are active.
2024-03-08 08:53:39 3332 [Note] InnoDB: Waiting for purge to start
2024-03-08 08:53:39 3332 [Note] InnoDB: 5.6.11 started; log sequence number 23878621736
2024-03-08 08:53:39 3332 [Note] Server hostname (bind-address): '
’; port: 3306
2024-03-08 08:53:39 3332 [Note] IPv6 is available.
2024-03-08 08:53:39 3332 [Note] - ‘::’ resolves to ‘::’;
2024-03-08 08:53:39 3332 [Note] Server socket created on IP: ‘::’.
2024-03-08 08:53:39 3332 [Note] Event Scheduler: Loaded 0 events
2024-03-08 08:53:39 3332 [Note] MySQL: ready for connections.
Version: ‘5.6.11’ socket: ‘’ port: 3306 MySQL Community Server (GPL)
2024-03-08 17:34:43 5052 [Note] Plugin ‘FEDERATED’ is disabled.
2024-03-08 17:34:43 5052 [Note] InnoDB: The InnoDB memory heap is disabled
2024-03-08 17:34:43 5052 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2024-03-08 17:34:43 5052 [Note] InnoDB: Compressed tables use zlib 1.2.3
2024-03-08 17:34:43 5052 [Note] InnoDB: Not using CPU crc32 instructions
2024-03-08 17:34:43 5052 [Note] InnoDB: Initializing buffer pool, size = 1.0G
2024-03-08 17:34:43 5052 [Note] InnoDB: Completed initialization of buffer pool
2024-03-08 17:34:43 5052 [Note] InnoDB: Highest supported file format is Barracuda.
2024-03-08 17:34:43 5052 [Note] InnoDB: The log sequence numbers 23829460923 and 23829460923 in ibdata files do not match the log sequence number 23884015775 in the ib_logfiles!
2024-03-08 17:34:43 5052 [Note] InnoDB: Database was not shutdown normally!
2024-03-08 17:34:43 5052 [Note] InnoDB: Starting crash recovery.
2024-03-08 17:34:43 5052 [Note] InnoDB: Reading tablespace information from the .ibd files…
2024-03-08 17:34:43 5052 [Note] InnoDB: Restoring possible half-written data pages
2024-03-08 17:34:43 5052 [Note] InnoDB: from the doublewrite buffer…
2024-03-08 17:34:44 5052 [Note] InnoDB: 128 rollback segment(s) are active.
2024-03-08 17:34:44 5052 [Note] InnoDB: Waiting for purge to start
2024-03-08 17:34:44 5052 [Note] InnoDB: 5.6.11 started; log sequence number 23884015775
2024-03-08 17:34:44 5052 [Note] Server hostname (bind-address): ‘'; port: 3306
2024-03-08 17:34:44 5052 [Note] IPv6 is available.
2024-03-08 17:34:44 5052 [Note] - ‘::’ resolves to ‘::’;
2024-03-08 17:34:44 5052 [Note] Server socket created on IP: ‘::’.
2024-03-08 17:34:44 5052 [Note] Event Scheduler: Loaded 0 events
2024-03-08 17:34:44 5052 [Note] MySQL: ready for connections.
Version: ‘5.6.11’ socket: ‘’ port: 3306 MySQL Community Server (GPL)
2024-03-14 12:04:04 3276 [Note] Plugin ‘FEDERATED’ is disabled.
2024-03-14 12:04:04 3276 [Note] InnoDB: The InnoDB memory heap is disabled
2024-03-14 12:04:04 3276 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2024-03-14 12:04:04 3276 [Note] InnoDB: Compressed tables use zlib 1.2.3
2024-03-14 12:04:04 3276 [Note] InnoDB: Not using CPU crc32 instructions
2024-03-14 12:04:04 3276 [Note] InnoDB: Initializing buffer pool, size = 1.0G
2024-03-14 12:04:04 3276 [Note] InnoDB: Completed initialization of buffer pool
2024-03-14 12:04:04 3276 [Note] InnoDB: Highest supported file format is Barracuda.
2024-03-14 12:04:04 3276 [Note] InnoDB: The log sequence numbers 23829460923 and 23829460923 in ibdata files do not match the log sequence number 23920667293 in the ib_logfiles!
2024-03-14 12:04:04 3276 [Note] InnoDB: Database was not shutdown normally!
2024-03-14 12:04:04 3276 [Note] InnoDB: Starting crash recovery.
2024-03-14 12:04:04 3276 [Note] InnoDB: Reading tablespace information from the .ibd files…
2024-03-14 12:04:05 3276 [Note] InnoDB: Restoring possible half-written data pages
2024-03-14 12:04:05 3276 [Note] InnoDB: from the doublewrite buffer…
2024-03-14 12:04:06 3276 [Note] InnoDB: 128 rollback segment(s) are active.
2024-03-14 12:04:06 3276 [Note] InnoDB: Waiting for purge to start
2024-03-14 12:04:06 3276 [Note] InnoDB: 5.6.11 started; log sequence number 23920667293
2024-03-14 12:04:06 3276 [Note] Server hostname (bind-address): '
’; port: 3306
2024-03-14 12:04:06 3276 [Note] IPv6 is available.
2024-03-14 12:04:06 3276 [Note] - ‘::’ resolves to ‘::’;
2024-03-14 12:04:06 3276 [Note] Server socket created on IP: ‘::’.
2024-03-14 12:04:06 3276 [Note] Event Scheduler: Loaded 0 events
2024-03-14 12:04:06 3276 [Note] MySQL: ready for connections.
Version: ‘5.6.11’ socket: ‘’ port: 3306 MySQL Community Server (GPL)
2024-03-14 12:05:25 3276 [Note] MySQL: Normal shutdown

2024-03-14 12:05:25 3276 [Note] Giving 0 client threads a chance to die gracefully
2024-03-14 12:05:25 3276 [Note] Event Scheduler: Purging the queue. 0 events
2024-03-14 12:05:25 3276 [Note] Shutting down slave threads
2024-03-14 12:05:25 3276 [Note] Forcefully disconnecting 0 remaining clients
2024-03-14 12:05:25 3276 [Note] Binlog end
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘partition’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘PERFORMANCE_SCHEMA’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_SYS_DATAFILES’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_SYS_TABLESPACES’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_SYS_FOREIGN_COLS’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_SYS_FOREIGN’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_SYS_FIELDS’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_SYS_COLUMNS’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_SYS_INDEXES’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_SYS_TABLESTATS’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_SYS_TABLES’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_FT_INDEX_TABLE’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_FT_INDEX_CACHE’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_FT_CONFIG’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_FT_BEING_DELETED’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_FT_DELETED’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_FT_DEFAULT_STOPWORD’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_METRICS’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_BUFFER_POOL_STATS’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_BUFFER_PAGE_LRU’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_BUFFER_PAGE’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_CMP_PER_INDEX_RESET’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_CMP_PER_INDEX’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_CMPMEM_RESET’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_CMPMEM’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_CMP_RESET’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_CMP’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_LOCK_WAITS’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_LOCKS’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘INNODB_TRX’
2024-03-14 12:05:25 3276 [Note] Shutting down plugin ‘InnoDB’
2024-03-14 12:05:25 3276 [Note] InnoDB: FTS optimize thread exiting.
2024-03-14 12:05:25 3276 [Note] InnoDB: Starting shutdown…
2024-03-14 12:05:26 3276 [Note] InnoDB: Shutdown completed; log sequence number 23920668219
2024-03-14 12:05:26 3276 [Note] Shutting down plugin ‘BLACKHOLE’
2024-03-14 12:05:26 3276 [Note] Shutting down plugin ‘ARCHIVE’
2024-03-14 12:05:26 3276 [Note] Shutting down plugin ‘MRG_MYISAM’
2024-03-14 12:05:26 3276 [Note] Shutting down plugin ‘MyISAM’
2024-03-14 12:05:26 3276 [Note] Shutting down plugin ‘MEMORY’
2024-03-14 12:05:26 3276 [Note] Shutting down plugin ‘CSV’
2024-03-14 12:05:26 3276 [Note] Shutting down plugin ‘sha256_password’
2024-03-14 12:05:26 3276 [Note] Shutting down plugin ‘mysql_old_password’
2024-03-14 12:05:26 3276 [Note] Shutting down plugin ‘mysql_native_password’
2024-03-14 12:05:26 3276 [Note] Shutting down plugin ‘binlog’
2024-03-14 12:05:26 3276 [Note] MySQL: Shutdown complete

@yunus.uyanik

complete logs pasted above

Hi @osamamansoor

Seems you are running on Windows yes? Unfortunately Percona doesn’t provide Windows builds so our ability to troubleshoot Exceptions on Windows is limited.

This is a message that an external process to MySQL shut it down. Do you have perhaps a scheduled job or Event to restart the database?

FYI MySQL 5.6 was End of Life February 2021. You should consider upgrading at some point

I would suggest you look at adding some monitoring to the server. If you don’t have anything deployed yet may I recommend PMM as then you’ll be able to better understand the activity within the database, and perhaps from some graphs we can point you in the right direction. Perhaps we are exhausting resources on the host (not enough RAM) and then mysqld.exe aborts.

@Michael_Coburn

Thanks for your response.
Yes, This is Windows Server.
No scheduled activity to down MySql as this interruption is the main reason for our concern.
OK we will consider updating MySQL
Do you think RAM can be cause to reboot abort down of MySQL ?