Jump to content
  • 0

Creating Database


Limestone

Question


  • Group:  Members
  • Topic Count:  155
  • Topics Per Day:  0.03
  • Content Count:  647
  • Reputation:   16
  • Joined:  11/21/11
  • Last Seen:  

please teach me how to creating database step by step using putty

Link to comment
Share on other sites

1 answer to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  2223
  • Reputation:   593
  • Joined:  10/26/11
  • Last Seen:  

  1. run PuTTY and login to SSH on your server
  2. type this:
    mysql -h localhost -u root -p


    (If your MySQL host is different, replace localhost with the IP or hostname.)

  3. type your MySQL root password and press Enter
  4. type this and press Enter:
    CREATE DATABASE ragnarok;


    (replace ragnarok with the name you want for your new database)

  5. repeat Step 4 for more databases

Link to comment
Share on other sites

×
×
  • Create New...