|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
Upload my Database Mysql on the web ?
Hello,
I have done my database. Everything is working perfectly on my local pc (using easyphp,...). Now on my web hosting, I use a SSH software Secure CRT.. but the thing is that I don't have any idea tu put (upload) my database file from my Hard Disk to the database server... which command to use? mysqldump? I am newbie with the command. I have donne everything with phpmyadmin... but I can't connect to my web server with this one. So I have to use Secure CRT or another SSH soft... Thank you for your help.. |
|
#2
|
|||
|
|||
|
On the command line:
Issue the command: (this is the information on your local pc) mysqldump -u<username> -h<hostname> --password=<yourpassword> <dbname> > backup.sql Now Issue the command: (use the information for your remotely hosted mysql account) mysql -u<username> -h<hostname> --password=<yourpassword> -D<dbname> < backup.sql Make sure the bracket is facing the correct way
__________________
__________________________________________________ _ Wil Moore III, MCP | Integrations Specialist | Senior Consultant Are You Listed...? | DigitallySmooth Inc. |
|
#3
|
|||
|
|||
|
Thx a lot
I ll try that... |
![]() |
| Viewing: Dev Articles Community Forums > Databases > MySQL Development > Upload my Database Mysql on the web ? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|