It looks like a better week for AAPL stock. After months of decline, an encouraging week once in a while surely helps the psyche!
{ 0 comments }
It looks like a better week for AAPL stock. After months of decline, an encouraging week once in a while surely helps the psyche!
{ 0 comments }
My MySql server had the following lines in the error log:
121119 22:50:57 mysqld started 121119 22:50:57 InnoDB: Started; log sequence number 0 43655 121119 22:50:57 [ERROR] Binlog has bad magic number; It's not a binary log file that can be used by this version of MySQL 121119 22:50:57 [ERROR] Can't init tc log 121119 22:50:57 [ERROR] Aborting
I fixed the problem by renaming the mysql-bin.index file:
mv mysql-bin.index mysql-bin.index-corrupt
This essentially takes the corrupt mysql-bin.index file out of service, causing mysql to create new one. All I can figure is that the original one got corrupted somehow. I really don’t have time to poke around and find out why today. Hope this helps somebody.
{ 0 comments }