Done!

Syntax error or access violation: 1118 The size of BLOB/TEXT data inserted in one transaction is greater than 10% of redo log size. Increase the redo log size using innodb_log_file_size


Solution:

Increase the Innodb_log_file_size to a bigger value. Generally the rule of thumb is to increase the Innodb_log_file_size to 10 times the size of the plugin.

So for this open /etc/my.cnf and change the parameters below accordingly

[mysqld]
...
innodb_log_file_size=256M
...

Restart the server: sudo service mysqld restart