- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: File Syncronization
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
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
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
10-17-2007 02:14 AM
10-17-2007 02:14 AM
I need a solution that will ensure that indivudal files I specify will remain IDENTICAL across multiple servers. During my rsync testing, I could get files copied in both directions no problem...but they seemed to overwrite each other.
Our servers will be load balanced from the network side so changes could potentailly be made on both servers at any given time!
I only see two other solutions: NFS & SAN (maybe).
I'm not thrilled about the prospect of NFS due to the fact that, based on what I know, it presents a single point of failure...the NFS server itself!
The SAN solution seems like a viable option as we do have an EVA, however these particular servers were not slated to be attached and would require the purchase of additional hardware! My knowledge of SANs is limited so I am not 100% sure that multiple servers could even use the same LUNs.
Hence my posting here! ;)
Your 2¢?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2007 02:21 AM
10-17-2007 02:21 AM
Re: File Syncronization
Either of your solutions will work but they take time and planning.
rsync in an ssh tunnel can do the job.
Example:
rsync -avH --stats --delete -e ssh /var/mysql/ $othernode:/var/mysql/
This can be modified slightly to use only newer files and run both directions in a two node setup.
Best long term to put the files on a SAN or NFS.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2007 02:41 AM
10-17-2007 02:41 AM
SolutionWhile you are concerned that NFS is a single point of failure, those concerns can be addressed via ServiceGuard which also applies to CFS as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2007 02:59 AM
10-17-2007 02:59 AM
Re: File Syncronization
using the command:
node1# rsync -avH --stats --delete -e ssh node2:rsync.test .
The contents of the file rsync.test from node2 do infact get copied over but it OVERWRITES the existing contents of rsync.test on node1. This will not work for us! Even using the --append or -u (update) optins did not peroduce the results we needed!
AS for the NFS, do you not think that the NFS being a single point of failure would present a problem in the event of a failure! The files that we need replicated are part of an enterprise application that is tied to ~90% of our business!
With the SAN option...are there any problems with multiple servers accessing the same LUN.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2007 03:07 AM
10-17-2007 03:07 AM
Re: File Syncronization
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2007 03:14 AM
10-17-2007 03:14 AM
Re: File Syncronization
Thank you for your expertise! I am glad to see we will need to go the supported way as I was not looking forward to "patching" something together!
I will assign points!