- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- rsync for HPUX
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-02-2003 06:48 PM
тАО07-02-2003 06:48 PM
rsync for HPUX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-02-2003 06:53 PM
тАО07-02-2003 06:53 PM
Re: rsync for HPUX
rsync v. 2.5.5
http://hpux.connect.org.uk/hppd/hpux/Networking/Admin/rsync-2.5.5/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-02-2003 07:50 PM
тАО07-02-2003 07:50 PM
Re: rsync for HPUX
rsync: can be easily use in script, and then run from cron
syntax to copy all the files from the /dir to the /dest on remote_host:
rsync /dir/* remote_host:/dest/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-02-2003 11:20 PM
тАО07-02-2003 11:20 PM
Re: rsync for HPUX
rsync and rdist have the same performance
numbers.Rsync has the option of "integrated"
usage of ssh thus securing the traffic.Rdist
has the option to be used on many Unix flavors.
If one wants security - can be done by ssh forwarding of rdist.
Zeev
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-03-2003 12:54 AM
тАО07-03-2003 12:54 AM
Re: rsync for HPUX
I used rsync on HP-UX but could not get the port transfer to work. Using .rhosts & hosts.equiv was fine.
The reason why rsync is better than say rdist is because it will only copy the difference between the two images. Plus rsync has many more options built in (ssh etc). That is why I (tried to) use it.
If you do get it to work using the port menthod plesse could you update my thread
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x7823eea29889d611abdb0090277a778c,00.html
Many thanks
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-18-2004 06:35 PM
тАО04-18-2004 06:35 PM
Re: rsync for HPUX
Thanks alot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-18-2004 06:51 PM
тАО04-18-2004 06:51 PM
Re: rsync for HPUX
# cat /etc/rsyncd.conf
hosts allow = 198.16.74.23,217.22.73.0/24
use chroot = no
max connections = 2
pid file = /var/run/rsyncd.pid
uid = 9999
gid = 999
[share]
path = /var/pub/share
comment = My HP-UX server share
# rsync --daemon
On the client side
pc > cd mirror
pc > rsync -avz --delete your.server.com::share .
your.server.com can also be an internal LAN address or host name
Enjoy, Have FUN! H.Merijn [ Using above very often, but with other values of course ]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-18-2004 08:43 PM
тАО04-18-2004 08:43 PM
Re: rsync for HPUX
"Host list in line 1 is degenerate"
while executing this
rdist -b -c /test_local/ :/test_dest/
Actually what i was trying to do is to make two directory identical but I want it to be able to compared the content of identical files too before overwriting as the dest folder could have a newer file than the source! Therefore rsync is not applicable here I suppose.
Thanks for the help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-18-2004 08:53 PM
тАО04-18-2004 08:53 PM
Re: rsync for HPUX
I'm running rsync over my ~ directory
root@sourcehost:/home/me>cat Distfile
HOSTS = (targethost me@targethost)
FILES = ( /home/me/scriptstuff )
${FILES} -> ${HOSTS}
install -R;
in me's crontab You'd find:
30 08 * * * /usr/bin/rdist -y 2>&1 > /home/me/rdist.log
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-19-2004 03:18 AM
тАО04-19-2004 03:18 AM
Re: rsync for HPUX
HP-UX 11 and up come with rdist
rdist(1) rdist(1)
NAME
rdist - remote file distribution program
SYNOPSIS
rdist [ -bhinqvwyMR ] [ -f distfile ] [ -d var=value ] [ -m host ]
[ label... ]
rdist [ -bhinqvwyMR ] -c name... [ login@]host[:dest ]
DESCRIPTION
rdist facilitates the maintaining of identical copies of files over
multiple hosts. It preserves the owner, group, mode, and modification
time of files if possible and can update programs that are executing.
Rgds...Geoff