Re: dump and remote file fetching
What I do : Allow ssh access only using key "PubkeyAuthentication yes" Allow root access Create a root ssh Pubkey Automate the access using any script based on ssh… If you want to be more restrictive, you can deploy a firewall localy on your server and limit ssh access to one or more selected IPs. Bye // Le 28 mai 08 à 07:53, Zbigniew Szalbot a écrit : Hi there, Need a word of advice. I use dump to backup my data. All fine. Dump saves compressed *.bz2 files. Nice. All I need now is a way to copy them from the server to a remote backup machine. The problem I am facing is that bz2 files are owned by root:wheel. So if I use scp [EMAIL PROTECTED]:/path/to/*.bz2, it does not have sufficient permissions to fetch the files. I can use sudo, but then I need to interactively type the password, which I would like to avoid. Can you suggest simple ways of getting around this? I don't mind using special tools for the job, especially if they are not too complicated... :) Before firing this email off I took a look at rsync and it seems easy enough to do just what I need but still many thanks for suggestions! I have been very happy with rsnapshot. Take that for a spin and see how it works for you I have taken a look at rsnapshot but it seems I am left to deal with the same problem: From their page: In addition to full paths on the local filesystem, you can also backup remote systems using rsync over ssh. If you have ssh installed and enabled (via the cmd_ssh parameter), you can specify a path like: backup [EMAIL PROTECTED]:/etc/ example.com/ This behaves fundamentally the same way, but you must take a few extra things into account. a/ The ssh daemon must be running on example.com b/ You must have access to the account you specify the remote machine, in this case the root user on example.com. I do not allow remote root login so what are my options in that case? How do you deal with such a scenario? Many thanks! -- Zbigniew Szalbot www.lc-words.com ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED] " Gregober ---> PGP ID --> 0x1BA3C2FD bsd @at@ todoo.biz P "Please consider your environmental responsibility before printing this e-mail" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: dump and remote file fetching
Zbigniew Szalbot wrote: Hello, Need a word of advice. I use dump to backup my data. All fine. Dump saves compressed *.bz2 files. Nice. All I need now is a way to copy them from the server to a remote backup machine. The problem I am facing is that bz2 files are owned by root:wheel. So if I use scp [EMAIL PROTECTED]:/path/to/*.bz2, it does not have sufficient permissions to fetch the files. I can use sudo, but then I need to interactively type the password, which I would like to avoid. Add user "user" to a group "xyz". Arrange for dump files to get group "xyz" and permissions g+w. You can probably do this by changing the group of the directory the dumps are written into and setting the sticky bit. Can you suggest simple ways of getting around this? I don't mind using special tools for the job, especially if they are not too complicated... :) Before firing this email off I took a look at rsync and it seems easy enough to do just what I need but still many thanks for suggestions! ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: dump and remote file fetching
On Wed, May 28, 2008 at 9:53 AM, Zbigniew Szalbot <[EMAIL PROTECTED]> wrote: > Hi there, > > Need a word of advice. I use dump to backup my data. All fine. Dump saves >>> compressed *.bz2 files. Nice. All I need now is a way to copy them from the >>> server to a remote backup machine. The problem I am facing is that bz2 files >>> are owned by root:wheel. So if I use scp [EMAIL PROTECTED]:/path/to/*.bz2, >>> it does not have sufficient permissions to fetch the files. I can use sudo, >>> but then I need to interactively type the password, which I would like to >>> avoid. >>> >>> Can you suggest simple ways of getting around this? I don't mind using >>> special tools for the job, especially if they are not too complicated... :) >>> >>> Before firing this email off I took a look at rsync and it seems easy >>> enough to do just what I need but still many thanks for suggestions! >>> >> >> I have been very happy with rsnapshot. Take that for a spin and see how >> it works for you >> > > I have taken a look at rsnapshot but it seems I am left to deal with the > same problem: > > From their page: > In addition to full paths on the local filesystem, you can also backup > remote systems using rsync over ssh. If you have ssh installed and enabled > (via the cmd_ssh parameter), you can specify a path like: > > backup [EMAIL PROTECTED]:/etc/ example.com/ > > This behaves fundamentally the same way, but you must take a few extra > things into account. > > a/ The ssh daemon must be running on example.com > b/ You must have access to the account you specify the remote machine, in > this case the root user on example.com. > > I do not allow remote root login so what are my options in that case? How > do you deal with such a scenario? Many thanks! HI ZS, I used to do something like this with a very simple shell script, using ftp. In the script, I was simply checking the filename, extracting the date from it, comparing the date with today's date, and pushing into a nother server all files that are dated yesterday. These were log files created using another script, which would create them like main.MMDD.log. IIRC, ftp relies on a file ~/.netrc which can have the destination hostname, username and password. With these, ftp will be automated - no need to enter any logon credentials. Please read the man page for ftp on how to use the netrc file or the ~/.netrc If you need more assistance, find me off list:-) Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "Oh My God! They killed init! You Bastards!" --from a /. post ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: dump and remote file fetching
Hi there, Need a word of advice. I use dump to backup my data. All fine. Dump saves compressed *.bz2 files. Nice. All I need now is a way to copy them from the server to a remote backup machine. The problem I am facing is that bz2 files are owned by root:wheel. So if I use scp [EMAIL PROTECTED]:/path/to/*.bz2, it does not have sufficient permissions to fetch the files. I can use sudo, but then I need to interactively type the password, which I would like to avoid. Can you suggest simple ways of getting around this? I don't mind using special tools for the job, especially if they are not too complicated... :) Before firing this email off I took a look at rsync and it seems easy enough to do just what I need but still many thanks for suggestions! I have been very happy with rsnapshot. Take that for a spin and see how it works for you I have taken a look at rsnapshot but it seems I am left to deal with the same problem: From their page: In addition to full paths on the local filesystem, you can also backup remote systems using rsync over ssh. If you have ssh installed and enabled (via the cmd_ssh parameter), you can specify a path like: backup [EMAIL PROTECTED]:/etc/ example.com/ This behaves fundamentally the same way, but you must take a few extra things into account. a/ The ssh daemon must be running on example.com b/ You must have access to the account you specify the remote machine, in this case the root user on example.com. I do not allow remote root login so what are my options in that case? How do you deal with such a scenario? Many thanks! -- Zbigniew Szalbot www.lc-words.com ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
dump and remote file fetching
Hello, Need a word of advice. I use dump to backup my data. All fine. Dump saves compressed *.bz2 files. Nice. All I need now is a way to copy them from the server to a remote backup machine. The problem I am facing is that bz2 files are owned by root:wheel. So if I use scp [EMAIL PROTECTED]:/path/to/*.bz2, it does not have sufficient permissions to fetch the files. I can use sudo, but then I need to interactively type the password, which I would like to avoid. Can you suggest simple ways of getting around this? I don't mind using special tools for the job, especially if they are not too complicated... :) Before firing this email off I took a look at rsync and it seems easy enough to do just what I need but still many thanks for suggestions! -- Zbigniew Szalbot www.lc-words.com ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"