Final answer:
To determine custom MySQL Server options, check the configuration files against default values or use SHOW GLOBAL VARIABLES to compare the current settings with defaults.
Step-by-step explanation:
To determine which MySQL Server options were set to custom values, you can use two methods:
- Check the configuration files in the order in which they are read by the MySQL Server and compare them with default values to see if any custom settings have been applied.
- Use the SHOW GLOBAL VARIABLES command to get a list of all the current variables along with their values and then compare them to the default values, usually available in the MySQL documentation or by installing a fresh MySQL server with default settings.
These approaches will allow you to effectively identify any variables that have been changed from their default settings.