Not sure if this is the right place, but I thought I should start here.
I am receiving a lot of
101115 14:56:38 InnoDB: Error: page 2568 log sequence number 24 4163333249
InnoDB: is in the future! Current system log sequence number 0 126155327.
InnoDB: Your database may be corrupt or you may have copied the InnoDB
InnoDB: tablespace but not the InnoDB log files. See
InnoDB: http://dev.mysql.com/doc/refman/5.1/en/forcing-recovery.html
InnoDB: for more information.
Now, I am receiving this because I completed the following:
We had two sql databases, due to a previous issue as following:
/var/mysql
/var/mysql/new
/var/mysql-logs
/var/mysql-logs/new
The current/in use data is in the /new directories. I shutdown the server, and moved removed the old /var/mysql and moved the /var/mysql/new to /var/mysql
I then restarted the server, but I changed the config (my.conf)
innodb_log_group_home_dir = /var/mysql-logs/new
to
innodb_log_group_home_dir = /var/mysql-logs
This means, that the data from the new dir is now using old/wrong mysql-logs... as I forgot to move the ib_logfile* files from the /var/mysql-logs/new directory into /var/mysql-logs.
This was done 9 hours ago. The moves were completed while mysql server was shutdown.
My question is, do I have a problem? The database functions, and has been functioning all day. It must be working ok otherwise my customers would be complaining. So selects are working and inserts are happening.. It is just this log and the sequence numbers, as I used the wrong file.... I am unsure what to do and what could be wrong/is wrong.
Most other posts assume you have some corruption from a failing disk or abnormal shutdown. I had a normal shutdown and all was well, I am confident there is none due to how it all happened.
I am receiving a lot of
101115 14:56:38 InnoDB: Error: page 2568 log sequence number 24 4163333249
InnoDB: is in the future! Current system log sequence number 0 126155327.
InnoDB: Your database may be corrupt or you may have copied the InnoDB
InnoDB: tablespace but not the InnoDB log files. See
InnoDB: http://dev.mysql.com/doc/refman/5.1/en/forcing-recovery.html
InnoDB: for more information.
Now, I am receiving this because I completed the following:
We had two sql databases, due to a previous issue as following:
/var/mysql
/var/mysql/new
/var/mysql-logs
/var/mysql-logs/new
The current/in use data is in the /new directories. I shutdown the server, and moved removed the old /var/mysql and moved the /var/mysql/new to /var/mysql
I then restarted the server, but I changed the config (my.conf)
innodb_log_group_home_dir = /var/mysql-logs/new
to
innodb_log_group_home_dir = /var/mysql-logs
This means, that the data from the new dir is now using old/wrong mysql-logs... as I forgot to move the ib_logfile* files from the /var/mysql-logs/new directory into /var/mysql-logs.
This was done 9 hours ago. The moves were completed while mysql server was shutdown.
My question is, do I have a problem? The database functions, and has been functioning all day. It must be working ok otherwise my customers would be complaining. So selects are working and inserts are happening.. It is just this log and the sequence numbers, as I used the wrong file.... I am unsure what to do and what could be wrong/is wrong.
Most other posts assume you have some corruption from a failing disk or abnormal shutdown. I had a normal shutdown and all was well, I am confident there is none due to how it all happened.