Backup mysql baze

Interesuje me kako uraditi backup baze podataka sa jednog racunara na drugi?

jer su racunala u mrezi ili su baze na serverima povezanih preko interneta?

Ako nisu, instaliras na obadva npr. mysqldumper ili phpadmin.
Napravis dump(backup) stavis na stick i jednostavno sa stika napravis na drugom racunali restore. Znaci otvoris program i kazes backup i pokazes mu na stiku.
Za mrezu je malo drugacije, pa reci ako te i to interesira.

Internet tu mislim ovsno o hostingu ima raznih rjesenja, prvo obavezno hostinzi moraju to podrzavati. za dalje ako te interesira vici.

PS projeri u svom cpanelu ili plesk ili sta vec imas postoji li ta mogucnost u postavkama mysql baze

Poz

Racunari su u mrezi.
Trebam da prebacim bazu sa jednog na drugi racunar koristeci komandnu liniju. Znaci bez upotrebe ikakvih drugih programa.

Moze li se to izvesti samo upotrebom funkcije mysqldump?

uf tu sam malo tanji. Ja bi to najjednostavnije napravio share folder u njega spremio dump i onda na racunallu di restoras samo povokao taj dump iz share foldera.

"
The way that is described above is indeed a very sloppy way!

If you have access to the other box from that machine (if they’re on
the same network/ on the 'net) you can use the following - this
essentially pipes the output from mysqldump directly into the other
databased - very handy indeed - instead of just dumping it into a file
and then manually ftp it to the other box the mysql < … it in.

The first host is where you want to copy FROM and the second is where
its going TO.

mysqldump --opt --compress --user=USERHERE --password=PWHERE
–host=SOURCE.HOST.HERE SOURCE_DB_NAME | mysql --user=USERHERE
–password=PWHERE --host=TARGET.HOST.HERE -D TARGET_DB_NAME -C
TARGET_DB_NAME

"