1
00:00:00,000 --> 00:00:12,720
In this video, you'll learn about data center storage. So what's going on in the data center?

2
00:00:12,720 --> 00:00:17,600
Well, in the data center, you have centralized storage. And the idea is that your servers

3
00:00:17,600 --> 00:00:22,320
are not keeping their files locally, but you keep them on the centralized storage and that

4
00:00:22,320 --> 00:00:28,240
makes it easy to protect your storage to make backups, and so on. Fiber Channel and iSCSI

5
00:00:28,240 --> 00:00:33,919
are common storage solutions used in the data center. And in both, a dedicated storage network

6
00:00:33,919 --> 00:00:40,799
is used to connect servers to your storage. iSCSI in Linux environments is fairly popular

7
00:00:40,799 --> 00:00:47,360
because in iSCSI, SCSI packets are sent over an IP network. So instead of using the SCSI

8
00:00:47,360 --> 00:00:54,160
protocol to talk to your SCSI hard disk, you put a network between the hard disks and your servers.

9
00:00:54,720 --> 00:00:58,880
The nice thing about iSCSI is that iSCSI services can easily be offered by

10
00:00:58,880 --> 00:01:04,959
Linux servers. Most Linux servers are offering the iSCSI target, and this iSCSI target is what

11
00:01:04,959 --> 00:01:11,760
you install to expose drives to externally. So you could convert a Linux server with a proper

12
00:01:11,760 --> 00:01:18,320
configuration in a data center storage area network, if you want. So on the server, you need

13
00:01:18,320 --> 00:01:24,160
the iSCSI target, and on the client, you use a component known as the iSCSI initiator, which

14
00:01:24,160 --> 00:01:30,559
will reach out and find the drives provided by the iSCSI storage device. Fiber Channel is also

15
00:01:30,559 --> 00:01:37,040
commonly used, but Fiber Channel is not as open as iSCSI. The protocols depend on the vendor of

16
00:01:37,040 --> 00:01:42,559
the hardware. Now let's find out what needs to be done to connect your servers to data center storage.

17
00:01:43,519 --> 00:01:50,000
While doing so, very frequently redundant network connections are used, because you are

18
00:01:50,000 --> 00:01:54,639
connecting to an external drive. And what is going to happen if your network cable fails?

19
00:01:54,639 --> 00:02:00,239
Well, that is exactly what you don't want to happen, and that is why redundant network connections

20
00:02:00,239 --> 00:02:05,680
are coming in. But if you have redundant network connections, the problem would be that the same

21
00:02:05,680 --> 00:02:11,440
hard disk would be seen twice. So you don't see one, but you would see two hard disks, or even four

22
00:02:11,440 --> 00:02:17,520
hard disks, depending on the configuration of your storage. And that is why, in order to implement

23
00:02:17,520 --> 00:02:24,399
redundant networking, multipathing is commonly used. And that makes that you don't see the same

24
00:02:24,399 --> 00:02:31,600
device twice, but a multipath driver provides one unified storage device that is used. And you just

25
00:02:31,600 --> 00:02:37,440
use the multipath driver, and the multipath driver will make sure that the appropriate network

26
00:02:37,440 --> 00:02:42,160
connection is used. And if one connection is going down, no problem for that driver,

27
00:02:42,800 --> 00:02:46,000
you will still keep on being connected to your storage.

