I am trying to import a database from a vBulletin 4 server to another server, on MySQL 5.7. The goal here to have the database ready for XenForo to import it using its add on.
When I launch the import
I get
ERROR 1227 (42000) at line 11055: Access denied; you need (at least one of) the SUPER privilege(s) for this operation
Anyone encounter the same problem?
It seems that I could grant the SUPER permission with
but I don't know the downside of this.
When I launch the import
mysql -u user -p vb_db < vb_db_backup.sql
I get
ERROR 1227 (42000) at line 11055: Access denied; you need (at least one of) the SUPER privilege(s) for this operation
Anyone encounter the same problem?
It seems that I could grant the SUPER permission with
GRANT SUPER ON *.* TO user@'localhost' IDENTIFIED BY 'password';
but I don't know the downside of this.