Skip to main content

Configuration Options

You can manage instance groups in KakaoCloud MySQL using built-in stored procedures.

caution

This procedure only allows control of the read_only parameter. All other parameters cannot be modified.

Configuration change procedure

This stored procedure allows you to change parameters in a running MySQL instance within a DB engine.

Procedure name

mysql.mnms_set_configuration

Procedure parameters

NameData TypeDescription
p_namevarchar(200)The name of the parameter to change.
p_valuevarchar(200)The new value to set for the parameter.

How to use

CALL mysql.mnms_set_configuration('read_only', 1);

Example

  1. Example of applying to both global and session scopes

    Image

  2. Reconnect to the session and verify

caution

Parameters listed as [non-modifiable parameters] cannot be changed using this procedure.