RAID on Mac mini Server (2011 i7)

I just purchased a new Mac mini Server today (the base configuration 2011 Quad Core i7 with 4GB RAM and 2x 500GB 7200RPM magnetic hard disks) and wanted to share what I've learned about setting up RAID on the system.
First, as you may have heard, the Mac mini Server does not include any installation/reinstallation media (I was hoping for a USB reinstall key, but it seems that the new systems don't include these or optical discs; last year's Mac mini Server included handy reinstall DVDs even though the system didn't have an optical drive).  Out of the box, the new Mac mini Server has Mac OS X Lion, the iLife suite, and the Mac OS X Lion Server tools pre-installed on one of the two 500GB internal drives; the other disk is formatted as a separate, second drive.
If this is the configuration you're looking for, you're good to go right out of the box.  As an aside, this shipping configuration is ideal for using the second disk as a Time Machine drive.  I would argue that Time Machine would be a better use of the second volume than a RAID 1 configuration, as Time Machine provides versioned backups and you don't incur the write performance penalty RAID 1 requires every time data is saved to the disk.  I would further caution that, while an internal Time Machine disk is a convenient safety measure, any critical data should be backed up outside of the system as well.
Now for those like me who were intrigued by the opportunity to mate the Quad Core i7 with a RAID 0/striped configuration for a performance boost (or if you want to use RAID 1), a RAID configuration is possible, but it there are a few caveats.
First, Apple has two recovery options for the new Macs: a small hidden recovery partition on the boot drive and their Internet Recovery system.  While it's possible to boot other systems from a Lion installation DVD extracted from the App Store Lion installer, such bootable optical discs will not boot the Mac mini Server at this time (this may change if Apple modifies the App Store Lion installer).  Therefore, as of right now, the recovery partition or the Internet Recovery system are the best options for installing/reinstalling on a RAID set.
Second, if you boot the system using Command+R to access the recovery partition, you can wipe the two drives and create a RAID set, but this process will remove the recovery partition and is incompatible with FileVault encryption (a warning to this effect comes up when you try to start an install/reinstalll on a RAID set, but at that point, you've likely already erased the recovery partition in Disk Utility).  If the system boots after the recovery partition is deleted, the only install/reinstall option is Apple's Internet Recovery.
Third, as might be expected depending upon your internet bandwidth, the Internet Recovery system can take a while to boot the recovery tools (10-15 minutes to boot on a standard cable modem connection) and to reinstall the OS (50+ minutes on a standard cable modem connection).  Internet Recovery currently reinstalls only Mac OS X Lion and the Server tools on the mini Server; there's no option to install iLife during the OS install (Apple could always change this by updating their servers, and there is a Customize button on the installer, but it is greyed out and cannot be clicked at the present).
Fourth, once the OS is reinstalled, it's possible to reinstall the iLife applications by launching the App Store from within Mac OS and selecting Purchased.  The store will indicate that the system is eligible to download the iLife apps and you can do so by agreeing to upload system-identifying information to Apple and signing in with your Apple ID.
I hope all this helps.  Here's a more concise step-by-step of how to set up the system with RAID:
THINGS YOU NEED
A fast Internet connection for the mini
Patience
Hold Command+R on the keyboard at start up to boot from the system's recovery partition (if the recovery partition has been deleted, the system should start from Apple's Internet Recovery system; you may need to connect to WiFi if wired ethernet isn't available)
Once you get into the recovery utility, select Disk Utility and for each of the two hard drives:
highlight the drive
select the Partition tab
select 1 Partition from the Partition Layout pulldown menu
select Free Space from the Format pulldown menu
click Apply
After you've wiped both of the drives, highlight one of the disks and click the RAID tab, then create a RAID set (striped or mirrored, as you prefer)
Quit Disk Utility and from the main recovery utility menu select Reinstall Lion (from this point on, if you have any trouble, you can restart the mini from the Internet Recovery system and return to this point, but the recovery partition will be gone as long as you keep the RAID set)
After you install and configure Mac OS X Lion Server (which can take well over an hour to download and install), you should be able to reinstall the iLife applications by launching the App Store App and selecting Purchased, then logging in with your Apple ID and agreeing to send your system info to Apple to download the iLife Applications
If you're using the mini as a production server, I highly suggest setting up some local, external recovery tool, as you don't want to have system downtime protracted by having to wait for an Internet Recovery boot/reinstall.  I would also beg Apple to consider this sort of scenario and to provide more supported methods for recovering and reinstalling from local media.
Best of luck to you all.

I found the basic principle on another forum thanks to a guy called 'e-whizz' and this what I did to make RAID 1 work on a mac mini server with LION server.
You can easily configure the second drive on a mac mini server for a Mirrored RAID 1 set with Lion Server without either reinstalling or erasing your existing setup.
The initial setup process takes about 30 minutes, though the rebuilding of the mirror disk will take several hours, depending on the amount of data you have on the drive. It took around 3 hours on a new mac mini server with lion server installed, nothing else configured.
Before you start, please ensure you have a current backup of the server. Getting the following commands wrong can render you server unusable.
What you need to use is the command line version of Disk Utility, diskutil.
Before you start, clone the hard drive. You can use SuperDuper (or similar, I have used SuperDuper) with copying all files onto a USB memory stick. If Lion is freshly installed, 8Gb will do. SuperDuper will create a bootable copy on the USB.
Boot the mac mini from the external USB. To do that, reboot and hold down the option key while restarting. You will see a window, select the USB drive to boot from.
Launch the terminal and type the following command:
diskutil list
This gives you a list of all the drives and partitions your system knows about.
You need to find the Server HD partition (the first disk) and the HD2 partitions (the second disk). These are the two main ~500GB drives. You will be using the disk IDENTIFIERs when issuing the diskutil commands. For a stock standard Mac Mini Server, the commands below are correct, but if you have previously changed the volume names, or repartitioned at any stage the disk identifiers and volume names may differ.
First enable RAID mirroring on existing Server HD volume. This will create a single disk, unpaired mirror, without affecting your data.
Using this syntax:
diskutil appleRAID enable mirror disktomirror
where disktomirror is your disk identifier for Server HD
On my mac mini server, Server HD was disk0s2, so I used this command:
diskutil appleRAID enable mirror disk0s2
You now need to run diskutil list again to see the disk identifier for the new RAID volume. The new RAID volume will be listed as disk# on its own at the bottom of the list.
On my mac mini server this was disk3 (disk 2 was the USB I booted from, disk 0 the first disk and disk 1 the second disk)
Next add the disk HD2 to the Server HD raid mirror volume (on my mac, as I said before, this is disk3) as a new member.
This step will erase disk HD2 and begin an auto repair of the Server HD.
Using this syntax:
diskutil appleRAID add member newdisk raidvolume
replacing newdisk and raidvolume with your particular disk identifiers
On my server this was:
diskutil appleRAID add member disk1s2 disk3
To follow the progress of rebuilding the mirror set, type
diskutil list
It will show you the progress in % of the rebuilding under status
Once finished, reboot and your RAID 1 is up and running and you have also a working backup on your USB (coz' that's where you booted from ;-)
After reboot you can check the status of your RAID with
diskutil appleRAID list
Both drives should show ONLINE under status, interestingly, the device node for the RAID changed on my mac mini server from disk3 to disk2
That's it

Similar Messages

  • Mac Mini Server 2011, with lion, sleeps every day

    My new Mac Mini Server 2011, with lion, sleeps every day! Server not responding.
    All services are down, smb, vnc, ssh too. And it not should be happen because this is a server, right?
    Please, I need help with this problem!
    How to fix it?

    1.  Go to System Preferences.
    2.  Select Engery Saver
    3.  Slide the setting for Computer sleep to never.
    4.  Slide the setting for Display sleep to never (though I believe the display should be able to sleep without much issue.
    5.  Make sure the following are not selected:
    a.  Put the hard disk(s) to sleep when possible.
    b.  Allow power button to put the computer to sleep.
    6.  Make sure the following are selected:
    a.  Wake for network access
    b.  Start up automatically after a power failure
    c.  Restart automatically if the computer freezes.
    Good luck!

  • Mac mini server 2011 with regular lion - lion freezes all the time!

    I have installed a regular OSX lion 10.7.3 on my brand new mac mini server 2011.
    I called support today they told me it would not be possible but with a bootable USB im just able to install a regular OSX lion since I dont like the server features and bought the machine for development ( coding ).
    When doing an internet recovery OSX lion server will be installed. This is higly unwanted but I guess the installer checks the hardware and installs the server version since that would be the "correct" version.
    Now it keeps locking up everytime, even after a time machine backup I did and hoped that clean install would have fix this,
    problem still persist.
    When it lockups and I reboot on login screen I can:
    only move the mouse up and down
    when I type 1 keystroke on keyboard the password field is filled with multiple charachters dotted out because of the password field
    3 questions
    Is running a reguler lion ( not server version ) on a mac mini 2011 really not supported causing my issues? It feels like unlogic since the regular lion installer installed just fine, it should have given a warning that its not possible to install on my mac mini server therefore I see this as a "ok" it can be installed without problems?
    Anyone has regular osx lion on mac mini server without any problems?
    Is there anything I can do to determine the cause of the freezes? The console does not mention anything
    This is higly frustrated, I dont dare to fully spend some hours to restore the system to a workable state for me ( install apps, coding enviroment, xcode etc) since it feels unstable and i dont want to spend time and have to do everything over again :S

    1.  Go to System Preferences.
    2.  Select Engery Saver
    3.  Slide the setting for Computer sleep to never.
    4.  Slide the setting for Display sleep to never (though I believe the display should be able to sleep without much issue.
    5.  Make sure the following are not selected:
    a.  Put the hard disk(s) to sleep when possible.
    b.  Allow power button to put the computer to sleep.
    6.  Make sure the following are selected:
    a.  Wake for network access
    b.  Start up automatically after a power failure
    c.  Restart automatically if the computer freezes.
    Good luck!

  • Mac Mini (server) 2011 not accepting 4 GB

    My Mac Mini Server (mid 2011) does not accept 4 GB of memory. It does boot succesfully with a 2 GB SODIMM in slot 0 or in slot 1, but when I insert 2 2GB SODIMMs in both slots, it does not boot. It does give the start up beep and then after a few secs it 'restarts' or so and beeps again. It repeats so continuously.
    When I insert a 4 GB SODIMM in either of the slots, the issue is exactly the same.
    I've been trying several things regarding memory placement. 2 GB in slot 0 and 4 GB in slot 1. 4 GB in slot 0 and 2 GB slot 1, 2x 2 GB in slot 0 and 1. All the same result.
    Only once, it somehow did start with a 2 GB and a 4 GB SODIMM installed and then OS X did report 6 GB in total, so somewhere both slots do work. However, on next day (after power down) the same issue of continuous beeps reoccured.
    I inspected both memory slots but could not see any dirt or mishap. I cleaned both slots with cleaning alchohol. I even "sanded" the contacts with a narrow piece of paper, folded to proper thickness. I've given the Mac a PRAM reset, an SMC reset. All to no avail.
    Any idea what this can be caused by?
    BTW, I do not know whether it is related: I also noticed that the 2 leftmost USB ports (seen from front) do not detect a keyboard when inserted in those. When the keyboard is inserted in one of the 2 rightmost ports, the kb is detected without problems.

    Kingston says it should work
    http://www.kingston.com/us/memory/search/?partid=kta-mb1333/4g
    I can't find where ICIDU says anything about supported computers
    http://www.icidu.com/en/memory/notebook-memory/sodimm-ddr3-1333-8gb-kit.html
    Based on what you did and problem with UBS ports I suspect either a slot problem or a problem on the logic board.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

  • Sound lag (delay) in windows 7 64bit over Bootcamp mini server 2011

    I just got my new Mac mini server 2011, loaded windows 7 64 bit and noticed that there is a audio lag over hdmi (intel HD 3000), what i mean is when i delete a file from recycle bin there is no sound, i tried going to sounds in the control panel and tried to test windows system sounds none of them work except the longer duration ones (and even if i do hear them, its the last part of the audio). i tried playing a normal mp3 which worked fine, i tried a hd video which worked fine, but the windows system sounds don't work due to a 2-3 second sound lag. i tried the latest drivers from Intel, dint help. Well i guess this might be a driver problem (i hope it is) , just wanted to know if any of you guys are having the same problem. I don't have this problem with my mac mini 2011 i5 2.5 ATI6630m HDMI.

    Audio device driver: Mini uses ? I know some Macs use RealTek and others have Cirrus so whatever you have, then RealTek is easy to deal iwth and install, Cirrus is harder to find and install.
    Audio pretty much does not work w/o user manually updating

  • Mac Mini Server VPN-Window 7 client

    Hi,
    The VPN connection from MacBookPro to Mac Mini Server (2011 with Mountain Lion 10.8.2) VPN works like magic. But, I never had any luck with any of Windows 7 laptops. Could any one take me to a good link to the Windows 7 VPN setup instruction?
    Thank you so much in advance for your time reading this.
    Best,
    Michael

    Heh Michael
    I got this working using the settings in the screenshots below. I know I had a heck of a time trying to make it work but it does using these for me. Sometimes on the first connection it rejects the credentials, but on the second time it connects - no idea why. Hope this helps:

  • Windows 7 on mac mini server and raid 1

    I just purchased a 2011 mac mini server with the hopes of installing windows 7 alongside lion.  Then my goal was to have the two drives mirrored.  I successfully mirrored the two drives using disk utility and then proceeded to install lion.  This all went fine.  Imagine my shock when I loaded up bootcamp to see an error message describing it's inability to install windows on a raided system.  The thought hadn't even occured to me that this would be an issue. 
    I have searched through various forums and other places on the internet and haven't found a solution.  I am curious if I can get anyone with any experience in this area.  Is it possible to have mac and windows installed on a drive... and have that drive mirrored to the second drive... regardless of what os i'm booted into?
    Thanks for your help guys

    The GUI version of Disk Utility is very limited in what sort of RAID configurations you can create. It will only allow you to have a single partition on the disk and to make a RAID using that.
    Boot Camp requires creating additional partitions on the disk and hence it complaining.
    There is a commandline version of Disk Utility called diskutility (duh!). It has far more options available. Details for this command can be obtained by typing man diskutility in Terminal.app.
    It appears that in theory you might be able to do the following.
    Start off with both disks not setup for RAID
    Use Boot Camp to create the Windows partition. Repeat this on each disk.
    Then in Terminal.app manually convert the boot Mac partition to a RAID using diskutil appleraid enable
    Then add the matching partition on the second drive to make it a working mirror using diskutil appleraid add
    Then in Terminal.app manually create a RAID for the Windows partition using both drives and use FAT32 as the format using diskutil appleraid create
    Then boot and run the Windows installer and tell it to erase the Windows partition as NTFS
    I cannot gurantee the above will work and you should obviously have backups if needed. Another option would be to have the Mac partition covered by RAID but not the Windows partition, this would result in three volumes one Mac RAIDed volume, and two other non RAIDed volumes even though you have two physical disks.

  • What is "best practice" to set up and configure a Mac Mini server with dual 1 TB drives, using RAID 1?

    I have been handed a new, out of the box, Mac Mini server.  Has two 1 TB drives in it.  Contractor suggested RAID 1 for the set up.  I have done some research
    and found out that in creating the software RAID, this takes away the recovery partition, so I have been reading up on how to create a recovery "disk" using a thumb drive.  this part of the operation I am comfortable with, but there are other issues/concerns that I have.
    Basically, what is the "best practice" to setup the Mini, configure the RAID and then start the server.  I am assuming the steps would be something like this:
    1) start up the Mini and run through the normal Maverick setup/config - keep it plain and vanilla
    2) grab a copy of the Server app and store it offline in a safe place
    3) perform the RAID configuration / reinstall of OS X Maverick using the recovery tools
    4) copy down and start the server app
    This might be considered a very simplified version of this article (http://support.apple.com/kb/HT4886 - Mac mini server (Late 2012 and Mid 2011): How to install OS X Server on a software RAID volume), with the biggest difference being I grab a copy of the Server App off of the mini before I reinstall, since I did not purchase it from the App store, but rather it came with the mini.
    Is there a best practice /  how-to tutorial somewhere that I can follow/learn from? Am I on the right track or headed for a train wreck?
    thanks in advance

    I think this article will answer your question. Hope this helps: http://wisebyte.blogspot.com/2014/01/best-configuration-for-mac-mini-server.html

  • Clean install Mountain Lion on Mac mini Server (Mid 2011)

    Hi.
    I am trying to do a clean install of ML on a Mac Mini Server. This is just a test machine, so not interested in any backups, etc.
    The machine is a Mid 2011 Mac Mini, and had Lion Server on it to start with (has been re-installed, reimaged, etc multiple times in it's short life with me so far ..)
    I would like to set the internal disks up as a Software Raid 1 config.
    I have a successfully created and tested USB stick with OS X ML install on it. I boot the mini with the USB stick, and once the installer options are available, I use the disk utility to create my software raid 1 config. Once this is completed, I proceed with the rest of the install.
    Before I can go any further, I am warned that the installer will NOT be able to create a recovery partition, and use time machine backups on this drive.
    If I break the raid and install on either one of the drives, the install proceeds without any problems.
    Is there a method I can use to do a clean install on this machine with the drives configured as RAID 1?

    This is the message that would happen with Lion, see this: http://support.apple.com/kb/HT4649
    Basically when you setup a Raid 0/1, the Lion and Mt. Lion installer won't/can't create a recovery partition.
    When you boot from a recovery partition you have access to certain tools, e.g. Disk Utility to restore a Time Machine back up, redownload the OS, etc.
    The recovery partition provides a certain bit of convenience but isn't absolutely necessary to run the OS. When you see the message, doesn't it let you go ahead with the install, accepting that no recovery partition will be created?
    If you need some of the recovery partition tools, you have a bootable USB stick as well as a backup of the Mt. Lion installer, no?

  • How can I create RAID 1 on Mac mini server just now from box.

    I bought my Mac mini server two days ago and decided that 1Tb + 1Tb HDD are very good for RAID 1 (mirroring).
    Thinking - doing ... Open Disk Utility, try to change and create RAID. Nothing. Try to reinstall OS X - recovery part are on disk all time.
    Does anybody can help me to create what I want and how to do this with minimum energy. Thanks a lot.

    Start from an Internet Recovery which boots you into it's own Recovery Partition. From there use Disk Utility to put your 2 drives into RAID 1. Reinstall OS X from the Internet Recovery once you have done that and install everything else as you need to.
    Be aware that RAID volumes do not have their own Recovery Partition so you will need to either have an external drive with an RP to boot into else you will need to use Internet Recovery each time (which is around a 650MB download).

  • Mac Mini Server Mid 2011 i7 problems

    I have a Mac Mini Server with an i7 Mid 2011 that had a lot of issues with memory because we were running so many services with 4GB of memory and would have 4 pages of usage in activity monitor after the 4GB of memory was full. It wouldn't restart on us or crash when running just really slow down due to usage of RAM. We just bought new RAM to bring it up to 8GB (2 x 4GB). It's the right memory for the computer. And now Lion crashes and restarts on us and even becomes way unresponsive too. Is there a way to check RAM to make sure it isn't bad without install a program. I recall someone once saying you could hold some buttons down at start up to do a RAM check.

    I think verbose mode runs a simple check,
    Starting up in single-user or verbose mode
    1. Shut down your Mac if it is on.
    2. Press the power button to start the computer.
    3. Immediately press and hold the Command (Apple) key and
    one
    of the following:
    the "s" key for single-user mode.  (Command-S)
    the "v" key for verbose mode.  (Command-V)

  • Mac Mini Server RAID 1 Disc Problem

    I tried configuring my new Mac Mini Server (with the help of my MacBook Pro's superdrive) in RAID 1 as outlined in previous discussions by:
    Step 1: Start the Mini in Target Mode. Press the T during start. In a few seconds the firewire logo will appear on your screen.
    Step 2: Go to your second Mac. Connect the firewire cable between second Mac and Mini.
    Step 3: On the second Mac start the disc utility. The two identical drives on your mini will show. Create a new Raid set (mirrored = Raid 1). Include both drives. Confirm the warning that all data on the mini will be lost.
    Step 4: Make sure your second Mac has CD/ DVD sharing option installed. This is to use the superdrive to install OS X Server on the mini.
    Step 5: Shutdown both Macs
    Step 6: Start your second Mac in target mode. Make sure the firewire cable is still connected.
    Step 7: Start the Mini with the option key pressed.
    Step 8: Insert the OS X Server install disc in your second Mac.
    Step 9: wait till the drive logo apears om the Mini. Continue the install. Will take about an hour.
    But when I get to Step 9 the mini's drive logo does not appear. I tried reformatting the mini's drives again in Disc Utility but still the same outcome. What did I do wrong? How can I fix it?
    Thanks!!

    Never mind, was able to do the install with the Remote Install Mac OS X utility.

  • New Mac Mini Server (Mid 2011) + 12TB Storage = ?

    So the goal is kind of simple...I just bought a Mac Mini Server (+ 4GB Ram upgrade to total 8GB) with Lion of course to faciliate a fairly basic concept. The Mac Mini Server will be running all the time and will be the central storage point for all data/apps/etc including serving my Apple TV (2nd Gen) via iTunes. I have 4 x 3TB drives and/or 2 x 2TB drives that I'd like to RAID 0 (or JBOD/Concatenate if necessary) to show up as 1 uber drive for storage in which the mini can access whenever. The thing is that obviously there is only so much disk space available in the mini itself, and outside of that you're looking at either USB 2.0, Firewire, or Thunderbolt as a connection interface to external media. USB 2 is fairly slow, firewire kind of ***** and has limited devices available, and Thunderbolt is retardly expensive (coming from the guy that just spent nearly $1000 on hard drives) not to mention nothing exists for that yet. There's always the option for gigabit ethernet which would work well if we were working with an NAS.
    Here's the thing. Being that this is going to be one big uber drive, the first question is how to interface with it. I'm not opposed to Direct Attached Storage except the available connectors are fairly slow or not out there yet. I'm not opposed to NAS either as long as I have the *option* to hook it up locally (perhaps via USB, is that possible?). The bigger issue here is that RAID 0, JBOD, or concatenated is all quite volitile which is just a downside of my needing to have no more than 1 uber drive. So my thought was to back it up with an online service, likely with one that offers unlimited backup like Carbonite and Live Drive. The issue with Carbonite is that it doesn't support anything that isn't a local internal drive (no NAS or DAS). Live Drive's software isn't yet working properly with OS X but does support NAS on paper.
    Does anyone have any thoughts any way around any of this? I'm not too sure how to word it more clearly. My latest thought prior to LiveDrive screwing me over software-wise was to grab an 8bay NAS and activate the NAS aspect of LiveDrive which would pretty much solve my problem after paying $160/yr. Again though, this no longer works as they've pretty much shat on the OS X client. I also tried running a virtual machine with Win 7 via Parallels 6 but it wasn't able to view the NAS at all. I don't exactly want to buy an identical box with identical drives either because that's well over another $1000 so something a bit more creative or practical would be nice.
    Again in the end, I just need Mac Mini Server OS X Lion to have one (wishful) "internal" 12TB drive (realistically NAS or DAS) that I can have a back up of the whole 12TB over some reasonable speed interface (assuming gigabit ethernet is the way to go).

    sounds like you need a DROBO.  If all you're doing is serving up audio and video, a USB 2.0 connection is fine.  It sounds like you're looking for two different things...local storage and an online backup service.  Or, are you talking about uploading all your content somewhere and streaming it down to your mini?  If it's #2, then that's going to be way slower than connecting a USB device.
    For online backups, I use Crashplan, which is better than Mozy and Carbonite (both of which I've used for at least a year), IMO.

  • Time capsule 2TB,connected to mac mini server leopard, LG DP1W mediacenter/player for watching movies on my tv from my harddisk tower connected to time capsule by usb/hub on G-technologie 8 TB G-SPEED Q RAID-oplossing(hard disk tower) is this gonna work??

    hello,
    ik have a question about the hardware i wanna buy
    i have a IMAC that is 3 years old and running on leopard snow 10.5, i want to upgrade the software from this mac to 10.6 and put 4GB workmemory into it, i have now 1GB.
    I have ordered a MAC MINI SERVER leopard snow 10.6(also ordered a dvd superdrive, wireless typing, and a wireless mouse for the mac mini)
    i have ordered a Time Capsule 2TB
    i want to connect to the Time capsule this:
    G-technologie 8 TB G-SPEED Q RAID-oplossing (hdtower)
    UPC of EAN nr.: 705487185744 in the mac store
    i want to connect to the Time Capsule this for my TV to play movies from the harddisktower connected to my time capsule:
    LG DP1W MEDIAPLAYER/CENTER without harddisk build into it, with WiFi connection butt, i'm gonna use te 2.0 USB connection that is faster and stabile.
    -Connecting the Time Capsule to the Internet
    i'm also gonna use this: gear4 PG467 UNITY REMOTE(control everything with iphone)
    i'm also want to connect by 2.0 USB my canon all in one foto printer, WiFi is not working properly and i have many times problems with connection my printer wireless.....
    And for the future i also want to connect a Dymo Labelprinter by 2.0 USB
    in total 7 usb connections: only the time capsule have one port, so i can split to more ports by a usb-hub????
    Well i have another question: i want to store a movie database on the external harddisktower that is connected to the time capsule.....
    How can... let me say: my sister, and father who live on 2 different adresses get access to the movie database and watch them at their own home?????
    can i secure it with a password given to my sister or father that is only works for 1 file???? so that i get multiple passwords
    how does this works??? to share/upload/download to the internet only to one person????
    i hope someone can help me????

    hello,
    ik have a question about the hardware i wanna buy
    i have a IMAC that is 3 years old and running on leopard snow 10.5, i want to upgrade the software from this mac to 10.6 and put 4GB workmemory into it, i have now 1GB.
    I have ordered a MAC MINI SERVER leopard snow 10.6(also ordered a dvd superdrive, wireless typing, and a wireless mouse for the mac mini)
    i have ordered a Time Capsule 2TB
    i want to connect to the Time capsule this:
    G-technologie 8 TB G-SPEED Q RAID-oplossing (hdtower)
    UPC of EAN nr.: 705487185744 in the mac store
    i want to connect to the Time Capsule this for my TV to play movies from the harddisktower connected to my time capsule:
    LG DP1W MEDIAPLAYER/CENTER without harddisk build into it, with WiFi connection butt, i'm gonna use te 2.0 USB connection that is faster and stabile.
    -Connecting the Time Capsule to the Internet
    i'm also gonna use this: gear4 PG467 UNITY REMOTE(control everything with iphone)
    i'm also want to connect by 2.0 USB my canon all in one foto printer, WiFi is not working properly and i have many times problems with connection my printer wireless.....
    And for the future i also want to connect a Dymo Labelprinter by 2.0 USB
    in total 7 usb connections: only the time capsule have one port, so i can split to more ports by a usb-hub????
    Well i have another question: i want to store a movie database on the external harddisktower that is connected to the time capsule.....
    How can... let me say: my sister, and father who live on 2 different adresses get access to the movie database and watch them at their own home?????
    can i secure it with a password given to my sister or father that is only works for 1 file???? so that i get multiple passwords
    how does this works??? to share/upload/download to the internet only to one person????
    i hope someone can help me????

  • Can I set up RAID 1 in Mac Mini Server?

    Sorry if I am in the wrong forum, but would like to know if the new Mac Mini server can be set up as RAID 1 or 0 and does it require reinstalling OS after formatting, or it comes already in RAID?
    thanks,

    Officially, yes, you need to off-load to a backup, configure the RAID-1, and reload onto the mirrorset.
    If you're feeling lucky, you can potentially [activate RAID-1 without the archive|http://www.afp548.com/article.php?story=20040827122302975]; on-line. Search for (other) discussions of using the DiskUtil tool and enabling disk mirroring for various of the previous discussions.
    But if something goes wrong with the on-line conversion, a bug or a power drop-out or a disk glitch or or... ?
    RAID-0 is striping; two disks together presented as one bigger disk; targets I/O performance.
    RAID-1 is mirroring; two disks together presented as one; targets reliability.
    RAID-0 and RAID-1 (and the other RAID levels) can be hardware-based or software based.
    The Mac Mini Server uses software-based RAID.
    And for completeness, neither RAID-0 nor RAID-1 is an archival strategy.
    As for the other question, do you have one disk showing, or two? If two, you're not running RAID-1. All of the Mac Mini Server boxes I've seen have arrived not configured for RAID-1. They've arrived as two single disks; as what the RAID folks tend to call JBOD; Just a Bunch Of Disks.

Maybe you are looking for

  • Sat Pro A60: ati2dvag display driver not working properly

    help.... i know very little about computer and need to know what, how and where i can get a solution to this problem. It occurs more and more frequently now, it messes up the display and i have to restart only for it to happen again. i tried to down

  • Backup iMovie projects to DVD

    I would like to back up 1 to 2 hours of a iMovie project to DVD. I am bying Toast that I am told can back up large projects spanning disks, I have Dual layer Lacie burner, What is the Max that I can Span and what volume can I store on a dual layer di

  • Old Accessories don't work.

    So, I had an original iPhone. Paid full price for it. Then they dropped the price by $200. Bought a car integration kit for my MINI ($300 + installation), as well as a dock for my desk, etc. etc. Now I have the new iPhone and it won't work with any o

  • How to pass message to standard message container

    Dear All, I am working on Exit for process order confermation while saving (CORK). In that i am using poviding Errorr message when raw material is not consum as per BOM. So while checking raw material consumed from RESB table in loop i want to add er

  • Messages get garbled

    Once in a while the body of my messages in my inbox get "garbled", meaning the messages all look like http code and can't be read. And the code in one doesn't seem to necessarily match the message - inside one could be referencing a different message