When attempting to install a solution kit, for example OAuth Toolkit or Mobile API Gateway, you receive the below error:
"This Solution Kit does not allow overriding of this mapping.
This mapping requires the property “SK_AllowMappingOverride” be set to true by the .skar file author."
To resolve this issue you must increase the value of the MySQL variable: max_allowed_packet
This command can be run at the MySQL prompt to dynamically change the value. Please note this will affect all new connections until a restart occurs.
In the mysql 8 the new default value for max_allowed_packet is 67108864 (64MB)
SET GLOBAL max_allowed_packet = 67108864;
Validate the value by using
show variables like 'max_allowed_packet';
Or set max_allowed_packet to 64M in my.cnf and restart mysql service.
Please note: The value need may be different for each environment and the sample max packet size above is only provided as a guideline. It is best to increase the value gradually as needed. Please refer to your DBA or MySQL documentation for further guidance in refining this to best suit your environment.