Rsync Backups on HostGator VPS


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Rsync Backups on HostGator VPS
# 1  
Old 10-05-2010
Question Rsync Backups on HostGator VPS

I'm wanting to do remote backups of the entire /home/* directory structure, which is where HG puts all www files and sets the user and group independently of any other user ( so /home/user1 will be using group user1, instead of a generic apache group)

The problem I'm running into is that only root has access to everything in /home

so I have a few options, and none of them are making my tummy happy.

1) ssh in with keys as root and perform rsync backups (I'd rather just turn off root logins via ssh)
2) sudo in as rsyncuser via ssh... problem? this error: sudo: sorry, you must have a tty to run sudo
I can disable the requiretty in the sudoers file.. but I suspect that's not too secure...
3) go through the hassle of getting all the user directories to be group readable... and make sure that the rysncuser is part of each of the groups for each user... and pray that in the process, it doesn't jack with any sites.
4) just backup each user independently, creating new keys for each user, manageing the rotations individually, and leaving it up to chance that when a new user is added that the backup scripts are updated as well.


Are there any better options than this? If not, which of the 4 is my best bet?

Thanks

Matt
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. IP Networking

1 VPS with 2 IP addresses. How to make them independent?

Code: auto ens3 iface ens3 inet static address 46.xx.xxx.1x7 netmask 255.255.252.0 broadcast 46.38.xxx.255 gateway 46.xx.xxx.1 auto ens3:0 iface ens3:0 inet static address 188.xx.xx.xx5 netmask 255.255.255.255 I want the... (1 Reply)
Discussion started by: oshihari
1 Replies

2. Shell Programming and Scripting

Rsync Error: rsync: link_stat failed: No such file or directory (2)

I wish to copy all the files & folder under /web/Transfer_Files/data/ on mymac1 (Linux) to remote server mybank.intra.com (Solaris 10) /tmp/ location I am using Ansible tool synchronize module which triggers the unix rsync command as below:rsync --delay-updates -F --compress --archive --rsh=ssh... (2 Replies)
Discussion started by: mohtashims
2 Replies

3. IP Networking

1 VPS with 2 IP addresses. How to make them independent?

I have this in /etc/network/interfaces: auto ens3 iface ens3 inet static address 46.xx.xxx.1x7 netmask 255.255.252.0 broadcast 46.38.xxx.255 gateway 46.xx.xxx.1 auto ens3:0 iface ens3:0 inet static address 188.xx.xx.xx5 netmask... (0 Replies)
Discussion started by: Douro
0 Replies

4. Proxy Server

ISP VPS, routing traffic

Hi guys I need to setup server/router in my firm. We got from our ISP dedicated server in their data center. It has a static IP and it servers as replacement for out DSL connection. I configured our internal server to be border gateway and to connects to data center. "Remote" admin installed... (0 Replies)
Discussion started by: solaris_user
0 Replies

5. UNIX for Dummies Questions & Answers

VPS webserver speed

Hello I recently bought this Centos 5.10 VPS. They already gave me pre-configured everything : But I still feel like my blogs/shopping cart sites loading very slow. I would like to clarify few things 1) I'm using Apache, should I upgrade my web server? ( I do not wish to go... (3 Replies)
Discussion started by: johnchristy
3 Replies

6. Shell Programming and Scripting

Backups using rsync

Hello all, I'm using nas4free as a SAN and am having troubles getting a backup of it's data to work properly. I've posted in the nas4free forums, but haven't received much help. Here is the code I'm using: #!/bin/sh {... (1 Reply)
Discussion started by: dpatino
1 Replies

7. UNIX for Dummies Questions & Answers

mysqld overloading cpu of VPS

Hi bros I have a VPS 512mb (Burst 2GB) with Kloxo installed and hosting few sites on it with not much traffic I am facing high cpu load for the last few days and seems mysqld is overloading the cpu Any suggestion will be appreciated Regards Rizwan Top output is as under top -... (2 Replies)
Discussion started by: rizwan65
2 Replies

8. Red Hat

Unable to Start X in Centos - VPS - SSH

# startx xauth: creating new authority file /root/.serverauth.18174 X Window System Version 7.1.1 Release Date: 12 May 2006 X Protocol Version 11, Revision 0, Release 7.1.1 Build Operating System: Linux 2.6.18-53.el5 i686 Red Hat, Inc. Current Operating System: Linux server1.... (0 Replies)
Discussion started by: mselvaprakash
0 Replies

9. Shell Programming and Scripting

Rsync Scripts for Offsite backups

I am currently bringing up an offsite location, right now I am in the process of copying some data offsite (about 400GB). The problem I see is that running a single rsync for everything is not using the available bandwidth and testing shows that I double in speed for each instance of Rsync I am... (3 Replies)
Discussion started by: mchasse
3 Replies

10. UNIX for Dummies Questions & Answers

Getting started with VPS management through UNIX

Hi everybody, I have a VPS account and I have hit my limit for domains to manage through Plesk. I now need to begin administering new domains through UNIX. I've never used UNIX before but do have some experience with command line environments. I was able to connect today (I think). So the next... (1 Reply)
Discussion started by: snarky
1 Replies
Login or Register to Ask a Question
File::RsyncP(3pm)					User Contributed Perl Documentation					 File::RsyncP(3pm)

NAME
File::RsyncP - Perl Rsync client SYNOPSIS
use File::RsyncP; my $rs = File::RsyncP->new({ logLevel => 1, rsyncCmd => "/bin/rsync", rsyncArgs => [ "--numeric-ids", "--perms", "--owner", "--group", "--devices", "--links", "--ignore-times", "--block-size=700", "--relative", "--recursive", "-v", ], }); # # Receive files from remote srcDirectory to local destDirectory # by running rsyncCmd with rsyncArgs. # $rs->remoteStart(1, srcDirectory); $rs->go(destDirectory); $rs->serverClose; # # Send files to remote destDirectory from local srcDirectory # by running rsyncCmd with rsyncArgs. # $rs->remoteStart(0, destDirectory); $rs->go(srcDirectory); $rs->serverClose; # # Receive files from a remote module to local destDirectory by # connecting to an rsyncd server. ($module is the name from # /etc/rsyncd.conf.) # my $port = 873; $rs->serverConnect($host, $port); $rs->serverService($module, $authUser, $authPasswd, 0); $rs->serverStart(1, "."); $rs->go(destDirectory); $rs->serverClose; # # Get finals stats. This is a hashref containing elements # totalRead, totalWritten, totalSize, plus whatever the FileIO # module might add. # my $stats = $rs->statsFinal; DESCRIPTION
File::RsyncP is a perl implementation of an Rsync client. It is compatible with Rsync 2.5.5 - 2.6.3 (protocol versions 26-28). It can send or receive files, either by running rsync on the remote machine, or connecting to an rsyncd deamon on the remote machine. What use is File::RsyncP? The main purpose is that File::RsyncP separates all file system I/O into a separate module, which can be replaced by any module of your own design. This allows rsync interfaces to non-filesystem data types (eg: databases) to be developed with relative ease. File::RsyncP was initially written to provide an Rsync interface for BackupPC, <http://backuppc.sourceforge.net>. See BackupPC for programming examples. File::RsyncP does not yet provide a command-line interface that mimics native Rsync. Instead it provides an API that makes it possible to write simple scripts that talk to rsync or rsyncd. The File::RsyncP::FileIO module contains the default file system access functions. File::RsyncP::FileIO may be subclassed or replaced by a custom module to provide access to non-filesystem data types. Getting Started First some background. When you run rsync is parses its command-line arguments, then it either connects to a remote rsyncd daemon, or runs an rsync on the remote machine via ssh or rsh. At this point there are two rsync processes: the one you invoked and the one on the remote machine. The one on the local machine is called the client, and the one on the remote machine is the server. One side (either the client or server) will send files and the other will receive files. The sending rsync generates a file list and sends it to the receiving side. The receiving rsync will fork a child process. File::RsyncP does not (yet) have a command-line script that mimics rsync's startup processing. Think of File::RsyncP as one level below the command-line rsync. File::RsyncP implements the client side of the connection, and File::RsyncP knows how to run the remote side (eg, via rsh or ssh) or to connect to a remote rsyncd daemon. File::RsyncP automatically adds the internal --server and --sender options (if necessary) to the options passed to the remote rsync. To initiate any rsync session the File::RsyncP->new function should be called. It takes a hashref of parameters: logLevel An integer level of verbosity. Zero means be quiet, 1 will give some general information, 2 will some output per file, higher values give more output. 10 will include byte dumps of all data read/written, which will make the log output huge. rsyncCmd The command to run the remote peer of rsync. By default the rsyncArgs are appended to the rsyncCmd to create the complete command before it is run. This behavior is affected by rsyncCmdType. rsyncCmd can either be a single string giving the path of the rsync command to run (eg: /bin/rsync) or a list containing the command and arguments, eg: rsyncCmd => [qw( /bin/ssh -l user host /bin/rsync )], or: rsyncCmd => ["/bin/ssh", "-l", $user, $host, "/bin/rsync"], Also, rsyncCmd can also be set to a code reference (ie: a perl sub). In this case the code is called without arguments or other processing. It is up to the perl code you supply to exec() the remote rsync. This option is ignored if you are connecting to an rsyncd daemon. rsyncCmdType By default the complete remote rsync command is created by taking rsyncCmd and appending rsyncArgs. This beavhior can be modified by specifying certain values for rsyncCmdType: 'full' rsyncCmd is taken to be the complete command, including all rsync arguments. It is the caller's responsibility to build the correct remote rsync command, togheter will all the rsync arguments. You still need to specify rsyncArgs, so the local File::RsyncP knows how to behave. 'shell' rsyncArgs are shell escaped before appending to rsyncCmd. This option is ignored if you are connecting to an rsyncd daemon. rsyncArgs A list of rsync arguments. The full remote rsync command that is run will be rsyncCmd appended with --server (and optionally --sender if the remote is a sender) and finally all of rsyncArgs. protocol_version What we advertize our protocol version to be. Default is 28. logHandler A subroutine reference to a function that handles all the log messages. The default is a subroutine that prints the messages to STDERR. pidHandler An optional subroutine reference to a function that expects two integers: the pid of the rsync process (ie: the pid on the local machine that is likely ssh) and the child pid when we are receiving files. If defined, this function is called once when the rsync process is forked, and again when the child is forked during receive. fio The file IO object that will handle all the file system IO. The default is File::RsyncP::FileIO->new. This can be replaced with a new module of your choice, or you can subclass File::RsyncP::FileIO. timeout Timeout in seconds for IO. Default is 0, meaning no timeout. Uses alarm() and it is the caller's responsbility to catch the alarm signal. doPartial If set, a partial rsync is done. This is to support resuming full backups in BackupPC. When doPartial is set, the --ignore-times option can be set on a per-file basis. On each file in the file list, File::RsyncP::FileIO->ignoreAttrOnFile() is called on each file, and this returns whether or not attributes should be ignored on that file. If ignoreAttrOnFile() returns 1 then it's as though --ignore-times was set for that file. An example of calling File::RsyncP->new is: my $rs = File::RsyncP->new({ logLevel => 1, rsyncCmd => ["/bin/rsh", $host, "-l", $user, "/bin/rsync"], rsyncArgs => [ "--numeric-ids", "--perms", "--owner", "--group", "--devices", "--links", "--ignore-times", "--block-size=700", "--relative", "--recursive", "-v", ], }); A fuller example showing most of the parameters and qw() for the rsyncArgs is: my $rs = File::RsyncP->new({ logLevel => 1, rsyncCmd => ["/bin/rsh", $host, "-l", $user, "/bin/rsync"], rsyncArgs => [qw( --numeric-ids --perms --owner --group --devices --links --ignore-times --block-size=700 --relative --recursive -v )], logHandler => sub { my($str) = @_; print MyHandler "log: $str "; }; fio => File::RsyncP::FileIO->new({ logLevel => 1, }); }); Talking to a remote Rsync File::RsyncP can talk to a remote rsync using this sequence of functions: remoteStart(remoteSend, remoteDir) Starts the remote server by executing the command specified in the rsyncCmd parameter to File::RsyncP->new, together with the rsyncArgs. If the client is receiving files from the server then remoteSend should be non-zero and remoteDir is the source directory on the remote machine. If the client is sending files to the remote server then remoteSend should be zero and remoteDir is the destination directory on the remote machine. Returns undef on success and non-zero on error. go(localDir) Run the client rsync. localDir is the source directory on the local machine if the client is sending files, or it is the destination directory on the local machine if the client is receiving files. Returns undef on success. serverClose() Call this after go() to finish up. Returns undef on success. statsFinal() This can be optionally called to pickup the transfer stats. It returns a hashref containing elements totalRead, totalWritten, totalSize, plus whatever the FileIO module might add. abort() Call this function to abort the transfer. An example of sending files to a remote rsync is: # # Send files to remote destDirectory from local srcDirectory # by running rsyncCmd with rsyncArgs. # $rs->remoteStart(0, destDirectory); $rs->go(srcDirectory); $rs->serverClose; An example of receiving files from a remote rsync is: # # Receive files from remote srcDirectory to local destDirectory # by running rsyncCmd with rsyncArgs. # $rs->remoteStart(1, srcDirectory); $rs->go(destDirectory); $rs->serverClose; Talking to a remote Rsync daemon File::RsyncP can connect to a remote Rsync daemon using this sequence of functions: serverConnect(host, port) Connect to the Rsync daemon on the given string host and integer port. The port argument is optional and it defaults to 873. On error serverConnect returns a string error message. On success it returns undef. serverService(module, authUser, authPasswd, authRequired) Specify which module to use (a "module" is the symbolic name that appears inside "[...]" /etc/rsyncd.conf), the user's credentials (authUser and authPasswd) and whether authorization is mandatory (authRequired). If set to a non-zero value, authRequired ensures that the remote Rsync daemon requires authentication. If necessary, this is to ensure that you don't connect to an insecure Rsync daemon. The auth arguments are optional if the selected rsyncd module doesn't require authentication. See the rsyncd.conf manual page for more information. For example, if a host called navajo had a /etc/rsyncd.conf contains these lines: [test] path = /data/test comment = test module auth users = craig, celia secrets file = /etc/rsyncd.secrets and /etc/rsyncd.secrets contained: craig:xxx then you could connect to this rsyncd using: $rs->serverConnect("navajo", 873); $rs->serverService("test", "craig", "xxx", 0); The value of the authRequired argument doesn't matter in this case. On error serverService returns a string error message. On success it returns undef. serverStart(remoteSend, remoteDir) Starts the remote server. If the client is receiving files from the server then remoteSend should be non-zero. If the client is sending files to the remote server then remoteSend should be zero. The remoteDir typically starts with the module name, followed by any directory below the module. Or remoteDir can be just "." to refer to the top-level module directory. Returns undef on success. go(localDir) Run the client rsync. localDir is the source directory on the local machine if the client is sending files, or it is the destination directory on the local machine if the client is receiving files. Returns undef on success. serverClose() Call this after go() to finish up. Returns undef on success. abort() Call this function to abort the transfer. An example of sending files to a remote rsyncd daemon is: # # Send files to a remote module from a local srcDirectory by # connecting to an rsyncd server. ($module is the name from # /etc/rsyncd.conf.) # my $port = 873; $rs->serverConnect($host, $port); $rs->serverService($module, $authUser, $authPasswd); $rs->serverStart(0, "."); $rs->go(srcDirectory); $rs->serverClose; An example of receiving files from a remote rsyncd daemon is: # # Receive files from a remote module to local destDirectory by # connecting to an rsyncd server. ($module is the name from # /etc/rsyncd.conf.) # my $port = 873; $rs->serverConnect($host, $port); $rs->serverService($module, $authUser, $authPasswd); $rs->serverStart(1, "."); $rs->go(destDirectory); $rs->serverClose; LIMITATIONS
The initial version of File::RsyncP (0.10) has a number of limitations: o File::RsyncP only implements a modest subset of Rsync options and features. In particular, as of 0.10 only these options are supported: --numeric-ids --perms|-p --owner|-o --group|-g --devices|D --links|-l --ignore-times|I --block-size=i --verbose|-v --recursive|-r --relative|-R Hardlinks are currently not supported. Other options that only affect the remote side will work correctly since they are passed to the remote Rsync unchanged. o Also, --relative semantics are not implemented to match rsync, and the trailing "/" behavior of rsync (meaning directory contents, not the directory itself) are not implemented in File::RsyncP. o File::RsyncP does not yet provide a command-line interface that mimics native Rsync. o File::RsyncP might work with slightly earlier versions of Rsync but has not been tested. It certainly will not work with antique versions of Rsync. o File::RsyncP does not compute file deltas (ie: it behaves as though --whole-file is specified) or implement exclude or include options when sending files. File::RsyncP does handle file deltas and exclude and include options when receiving files. o File::RsyncP does not yet implement server functionality (acting like the remote end of a connection or a daemon). Since the protocol is relatively symmetric this is not difficult to add, so it should appear in a future version. AUTHOR
File::RsyncP::FileList was written by Craig Barratt <cbarratt@users.sourceforge.net> based on rsync 2.5.5. Rsync was written by Andrew Tridgell <tridge@samba.org> and Paul Mackerras. It is available under a GPL license. See http://rsync.samba.org. LICENSE
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License in the LICENSE file along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. SEE ALSO
See <http://perlrsync.sourceforge.net> for File::RsyncP's SourceForge home page. See File::RsyncP::FileIO, File::RsyncP::Digest, and File::RsyncP::FileList. Also see BackupPC's lib/BackupPC/Xfer/Rsync.pm for other examples. perl v5.14.2 2010-07-25 File::RsyncP(3pm)