Best way to access files at two different locations

Hey Guys,
I am in need of some help. We currently have about six macs in our prepress department all accsessing 1 mac mini with three external drives that store all our files. We also work out of those drives, not on our local machines.
So far this has worked out well for us. However, in the next few weeks we will be opening a new shop about 20 miles away, that will need access to all these same exact files. We are not sure of what the best way to do this is.
Currently the mac mini we are on does not have osx server just osx. Also we have about 4-5 TB of customer files, and any given file that we are working on or would need access to could be up to 2 GB's.
We are open to all and any ideas. Obviously the cheaper the better, but please give me any and all ideas so that we can evaluate every option and decide what is best for our company.
We know that our current state of using external drives on a mac mini in not a realistic solution for ever as eventually our drives will fill up and I think we are out of usb ports to add new ones on.
Also this cannot be a one time type of fix as once we get this new location set up and established, we plan to replicate it and open up a couple more in the comming years. Also seeing as we already have 4-5 TB of data we need something that is future proof so that as we continue to expand and grow we end up needing a new solution in 5 years.
Thank you for any and all help you can provided.
-ey3ball

@rccharles// Do you know of any software that would duplicate or mirror a sever?
I do not have personal experience beyond dropbox.
sync
SyncTwoFolders simply synchronizes two folders. might be more for client.
https://www.macupdate.com/app/mac/22644/synctwofolders/
Unix rsync
  whether it copies mac metadata may depend on what version of X you have.  May depend transfer app you use AFS, NFS, Samba.
dropbox
Well, if you want with Dropbox, you could use Dropbox to do the syncing. I think this is the way to go because you would get offsite backup. Not sure i'd try to sync the two servers. Duplicate each server to Dropbox.  Provide read-only access to the other site.
You could experiment around with two computers and a dropbox account.  See how it works for you.  It's free upto two gigs.
versioning
dropbox has versioning build in.  using sometype of version system while necessary was viewed as a PITA by most programmers.  The best system would be an automated on where you didn't have to do anything beyond what you were doing before.  Timemachine, etc.
dropbox
also would we just talk to our internet provider about a private fiber channel?
I think Linc Davis has the idea.
Router-to-router VPN.
I was putting the concept out there.

Similar Messages

  • Best way to sync files on 2 different MacBook Pros?

    i use 2 macbook pros. what is the best way to keep files - docs, pdfs, psds - synced on both computers?

    An external hard drive that you move between the two computers. Keep all the active files you're working on on the external drive. At the end of each working session, save copies of them to the computer's internal drive before moving to the other computer for your next work session.

  • Best way to access files on Xserve via VPN on iPad?

    Can anyone tell be the best solution for accessing files housed on the companies Apple Xserve remotely via VPN from an iPad? Numbers / Pages etc.
    thanks,
    Rick

    The iPad doesn't natively support file systems such as those on servers, but there are third-party apps that can allow this. FileBrowser is one often mentioned, so you might look into that. VPN will be a separate issue; iOS has a built-in VPN client which works with many VPN systems, but you'll need to see if yours is supported.
    Regards.

  • Best way to sync sharepoints on two different xServes running Tiger Server?

    Situation: I have two xServes. Both are Dual 1.0 GHz G4/1 GB RAM/Mac OS X Server Tiger 10.4.x. One xServe is located here in Florida office. Other (backup) xServe is colocated in California. Each xServe has three sharepoints. I need the Florida sharepoints to sync with their respective California sharepoints. Meaning, I want as often as possible, the California sharepoints to be a mirror of the Florida sharepoints. Best scenario is the 'sync' runs every 24 hours, or more often, if it won't effect day to day activity and production on xServe(s) and network(s).
    What is the best way to do this?
    Also, is it ok that the Florida xServe is version 10.4.7, while the California xServe is 10.4.4 (the difference in versions is for a reason)?
    Thanx in advance to any and all who can help.
    PowerMac G4 733 MHz   Mac OS X (10.4.6)   512 MB RAM

    Hi NASFMeric,
       Carbon Copy Cloner uses psync, which actually works pretty well. However, the greatest number of features in this kind of tool are found in rsync. Since Apple's rsync handles resource forks, even the psync man page suggests using it. Beware though, there are several bugs in Apple's rsync.
       Fortunately, not only has Quinton Dolan kept track of these bugs, he's fixed them. There are several "fixed" rsyncs for Mac OS X on the web but Quinton addresses so many issues, he may have fixed them all. He also patched the latest version of rsync. His discussion and fixed rsync can be found on his page, Fixing rsync on MacOS X 10.4 (Tiger). Tests on Apple's UNIX discussion failed to find fault with it but maybe someone did (probably Quinton) because he regularly updates it. Thus, I imagine he supports it as well. He's very sharp, appears to have done an impeccable job and I highly recommend his solution.
    Gary
    ~~~~
       drug, n:
          A substance that, injected into a rat,
          produces a scientific paper.

  • Best way to transfer file between two web apps

    I'm looking for some architectural suggestions. Seems like a simple problem, but I'm really struggling.
    -- Problem:
    We have two web servers, both running apps in JBoss. I need to pass a file of roughly 20MB from one server to the other, and get the other server to process it as soon as it receives it.
    -- Details:
    Seems simple enough... My plan was to write a web service to pass it. Our company is all onboard the SOA train. I wrote a service that encoded the file as a byte[] and passed it. Works amazing for small files, but throws an Axis OutOfMemory error when trying to base64 encode the file. I then looked at using attachments for web services, but dismissed that. It creates malformed XML since it treats the service as a multipart MIME message wraps the webservice inside. It quickly became messy and I couldn't get it working. Seemed to defeat the purpose of an XML service too.
    I've considered just doing a HTTP POST of the file to the other server, but that's poorly documented and a bit of a hack way to do it. I also considered just dropping the file in a web accessible folder, then using a web service to pass a URL and get the other server to retrieve it via HTTP. Again, not a very nice solution.
    Anyone have any suggestions? Thanks.

    Kimos2 wrote:
    I don't have access to run/configure services on these machines, so FTP is out. It has to be JVM to JVM. Even if I did, I'd have to worry about triggering JBoss to process the file right away after it had been dropped there. I know i could poll the directory or send a message to trigger the process, there'd be synchronization issues etc to work through and seems to introduce unneeded complication.Yes, I agree with that. Having been through the polling directories and grabbing partially uploaded files scenario ad nauseam. It's much worse with large files too.
    Barring any suggestions I haven't thought of, I'll probably end up settling on the HTTP POST solution. My problem is that it's providing a service without a specification and is not self-describing. No WSDL file to pass to clients that plan on using it. I would do HTTP POST as well. I didn't understand the part about "without a specification". You do have a specification, don't you? Wasn't this it: "I need to pass a file of roughly 20MB from one server to the other, and get the other server to process it as soon as it receives it." Informal, yes, but I don't have a problem with that. Post it to a URL on the receiving server and set up the receiving server to do whatever it's supposed to do with the file.

  • Is there a way to save files in two (2) locations at once?

    Hi everyone.
    I am a devoted mac user, but I am significantly less computer-savvy than most other mac users I know. I recently upgraded my 2.66 GHz quad core mac pro to have three 1TB hard drives. I want to use one of those drives for my FCP cache, and the other two I would like to set up (if it is possible) to save documents, video files, audio files, photos, etc.
    However, I want one of the drives to be a backup of the other. What I am asking is, is there a way to set up my hard drives such that when I save a file to one location, it automatically saves it to the 2nd? I tried for the longest time with external hard drives saving it to 2 places, but that requires a level of diligence I don't have, and I ended up with different files in each drive.
    A sales rep at my local Apple store told me there is a specific type of RAID (Alias RAID? RAID Alias? something like that) which can do exactly what I am looking for. The problem is, I don't know enough about computers to set it up or figure it out, and lugging my Mac Pro tower to the Apple store is a bit of a chore.
    Any help would be GREATLY appreciated!!!!
    ~Bryan

    Hello Bryan,
    I believe you are looking for a RAID 1 set up. When it comes to computers I am no pro either, so hopefully the real pros will chime in. Anyhow, you should be able to do this in disk utility, do a search here in the forums for RAID 1 and go from there.
    Hope that helps!
    -delton

  • Best way to access my mac G4 files when working on a windows pc laptop

    Hi - I'm looking for ideas on the best way to access files stored on my G4 mac, when working on a pc laptop elsewhere in the house.
    I'm not sure if this involves setting up a network, or whether I should be looking at ftp or even bluetooth.
    Just to explain what I'm after: I'm writing a book, primarily on my g4 (running panther) in my study. But I spend a large proportion of my day running after my rampaging toddler. I'd like to make better use of my time by being able to grab my partner's laptop and write while my toddler is occupied for twenty minutes.
    Messing around with a memory stick etc would just take too long as I'd have to remember to update the main file. It would get very messy!
    I hope someone can help!
    Thanks, Tina
    Message was edited by: tinaMac

    Between the networking question(s) to connect the two different platform
    computers, using Sharing and other settings in each, the next question is
    about the software used in the documents you are to be creating in one
    and sending to the other.
    Do you have a similar word processing software for the PC as in the Mac;
    or something compatible in creating and using .RTF documents, etc. Or,
    if you have a Windows version of AppleWorks, that would work. And the
    TextEdit in your OS X can handle rich text format word processing; and
    probably open basic text from a PC fairly easy. (And Word, etc, can.)
    Issues in sharing, are such that you have to be careful when changing the
    settings in your computers, that you don't accidentally share your computer
    contents with other persons and computers in the vicinity. By wire would be
    the most secure, since Ethernet can be used locally to share.
    Internet and wireless may be a possibility, too; or using a local shared external
    drives, if visible to both computers, depending on the network setup.
    Do you have a USB hard disk drive set up on your wireless network, and
    formatted in Fat32 so the Mac and PC can both see and use it? If so, you
    may be able to send documents to there from the PC and use them in the
    Mac. This may work, and depending on how the files were organized, not
    too hard to keep up with the draft copies generated from the PC for use in
    the Mac at a later time, and so on. This way, both computers would not
    need to be on, to send & receive a file...
    {For that matter, using a Google Account could be helpful;
    to just email the writing to yourself, at any computer.}
    Anyway, there are several possibilities, including those in the link to another
    discussion on that topic per the above post.
    Good luck & happy computing!

  • Mac mini server on two different location

    Hi,
    With my partner we are working on very havy image file from two different location. we wont to be able to share those file to each other easly and quickly mad make sur those file are allways up to date.
    - My first idea was to install in my place one mac mini server with external hard drive (RAID 0) and install the same server in my partner place. then I would like to create a VPN connexion between both Mac Mini server and setup a kind of RAID 1 between then. link that if my partner modify an image file on the server, With a short delay I will be able to see it on my side. this solution would be the best for me as all the data would be save in two different location and I would not have any backup issue.
    I did not buy the MAC mini server yet but as soon that I know the best soluiton and that it is possilbe to do so I will buy it.
    - My second idea (if the first one is not possible or if you guy's convins me that my idea is stupide) would be to have one MAC Mini server in one location setup with an external hard drive in RAID 01. my partner will need to connect to this server through VPN. This solution seems to be a good option but my partner will need to copy the file in local to work on it (few Gb eatch file) and copy it back on the server when he finish to work on it.
    With this solution I will also need to organise manual backup through another hard drive to avoid to have all our data in the same location.
    Witch one of those solution seems the best and can work with MAC mini server? If you have another idea for my situation I m more then happy to read it.
    Knowing that other user may need to access to my file, is the MAC Mini server VPN connection safe and fast?
    Thank you in advance for your help.
    Chris.

    The fact that you are both working on multi-gigabyte
    files, the statement BDAqua made about network speed
    is a big issue.  Small incremental changes in a single
    multi-gigabyte file still require that entire file to be transferred.
    There in lies the big issue with network speeds.
    Basically, it seems idea 1 will probably not work well and
    besides, RAID is for local drives and not for over networks.
    One solution to the synchronization issue is have a single
    computer that has the application and the data and log into
    it and work remotely.  However, it sounds like these are image
    files and working and any kind of graphics over a remote
    connection is problematic unless there is a very high speed
    network connection.
    Second idea is the simple solution.  As for the backup, that
    can be automated with backup software and the backup could be
    put any where.

  • [vmware] Best way to share files between host and client

    Good afternoon!
    I have successfully installed VMware server on my machine and set up a virtual machine, powering Windows XP for study issues (emulation via wine does not do the trick for me). The virtual machine runs fast and stable but does not meet my requirements unless I have two issues faced:
    First:
    How to access a USB pendrive monunted by the host system properly within the client?
    Second:
    What is the best way to share file system space between host and client? Should I set up a Samba share which is accessible for both host and client or is it save to grant my VM access to my physical hard disc as a whole (using it as a partition)?
    Thanks for answers in advance, I have still quite a lot to learn, when it comes to VMs.
    Regards,
    ~cg

    Do not setup your VMware to be able to access your physical disk as a whole. This would have you mounting the filesystem twice, corrupting it in the process.
    You /can/ setup VMware with Sharing Folders that lets you share your filesystem (either / or just /home or something else) and that is what I would recommend.
    As for accessing the pen drive from both operating systems at once, I'd say use the same Sharing Folders method. I always share /mnt so that I can access my cdrom/USB/etc from the vmware OS.
    The sharing folders is basically the same as a samba share, but uses vmware's own method (HGFS). Samba is more secure (if you are worried about your VMware OS breaking from it's shell and attacking your real filesystem, which is unlikely). You need the vmware tools installed to make use of it.

  • Is there a way that you can have two different text fields (email, phone) that one at least one of them must be completed before submitting the form? Can it be done using javascript in the validation tab? if so, how?

    Is there a way that you can have two different text fields (email, phone) that one at least one of them must be completed before submitting the form? Can it be done using javascript in the validation tab? if so, how?

    Here is one solution:
    // mouse up action for submit button;
    function GetField(cName) {
    // get field object for cName field with error checking;
    var oField = this.getField(cName);
    if(oField == null) app.alert("Error accessing field named " + cName + "\nPleae verigy field name, spelling and capitalizeation.", 1, 0);
    return oField;
    } // end GetField function;
    var oPhone = GetField("phone");
    oPhone.required = oPhone.value == oPhone.defaultValue;
    var oEmail = GetField("email");
    oEmail.required = oEmail.value == oEmail.defaultValue;
    if(oPhone.required && oEmail.required) {
    app.alert("Missing required fields.", 1, 0);
    } else {
    app.alert("Submitting form", 3, 0);
    // additional code for submission;

  • One file to two different folders simultaneously?

    Is there a way to copy one file to two different folders simultaneously?
    Maybe a script?
    Drew

    Thanks for the response Baltwo.
    Maybe I shouldnt have said 'simultaneously'.
    What I'm trying to achieve is this.
    I drop a file into one folder and it automatically copies to ano folder (a redundant back up of the first folder)
    Is that possible at all?
    Drew

  • Whats the best way of sending files ?

    whats the best way of sending files (mp3's) to another computer over the internet, been doing it over msn, but takes a while, is there any other way?

    Have you thought of using an intermediary file server, e.g. yousendit.com, rapidshare.de, etc? Alternatively, you could do it the computer-to-computer route by enabling either 'Remote Login' or 'FTP Access' (Sharing preference pane) on one and connecting with the other.
    As an aside, what you're doing isn't illegal, is it? Pardon my bluntness.
    Yang

  • APEX Application accessing data from two different databases

    Hi All,
    Currently as we all know that APEX Application resides in database and is connected to the schema of that database.
    I want APEX Application to be running and accessing data from two different databases. Elaborating my question,
    Currently, my APEX Production Application is connected with XXXX Schema of DB1 Database(Where APEX Resides). Now I want to add some pages into this APEX Application for REPORT Purpose, But I want to connect this REPORT APEX Pages to get data from Different Schema YYYY for Database DB2.
    Is it possible to configure this scenario?
    The reason for doing this is to avoid the REPORT related (adhoc queries) resource utilization effect on Production DB1 Database.
    Thanks
    Nil

    1. If you do the joining of two or more tables in DB1 then all data is pulled over to DB1 and then the join is executed: so more data over the databaselink and more work for DB1. Better keep the joining stuff where the data resides and just pull exactly that data over that you need.
    2. Don't know about your different block sizes. Seems a nice question for one of the other forums (DBA or SQL).
    3. I mean create synonyms on DB1 for reports VIEWS in DB2.
    Hope all is clear!

  • Hello, I use photoshop cc 10 days and I did a lot of files with layers and channels. For two days in two different locations that only happens in some documents when you reopen the job done no more .. Example 6 channels on the facts I see only one .. Than

    Hello, I use photoshop cc 10 days and I did a lot of files with layers and channels.
    For two days in two different locations that only happens in some documents when you reopen the job done no more .. Example 6 channels on the facts I see only one ..
    Thank you for your attention.
    Annalisa 

    Don't understand what you writing here.  Screen shoots would be most helpful.
    Supply pertinent information for quicker answers
    The more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in your question:
    Adobe product and version number
    Operating system and version number
    The full text of any error message(s)
    What you were doing when the problem occurred
    Screenshots of the problem
    Computer hardware, such as CPU; GPU; amount of RAM; etc.

  • Is there any way to access files from the Classic environment to my iMac running on Leopard (10.5.8)?

    Is there any way to access files from the Classic environment to my iMac running on Leopard (10.5.8)?

    Sorry, no.

Maybe you are looking for

  • Configuring WLS to invoke a web service on SSL

    Hi, It will be really helpful if I get some pointers on this. Stuck with this without any progress. I havent experimented too much working with Certificates and so on... I have a web service on my WLS...This has to invoke an external web service (pro

  • My HP Pavilion 23 touchsmart all in one touch screen is not working

    My HP Pavilion 23 touchsmart all in one touch screen is not workin. I have restored the system. I didn't see any place in the pen and touch to disable or enable and not sure if i should instill drivers. What can i do?

  • N97 - Maps/Navigation Question (probably a rather ...

    I have managed to update my actual maps. So that's good. My compass seems to work, so that is also good. Before the Maps update I managed to save my home address and set it as a Favourite. Since the update of Maps (the app) and the actual maps themse

  • I have forgotten my Security Questions. Without a car :/

    Hi, I recently added some funds to my Apple account. I went to buy something in-app and it asked me for Security Questions. I thought I actually knew them but then i saw that There was a question of "What was your least favourite car" I dont even hav

  • IWork is not working on Yosemite after a fresh install from the disk

    Hi, I've freshly install yosemite on my computer. I first reinstalled my computer with original Snow Leopard and then made the upgrade to Yosemite. After that I used the Migration Assistant to transfert my old applications. Most of them are now runni