If you modify the innodb_log_file_size, MySQL will fail to
restart and InnoDB will complain about the size of the changed
log file.
The proper way to increase the innodb_log_file_size:
- shutdown mysql server
- make backup of data and log files
- remove InnoDB log files
- set new value for innodb_log_file_size in my.cnf
- start mysqld
- check error logs to ensure everything went fine.
Also see:
- Choosing proper innodb_log_file_size
- innodb_log_file_size (forum post by Jay Pipes)
- …