How do I check my InnoDB settings?

innodb, mysql

Solution

show variables like 'innodb%';

Problem

Is there a MySQL command that I can execute which will show settings such as `innodb_file_format`, or a configuration file which I should check? MySQL version: 5.5.32

Original source