If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
Hi Kali,
I saw you posting in another webhosts forum just recently where you had signed up, you were saying something like you had posted 6,000 times at the host previous to that.
The forums around here are pretty quiet, but I think you will love the rock solid hosting. Part of me likes to tell people about my great experience here (7 months), another part of me likes to keep it to myself because too much success often causes failure, if you know what I mean.
But, Andrew runs a really tight ship, and I predict success and long hosting here!
Hi Kali,
I saw you posting in another webhosts forum just recently where you had signed up, you were saying something like you had posted 6,000 times at the host previous to that.
Well, you have only 7,998 to go. You are well on your way.
I think the only hidden cost at Dathorn is that you have to pay seperately for your backkup. But the good news is that you have ftp access to your backup so it is much more flexible than the average backup you would get.
But the extra cost for the backup motivated me to buy a cheap PC for home and do my own incremental backups. Which is even more flexible. So its win win win for me.
Welcome to Dathorn, I think you will enjoy it here , I have been here for over 2 yrs and it's almost a dream.....minimal issues so the stress leve l is good .... can concentrate on other things.....
It's really nice to see you here, Karen. I have been here for almost a year, everything works great for the price I paid so far. I sure you will enjoy their service here, too. I used to have many small reseller accounts everywhere for different projects of my company, but I closed most of them after years of experiences and finally remains some accounts in "where we from" and in here now. All the best, Karen.
But the extra cost for the backup motivated me to buy a cheap PC for home and do my own incremental backups. Which is even more flexible. So its win win win for me.
Big Dog,
Would you be able to explain how you set this up? I have a linux server at my house that I use for FTPing backups of my important MySQL backups (done via a PHP script).
How have you set up your automatic incremental file backups to be sent to your own pc?
Also, this counts in your bandwidth usage for the month, correct?
James wrote:
>Would you be able to explain how you set this up? I have a linux server at my house that I use for FTPing backups of my important MySQL backups (done via a PHP script).
For mysql, I use a php script which I learned about in the Dathorn forums, probably the same one you use.
How have you set up your automatic incremental file backups to be sent to your own pc?
I ended up using lftp . If a file changes, it will re-download the entire file again, but if the file has not changed, it will not re-download it. I have scripts which do all the work. I fire them off manually because they are part of a larger manual process, but you could fire them off using Cron.
I experiemented with rsync which was the other great choice, but after I download the files (mostly mp3s), I then push them to another, cheaper server on the internet, and I did not have shell access to it, so I fell into using lftp since it does not require shell access.
Andrew uses rsync for his backup system, so that gives you an idea of how good rsync is. (Very good).
James wrote:
>Also, this counts in your bandwidth usage for the month, correct?
Yes. But since it's an incremental backup this is not so bad at all. (I defined my maybe misleading definition of "incremental" above.)
So the end result is that I have a copy of all my files (html, php, mp3, and mysql database locally on my debian box, and I also have a copy of my mp3s elsewhere on cheaper storage and bandwidth on the internet.
Every once in a while I dump my local hardrive onto another one which I keep disconnected from the computer. I use those removable drive bays.
lftp is very powerful. It has a "mirror" command where you just tell it the directory on the remote machine and the directory on the local machine, and the direction, and then it "mirrors" it, not bothering to copy over files that were previously copied and are unchanged. It took me a bit of time to figure out lftp's scripting language because samples of it were hard to come by. But I'd be glad to pass them onto you should you be interested.
Hi James,
That location sounds right. Just to re-cap, I pull the files from dathorn onto my local Linux box (this is so I can copy it again and move the hard drive off the machine).
And then I push the files back out onto the internet (because they are mp3s which I still want to be able to access.
It was not real easy finding the scripts online, but here they are!
To receive the files, from my local linux box I type
lftp -f getmusic.lftp
Here is the contents of getmusic.lftp
-------------------------------------------------
open -u MyLoginName,MyTopSecretPassword mydom.com
mirror -vvv public_html/songs /home/backup/online/public_html/songs
------------------------------------------------
And then I push the files back to cheaper storage on the internet with:
lftp -f putmusic.lftp
I can't say enough about lftp. If it can't connect. I keeps trying. If it copies half the files and is stopped, I restart it, it checks where it was and restarts at the right place.
Comment