I am facing this issue when importing an SQL file with a table with JSON column.
The database has
Encoding: utf8mb4
Collation: utf8mb4_unicode_ci
Here's the table with the json column:
CREATE TABLE `tracking_data` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `route` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `data` json NOT NULL,
  `user_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
I have read answers from this question on stack overflow which suggest the table must be on utf8mb4. Mine's already, but I am facing this issue still. 
This is error is still thrown:
Line XXX: Cannot create a JSON value from a string with CHARACTER SET 'binary'.
When I run show session variables like 'char%';: 
    Variable_name   Value 
character_set_client    utf8mb4 
character_set_connection    utf8mb4 
character_set_database  utf8mb4 
character_set_filesystem    binary 
character_set_results   utf8mb4 
character_set_server    latin1 
character_set_system    utf8 
character_sets_dir  /usr/share/mysql/charsets/ 
How can I fix this? Thanks!
 
    