ERROR 1115 (42000): Unknown character set: 'utf8mb4'
问题 I have a MySQL dump, which I tried to restore with: mysql -u"username" -p"password" --host="127.0.0.1" mysql_db < mysql_db However, this threw an error: ERROR 1115 (42000) at line 3231: Unknown character set: 'utf8mb4' This is lines 3231-3233: /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_general_ci */ ; I am using MySQL 5.1.69. How can I solve this error? 回答1: Your version does not support that