MySQL 8 server administration
There are many operating parameters that available with MySQL 8, and among them all the required parameters are set by default during the installation process. After installation, you are allowed to change the option file by removing or adding a comment sign (#
) at the start of the line of a specific parameter setting. The user is also allowed to set parameters at runtime by using command line arguments or the option file.
Server options and different types of variables
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...