This procedure applies to Mountain Lion also.
_______________________
Attachments for download at bottom of this article.
Download the plists instead of copying from this article and pasting in text edit, doing this will result in extra hidden characters in the files which will cause problems unless you clean it up.
automount.plist (sample plist for mounting two filesystems)
config.plist (sample plist)
ATTO driver
_______________________
Lion (Xsan 2.3) client configuration for StorNext MDSs. (includes SpycerBoxes)
On the Mac you wish to attach to StorNext, make sure a Fibre Channel card is installed, the Fibre Channel switch is zoned, and Fibre cables are attached.
"ping" check to MDS and "cvlabel -l" sees all the expected LUNs.
- Enable Xsan from System Preferences. There must be a Fibre card installed for this option to be available.
- Start a terminal session, then login as admin: sudo su
- Change to the following directory: cd /Library/Preferences/Xsan/
- Create or update fsnameservers file to point to the MDS Meta IP address(s).
- Create or update the config.plist, update the metadadtaNetwork string as needed, link to download the file at bottom.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>computers</key> <array/> <key>metadataNetwork</key> <string>10.0.0.0/24</string> <key>ownerEmail</key> <string></string> <key>ownerName</key> <string></string> <key>role</key> <string>CLIENT</string> <key>sanName</key> <string>DVS Test SAN</string> </dict> </plist>
- Create or update the automount.plist, update the filesystem name as needed (spycerbox), link to download the file at bottom.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>spycerbox</key> <dict> <key>AutoMount</key> <string>rw</string> <key>MountOptions</key> <dict/> </dict> </dict> </plist>
- Stop and start xsan, the volume should show up under the devices list in the finder.
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.xsan.plist sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.xsan.plist
or
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.xsan.plist
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.servermgrd.plist
Notes:
Test mounted and copy tests to StorNext 3.5.1, 4.0.1.1, 4.2.
Quantum officially support Xsan 2.3 clients starting from StorNext 4.1.2.
Apple officially support xSan 2.3 clients at StorNext 4.1.1 .
Attached is the ATTO Celerity 8X driver set. This appears to clear some issues found where not all luns are being seen by 10.7 and 10.8 systems.
______________________________
Example automount.plist (two file systems)
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Volume_name</key> <dict> <key>AutoMount</key> <string>rw</string> <key>MountOptions</key> <dict/> </dict> <key>Another_volume_name</key> <dict> <key>AutoMount</key> <string>rw</string> <key>MountOptions</key> <dict/> </dict> </dict> </plist>
______________________________
Example Automount.plist (4 file systems)
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>VADER</key> <dict> <key>AutoMount</key> <string>rw</string> <key>MountOptions</key> <dict/> </dict> <key>YODA</key> <dict> <key>AutoMount</key> <string>rw</string> <key>MountOptions</key> <dict/> </dict> <key>WOOKIEE</key> <dict> <key>AutoMount</key> <string>rw</string> <key>MountOptions</key> <dict/> </dict> <key>X-WING</key> <dict> <key>AutoMount</key> <string>rw</string> <key>MountOptions</key> <dict/> </dict> </dict> </plist>
______________________________
0 Comments