skip to Main Content

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

2

Answers


  1. Chosen as BEST ANSWER

    I import the database by Workbench. I am so sorry for response late. I am so sorry.


  2. Using the mysql command line, specifing all the host/port/password requirements.

    mysql -h 61.28.x.x -u root -pxx --port 33066
    

    Then CREATE DATABASE to create a database. use {databasename}; to default to that database.

    Then source {filename} to import.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search