I want to back my DB`s up the correct way but I`m a bit of a tool so I have some questions........
Goal is to figure out backing up using Cron.
This one is just a small forum that I use for as a personal online catolouge for my real job.......The main forum has a DB of about 1Gig, hence I want to get it right.
Ive figured this much out..I`m using SSH with Putty.
mysqldump --opt -Q -u dbusername -p databasename > backupname.sql
That backs the DB up to the root diectory, right?
I`m figuring that....
mysqldump --opt -Q -u dbusername -p databasename > /path/to/backupname.sql
will take it to a specfic directory.....say.....backups.
My problem is I don't know what /path/to/............means
Can someone tell me what that means
I think possibly /path=site name and /to means the directory you want to put it in......namely backups
Like I said the goal is to Cron the backups daily but if I don`t understand this part properly I`m no hope to achieve that
Can someone point me in the right direction.
Goal is to figure out backing up using Cron.
This one is just a small forum that I use for as a personal online catolouge for my real job.......The main forum has a DB of about 1Gig, hence I want to get it right.
Ive figured this much out..I`m using SSH with Putty.
mysqldump --opt -Q -u dbusername -p databasename > backupname.sql
That backs the DB up to the root diectory, right?
I`m figuring that....
mysqldump --opt -Q -u dbusername -p databasename > /path/to/backupname.sql
will take it to a specfic directory.....say.....backups.
My problem is I don't know what /path/to/............means
Can someone tell me what that means

I think possibly /path=site name and /to means the directory you want to put it in......namely backups
Like I said the goal is to Cron the backups daily but if I don`t understand this part properly I`m no hope to achieve that
Can someone point me in the right direction.
Comment