Below error is observed as local_infile is disabled in MnR.
WARNING -- [2025-03-20 07:07:51 GMT] -- SqlStorageConnector::handleCommitError(): Error encountered while pushing file 'property_17424544707451562431130.mysql' into the table 'data_property' (retry #0)!
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Loading local data is disabled; this must be enabled on both the client and server sides
Watch4net/MnR - 7.x
MnR framework uses local_infile feature of MySQL to load data files between APG Backend and MySQL components. The local_infile parameter is having impact on these two modules in terms of data loading and data persistent.
With MySQL 8.x.x., the local_infile parameter is disabled by default and is impacting the Backend module if not enabled as designed
In 2 ways, local_infile can be enabled.
show global variables like 'local_infile';
SET GLOBAL local_infile=1;
<APG_BASE>/Databases/MySQL/Default.
./manage-modules.sh service start mysql Default