My system team send me an information about mysql server container as follow
- Version: MySQL 5.7
- ip: 61.28.x.x
- port: 33066
- username root: root
- pass root: xx
How I create MySQL database and import database file on it?
Thanks
My system team send me an information about mysql server container as follow
How I create MySQL database and import database file on it?
Thanks
2
Answers
I import the database by Workbench. I am so sorry for response late. I am so sorry.
Using the
mysql
command line, specifing all the host/port/password requirements.Then CREATE DATABASE to create a database.
use {databasename};
to default to that database.Then source {filename} to import.