Importing the data
The goal now is to create an applicable table in the database and the rows associated with that table. The necessary files are provided in the repository:
sudo mysqldump –add-drop-table -u root -p banking > banking.sql
Copy the file to the destination server:
mysql -u root -p banking < banking.sql
Then follow the earlier steps to make sure that bankinguser
exists and has the correct permissions.