With the error in MySQL:
ERROR: Loading local data is disabled – this must be enabled on both the client and server sides
Review:
mysql> SHOW GLOBAL VARIABLES LIKE ‘local_infile’;
and execute if local_infile is off:
mysql> SET GLOBAL local_infile=1;
Query OK, 0 rows affected (0.00 sec)
Enjoy!!!