Trying to backup Netware
I am looking for a way to backup Netware in a timely fashion. Snapshots seem to be the best way, however, I have not found a hardware snapshot tool. With Compaq's SAN solution, there is no virtual replicator for Netware. The only software solution I have found is Legato's Snapshot Server. I am testing it now and find that it doesn't work with NSS volumes very well, if at all. Do you have any recommendations?



Amazon S3 in the spotlight: Your 34-page backup guide
In this guide curated by the SearchAWS.com editors, you’ll evaluate and overcome the DR tradeoffs associated with Amazon S3, with guidance on solidifying an AWS backup plan and securing S3 buckets. Download your copy now.
By submitting your personal information, you agree that TechTarget and its partners may contact you regarding relevant content, products and special offers.
You also agree that your personal information may be transferred and processed in the United States, and that you have read and agree to the Terms of Use and the Privacy Policy.
I have spent some time over at Compaq and have been able to play in the lab with Netware on a SAN. I have backed up Netware using Arcserve (and other backup software) over a SAN and have found that I was able to max out the "feed speed" of the tape library, which reduced what I call the tape "shoe shine" effect. "Shoe shine" is what happens when the tape needs to be repositioned for writing as new data becomes available within the tape's buffers and the TOC is updated.
If you force feed the tapes with fast disks, this happens less frequently and backup speed just about match the theoretical throughput of the tape drives. For non-impact backup for production volumes, I have found using SAN-based "clones" is the best method for Netware. Just create a mirrorset on the StorageWorks array for the disks you want to back up.
Using CLIscript on the StorageWorks stuff, you can automate the process. (NOTE: this requires a license for Snapshot/Clone on the StorageWorks array!)
Here is a sample cliscript to create a mirrorset:
cli add mirr m7 disk10300 disk20300
cli init m7
cli add unit d6 m7
quit
Once you have a mirrorset created, you can install your applications on it so the application is RAID protected. When creating a clone of your production volume, you may still want the production volume to be RAID protected so you should use three disk mirror sets. Use the method below to add a third drive to your mirrorset using CLIscript. Please note that these commands may have changed for the new EVA disk arrays. These commands should work with version 8.5S and above of the StorageWorks firmware for RA and EMA storage arrays.
This routine adds a third drive into a mirror to catch up so it can become a clone.
# this sets the mirrorset for three disks
cli set m7 nopolicy
cli set m7 member = 3 (this sets the membership of mirrorset m7 to three disks)
cli set m7 replace = disk30100 (this adds disk30100 to the mirrorset)
cli show m7 # wait for the third drive to normalize
waitnormal m7 30 3600
quit
The text below is a sample CLIscript to actually break off the clone and create a new unit from the clone that can be mounted for backup on your SAN connected backup server.
# remove third member
cli reduce disk30100
# wait for the unit to normalize for 60 seconds and show status every 30 seconds
waitnormal m7 30 60
# must create a new container which is a single drive mirrorset
cli add mirr m1 disk30100
# add new unit (!!!USE NODESTROY TO SAVE THE DATA!!!)
cli init m1 nodestroy
cli add unit d6 m1# unit created, now add SSP for the unit
cli set d6 disable=all enable=Backup1,Backup2 (enable the disk for access by the backup servers dual HBA's)
cli show m1
quit
The exact same capability is available from the Hitachi and other storage vendors that have similar capability in hardware (there are some exceptions). Check with your vendor. Some of the vendors also let you have RAID protected clones instead of JBODs. If this is important to you, ask your vendor if they have that capability.
Chris
Editor's note: Do you agree with this expert's response? If you have more to share, post it in one of our .bphAaR2qhqA^0@/searchstorage>discussion forums.
Dig Deeper on Data storage backup tools
Have a question for an expert?
Please add a title for your question
Get answers from a TechTarget expert on whatever's puzzling you.
Meet all of our Data Backup experts
View all Data Backup questions and answers
Start the conversation
0 comments