Flylib.com

Books Software

 
 
 

Microsoft Windows Small Business Server 2003 Administrators Companion (Pro-Administrators Companion) - page 46

 < Day Day Up > 


Summary

When you finish this chapter, the basic installation and configuration of Windows Small Business Server is complete. Of course, there’s more you can do to polish your Windows Small Business Server network to a high gloss . In the next chapters, you’ll find information on disk management and storage alternatives.



 < Day Day Up > 
 < Day Day Up > 


Chapter 7: Disk Management

Arguably the single most important function that a server provides to the rest of the network is to be a central, secure, managed file storage area. By centralizing file storage on a server, it becomes an order of magnitude easier to ensure the safety, integrity, recoverability, and availability of the core files of your business. Instead of having files spread all across the network on individual client computers, you have them in a single place—easier to share among collaborators, easier to back up, easier to recover in the event of a disaster, and easier to secure so that only those people who should have access to a file, do. The downside to having all your important files in a single location is the potential for a single point of failure and the need for high availability of the files, since your business depends on them. This makes it imperative that you carefully manage the underlying disks that support your file storage and that those disks be both redundant and thoroughly backed up.

In this chapter, we’ll cover the underlying disk management that makes it possible to store your files and protect against loss, corruption, or disaster. In Chapter 8, “Storage Management,” we’ll cover some of the new features of Microsoft Windows Small Business Server 2003 that enable you to manage storage, protect critical files, and provide versioning of shared files to protect against corruption or misadventure. Additional backup and recovery details are covered in Chapter 13, “Backing Up and Restoring Data.”

The Search for Disaster Protection

Traditionally, large businesses have used a variety of techniques to ensure that files stored on a server were both secure and safe. These solutions tend to be expensive, but, when spread across all the supported workstations and buried in a large MIS budget, they are feasible . The same solutions would not be feasible or acceptable in most small businesses, but that doesn’t change the very real need of those small businesses to protect themselves from disaster. Fortunately, there are both hardware and software solutions that can provide a very high level of security and safety. However, before we can talk about those solutions, let’s make sure we all understand the terminology of disk management.



 < Day Day Up > 
 < Day Day Up > 


Understanding Disk Terminology

Before going into the details of managing disks and storage, let’s review some definitions.

  • Physical drive The actual hard disk itself, including the case, electronics, platters, and all that stuff. Not terribly important to the disk administrator.

  • Partition A portion of the hard disk. In many cases, this will be the entire hard disk space, but it needn’t be.

  • Allocation unit The smallest unit of managed disk space on a hard disk or logical volume. Also called a cluster .

  • Primary partition A portion of the hard disk that’s been marked as a potentially bootable logical drive by an operating system. MS-DOS can support only a single primary partition, but Microsoft Windows NT, Windows 2000, Windows XP, and Windows Server 2003 can support multiple ones. Only four primary partitions can be on any hard disk.

  • Extended partition A non-bootable portion of the hard disk that can be subdivided into logical drives. There can be only a single extended partition per hard disk, but this partition can be divided into multiple logical drives .

  • Extended volume Similar to, and sometimes synonymous with, a spanned volume, this is any dynamic volume that has been extended to make it larger than its original size . When it uses portions of more than one physical disk, it is more properly referred to as a spanned volume.

  • Logical drive A section or partition of a hard disk that acts as a single unit. An extended partition can be divided, for example, into multiple logical drives.

  • Logical volume Another name for a logical drive.

  • Basic disk A traditional disk drive that is divided into one or more partitions, with a logical drive in the primary partition, if present, and one or more logical drives in any extended partitions. Basic disks do not support the more advanced functions of Disk Management, but they can be converted to dynamic disks in many cases.

  • Dynamic disk A managed hard disk that can be used to create various volumes .

  • Volume A unit of disk space composed of one or more sections of one or more dynamic disks.

  • Simple volume The Disk Management equivalent of a partition. A portion of a single dynamic disk, it can be assigned either a single drive letter or no drive letter and can be attached (mounted) on zero or more mount points.

  • RAID (redundant array of independent [formerly “inexpensive”] disks) The use of multiple hard disks in an array to provide for larger volume size, fault tolerance, and increased performance. RAID comes in different levels, such as RAID-0, RAID-1, and RAID-5. Higher numbers don’t necessarily indicate greater performance or fault tolerance, just different methods of doing the job.

  • Spanned volume A collection of portions of hard disks combined into a single addressable unit. A spanned volume is formatted like a single drive and can have a drive letter assigned to it, but it will span multiple physical drives. A spanned volume—occasionally referred to as an extended volume—provides no fault tolerance and increases your exposure to failure but does permit you to make more efficient use of the available hard disk space.

  • Striped volume Like a spanned volume, a striped volume combines multiple hard disk portions into a single entity. A striped volume uses special formatting to write to each of the portions equally in a stripe to increase performance. A striped volume provides no fault tolerance and actually increases your exposure to failure, but it is faster than either a spanned volume or a single drive. A stripe set is often referred to as RAID-0, although this is a misnomer because plain striping includes no redundancy.

  • Mirror volume A pair of dynamic volumes that contain identical data and appear to the world as a single entity. Disk mirroring can use two drives on the same hard disk controller or use separate controllers, in which case it is sometimes referred to as duplexing . In case of failure on the part of either drive, the other hard disk can be split off so that it continues to provide complete access to the data stored on the drive, providing a high degree of fault tolerance. This technique is called RAID-1.

  • RAID-5 volume Like a striped volume, this combines portions of multiple hard disks into a single entity with data written across all portions equally. However, it also writes parity information for each stripe onto a different portion, providing the ability to recover in the case of a single drive failure. A RAID-5 volume provides excellent throughput for read operations but is substantially slower than all other available options for write operations.

  • SLED (single large expensive disk) Now rarely used, this strategy is the opposite of the RAID strategy. Rather than using several inexpensive hard disks and providing fault tolerance through redundancy, you buy the best hard disk you can and bet your entire network on it. If this doesn’t sound like a good idea to you, you’re right. It’s not.



 < Day Day Up >