In this section, we are going to cover server options, system variable, and status variables available in MySQL 8 on startup.
- Server option: As described in the previous chapter MySQL 8 uses the option file and command line arguments to set startup parameters. Refer to https://dev.mysql.com/doc/refman/8.0/en/mysqld-option-tables.html for details on all the available options. mysqld accepts many command options. For a brief summary, execute the following command:
mysqld --help
To see the full list, use the following command:
mysqld –verbose --help
- Server System variable: The MySQL server manages many system variables. MySQL provides the default value for each system variable. System variables ...