-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmachines-old.txt
5394 lines (4392 loc) · 175 KB
/
machines-old.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Machine Maintenance and Details
===============================
Steven K. Baum
v0.5, 2012-05-21
:doctype: book
:toc:
:icons:
:threddshome: http://www.unidata.ucar.edu/projects/THREDDS/
:cdm: http://www.unidata.ucar.edu/software/netcdf-java/CDM/index.html
:ncml: http://www.unidata.ucar.edu/software/netcdf/ncml/
:netcdf: http://www.unidata.ucar.edu/software/netcdf/
:hdf: http://www.hdfgroup.org/
:grib: http://www.grib.us/
:nexrad: http://en.wikipedia.org/wiki/NEXRAD
:wms: http://en.wikipedia.org/wiki/Web_Map_Service
:wcs: http://en.wikipedia.org/wiki/Web_Coverage_Service
:http: http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol
:java: http://www.java.com/en/
:tomcat: http://tomcat.apache.org/
:numbered!:
[preface]
Preface
-------
How to maintain the various machines of our group.
:numbered:
Summary
-------
|=========================================
| *Name* | *IP* | *OS* | Kernel | *Parallel OS* | *CPU* | *Cores* | *RAM Size* | *RAM Type* | *Mobo* | *RAID* | *Hard Drives*
| xref:copano[copano] | 128.194.27.93 | CentOS 7.2.1511 | 3.10.0-327.22.2.el7.x86_64 | none | 2 x Xeon E5-2630 v3 2.40GHz | 8 | 64 | 8 x 2133MHz unknown | Supermicro X10DRH-iT | Intel C610/X99 sSATA | NA
| xref:hafen[hafen] | 165.91.85.34 | CentOS 5.7 | 2.6.18-274.7.1.el5 | none | Xeon X5690 | NA | 96 | 12 x Kingston 9965516-001.B00LF | Supermicro X8DTH-i/6/iF/6F | MegaRAID SAS 9265-8i | NA
| xref:barataria[barataria] | 165.91.85.30 | CentOS 5.7 | 2.6.18-274.7.1.el5 | none | Xeon E5620 | 4 | 24 | 6 x Kingston 9965426-049.A00LF | Supermicro X8DTH-i/6/iF/6F | MegaRAID SAS 9265-8i | NA
| xref:redfish[redfish] | 128.194.27.129 | CentOS 7.3.1611 | 3.10.0-514.16.1.el7.x86_64 | none | Xeon E5-2420 1.90GHz | 6 | 64 | 4 x Kingston E70D186E | Supermicro X9DBU | none | NA
| xref:rho[rho] | 165.91.85.151 | CentOS 5.8 | 2.6.18-308.el5 | none | 2 x Xeon E5620 2.40GHz | 4 | 24 | 6 x Kingston 9965426-087.A00LF | Supermicro X8DTH-i/6/iF/6F | MegaRAID SAS 9265-8i | NA
| xref:terrebonne[terrebonne] | 165.91.85.132 | CentOS 7.0.1406 | 2.6.18-194.el5 | none | 2 x Opteron | 8 | 32 | 8 x Kingston 9965447-056.A00LF | Supermicro H8DG6/H8DGi | MegaRAID SAS 9280-4i4e | 36 x Hitachi 7K2000 HDS722020ALA330 2TB
| xref:zeta[zeta] | 165.91.54.228 | OS X | NA | none | NA | NA | NA | NA | NA | NA | NA
| xref:rocks[rocks] | 128.194.106.198 | CentOS 6.0 | 2.6.32-71.7.1.el6 | none | i5-2500K | 1 | 32 | 4 x Kingston 99U5471-056.A00LF | ASUSTeK P8P67 PRO REV 3.1 | NA | NA
| xref:megara[megara] | 165.91.85.39 | CentOS 5.3 | 2.6.18-128.el5xen | none | Opteron 8222 SE | 4 | 32 | 16 x AD HYMP525P72CP4-Y5 | Dell 0FR933 vA00 | Dell PERC 5/i | NA
| xref:gcoos1[gcoos1] | 128.194.26.145 | CentOS 7.2.1511 | 3.10.0-327.el7.x86_64 | none | 2 x Xeon E5620 2.40GHz | 4 | 96 | 8 x Micron 72KSZS2G72PZ-1G1D1 | Supermicro X8DTL | MegaRAID SAS 2008 | NA
| xref:gcoos2[gcoos2] | 128.194.26.146 | CentOS 7.2.1511 | 3.10.0-327.22.2.el7.x86_64 | none | 2 x Xeon E5620 2.40GHz | 4 | 96 | 8 x Micron 72KSZS2G72PZ-1G1D1 | Supermicro X8DTL | MegaRAID SAS 2008 | NA
| xref:gcoos3[gcoos3] | 128.194.27.48 | CentOS 7.2.1511 | 3.10.0-327.22.2.el7.x86_64 | none | 2 x Xeon E5620 2.40GHz | 4 | 64 | 8 x Micron 72KSZS2G72PZ-1G1D1 | Supermicro X8DTL | MegaRAID SAS-3 3108 | NA
| xref:gcoos4[gcoos4] | 128.194.27.108 | CentOS 7.2.1511 | 3.10.0-327.22.2.el7.x86_64 | none | 2 x Xeon E5620 2.40GHz | 4 | 64 | 8 x Micron 72KSZS2G72PZ-1G1D1 | Supermicro X8DTL | MegaRAID SAS-3 3108 | NA
| xref:gcoos5[gcoos5] | 128.194.27.210 | CentOS 7.6.1810 | 3.10.0-957.el7.x86_64 | none | 2 x Xeon E5-2640 v4 2.40GHz | 20 | 128 | 8 x SK Hynix HMA82GR7AFR8N-VK | Supermicro X10DRW-iT | MegaRAID SAS-3 3008 | NA
| xref:chenier[chenier] | 165.91.85.62 | CentOS 5.6 | 2.6.18-238.19.1.el5 | Rocks 5.4.3 | 2 x AMD 2427 | 6 | 16 | NA | Supermicro H8DM8-2 | 3ware Inc 9650SE | 8 x Seagate ST3000DM001 3TB
| xref:atchafalaya[atchafalaya] | 165.91.85.122 | CentOS 6.5 | 2.6.18-194.el5 | Rocks 6.1.1 | 2 x AMD 6128 | 8 | 32 | 8 x DDR3 1333MHz Kingston 9965447-056 | Supermicro H8DG6/H8DGi | MegaRAID SAS 2108 | 36 x Hitachi 7K2000 HDS722020ALA330 2 TB
| xref:merrimack[merrimack] | 165.91.85.150 | CentOS 5.6 | 2.6.18-238.19.1.el5 | Rocks 5.4.3 | 2 x AMD 2378 | 4 | 8 | 8 x DDR2 333MHz | Supermicro H8DM3-2 | MegaRAID SAS 8208ELP | 8 x Seagate ES.2 ST31000340NS 1TB
|=========================================
RAID Info
~~~~~~~~~
|=========================================
| *Name* | *RAID* | *Hard Drives* | *Virtual Drive 1* | *Virtual Drive 2*
| xref:copano[copano] | Intel C610/X99 sSATA | 24 x TrueNAS 8TB Enterprise Nearline SAS 6Gb/s 7200RPM 64MB | 95 TB | 95 TB
| xref:hafen[hafen] | MegaRAID SAS 9265-8i | 16 x Seagate ST91000640SS 1TB | 11.819 TB | NA
| xref:barataria[barataria] | MegaRAID SAS 9265-8i | 36 x Seagate ES.2 ST33000650SS 3TB SAS | 43.656 TB | 43.656 TB
| xref:rho[rho] | MegaRAID SAS 9265-8i | 52 x Seagate ST33000650SS 3TB SAS | 76.398 TB (28 drives) | 49.113 TB (24 drives)
| xref:terrebonne[terrebonne] | MegaRAID SAS 9280-4i4e | 36 x Hitachi 7K2000 HDS722020ALA330 2TB | 18.188 TB (12 drives) | 38.195 TB (24 drives)
| xref:megara[megara] | Dell PERC 5/i | NA | NA | NA
| xref:gcoos1[gcoos1] | MegaRAID SAS 2008 | NA | NA | NA
| xref:gcoos2[gcoos2] | MegaRAID SAS 2008 | NA | NA | NA
| xref:gcoos3[gcoos3] | MegaRAID SAS-3 3108 | NA | NA | NA
| xref:gcoos4[gcoos4] | MegaRAID SAS-3 3108 | NA | NA | NA
| xref:chenier[chenier] | 3ware Inc 9650SE | 8 x Seagate ST3000DM001 3TB | 16.763 TB (8 drives) | NA
| xref:atchafalaya[atchafalaya] | MegaRAID SAS 2108 | 36 x Hitachi 7K2000 HDS722020ALA330 2 TBa | 38.195 TB (24 drives) | 18.118 TB (12 drives)
| xref:merrimack[merrimack] | MegaRAID SAS 8208ELP | 8 x Seagate ES.2 ST31000340NS 1TB | NA (8 drives) | NA
|=========================================
Notes:
* The name of the machine can be found via +hostname+.
* The IP number can be found via +ip addr show+.
* The kernel version can be found via +uname -a+.
* The distro and version can be found via +cat /etc/*-release+.
* The CPU type can be found via +less /proc/cpuinfo+.
[[copano]]
copano
------
BIOS
~~~~
American Megatrends v1.1, 05/15/2015, Rev. 5.6
System
~~~~~~
Name: Supermicro SSG-6048R-E1CR36L
SN: S17496625B25923
UUID: 00000000-0000-0000-0000-0CC47A6E9816
SKU: 085915D9
Chassis SN: C8470FE41N61499
https://www.supermicro.com/products/system/4u/6048/ssg-6048r-e1cr36l.cfm[+https://www.supermicro.com/products/system/4u/6048/ssg-6048r-e1cr36l.cfm+]
Mobo (Integrated with Case)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Name: Supermicro X10DRH-iT v1.01
SN: NM15AS016180a
https://www.supermicro.com/products/motherboard/Xeon/C600/X10DRH-iT.cfm[+https://www.supermicro.com/products/motherboard/Xeon/C600/X10DRH-iT.cfm+]
RAM
~~~
64 GB - 8x8GB DIMM at 2133 MHz
Power Supply
~~~~~~~~~~~~
Name: 2 x Supermicro PWS-1K28P-SQ
SN1: P1K28CF35MN1528
SN2: P1K28CF35MN1527
CPU
~~~
Name: 2 x Intel Xeon E5-2630 at 2.40 GHz
Socket: LGA2011-3
Hard Drives
~~~~~~~~~~~
58 x HGST HUH728080AL5204 8 GB, 7200 RPM, SAS 12 Gb/s
https://www.hgst.com/sites/default/files/resources//Ultrastar-He8-DS.pdf[+https://www.hgst.com/sites/default/files/resources//Ultrastar-He8-DS.pdf+]
https://www.newegg.com/Product/Product.aspx?Item=N82E16822145998[+https://www.newegg.com/Product/Product.aspx?Item=N82E16822145998+]
https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=5&ved=0ahUKEwjVmej95M7bAhXM6J8KHVNFCQEQFghvMAQ&url=https%3A%2F%2Fwww.hgst.com%2Fsites%2Fdefault%2Ffiles%2Fresources%2FUltrastar-He8-DS.pdf&usg=AOvVaw1wfZW_bNmHm3oGaYDiVKZa
RAID Controller
~~~~~~~~~~~~~~~
Intel Corporation C610/X99 series chipset sSATA Controller
https://www.intel.com/content/www/us/en/chipsets/x99-chipset-pch-spec-update.html[+https://www.intel.com/content/www/us/en/chipsets/x99-chipset-pch-spec-update.html+]
SAS Controller
~~~~~~~~~~~~~~
LSI Logic / Symbios Logic SAS3008 PCI-Express Fusion-MPT SAS-3 (rev 02)
LSI Logic / Symbios Logic SAS2308 PCI-Express Fusion-MPT SAS-2 (rev 05)
https://hwraid.le-vert.net/wiki/LSIFusionMPTSAS2[+https://hwraid.le-vert.net/wiki/LSIFusionMPTSAS2+]
PCI-2 storage - SAS2308 PCI-Express Fusion-MPT SAS-2
Found via lshw.
-----
d0 - sda
d1 - sdb
d2 - sdk
d3 - sdl
d4 - sdm
d5 - sdn
d6 - sdo
d7 - sdp
d8 - sdq
d9 - sdr
d10 - sds
d11 - sdt
d12 - sdc
d13 - sdu
d14 - sdv
d15 - sd2
d16 - sdx
d17 - sdy
d18 - sdz
d19 - sdaa
d20 - sdab
d21 - sdac
d22 - sdd
d23 - sde
d24 - sdf
d25 - sdg
d26 - sdh
d27 - sdi
d28 - sdj
-----
PCI-3 - SAS2308 PCI-Express Fusion-MPT SAS-2
PCI-4 - SAS2308 PCI-Express Fusion-MPT SAS-2
-----
d0 - sdaf
d1 - sdag
d2 - sdah
d3 - sdai
d4 - sdaj
d5 - sdak
d6 - sdal
d7 - sdam
d8 - sdan
d9 - sdao
d10 - sdap
d11 - sdaq
d12 - sdar
d13 - sdas
d14 - sdat
d15 - sdau
d16 - sdav
d17 - sdaw
d18 - sdax
d19 - sday
d20 - sdaz
d21 - sdba
d22 - sdbb
d23 - sdbc
d24 - sdbd
d25 - sdb3
d26 - sdbf
d27 - sdbg
d28 - sdbh
-----
PCI-2 - SAS3008 PCI-Express Fusion-MPT SAS-3
PCI-3 - SAS2308 PCI-Express Fusion-MPT SAS-2
Kernel Command Line
~~~~~~~~~~~~~~~~~~~
BOOT_IMAGE=/vmlinuz-3.10.0-327.22.2.el7.x86_64 root=UUID=fc5a6dbc-eec5-4e7d-8551-a87cd897a72a ro crashker
nel=auto rd.md.uuid=03117eee:30533b14:de066af2:6973ebaa rd.md.uuid=ef68e8b6:349c935e:8e253215:c5759add rhgb quiet LANG=en_US.UTF-8
Software RAID
~~~~~~~~~~~~~
Overview
^^^^^^^^
https://raid.wiki.kernel.org/index.php/A_guide_to_mdadm[+https://raid.wiki.kernel.org/index.php/A_guide_to_mdadm+]
https://unix.stackexchange.com/questions/4561/how-do-i-find-out-what-hard-disks-are-in-the-system[+https://unix.stackexchange.com/questions/4561/how-do-i-find-out-what-hard-disks-are-in-the-system+]
-----
cat /proc/mdstat
Personalities : [raid1] [raid6] [raid5] [raid4]
md124 : active raid5 sdbe[8] sdal[12] sdbf[0] sdaj[5] sdah[11] sdak[7] sdaw[1] sdav[15] sdac[9] sdbg[3] sdi[4] sdm[14] sdk[6] sdl[2]
101580637184 blocks super 1.2 level 5, 512k chunk, algorithm 2 [14/14] [UUUUUUUUUUUUUU]
bitmap: 0/59 pages [0KB], 65536KB chunk
md125 : active raid5 sdh[8] sdp[15] sdai[9] sdw[5] sdbd[2] sdbc[11] sdba[7] sdu[1] sdj[10] sds[6] sdo[14](S) sdt[4] sda[12] sdn[3] sdb[0]
101580637184 blocks super 1.2 level 5, 512k chunk, algorithm 2 [14/14] [UUUUUUUUUUUUUU]
bitmap: 4/59 pages [16KB], 65536KB chunk
md126 : active raid1 sdad2[0] sdae2[1]
111327232 blocks super 1.2 [2/2] [UU]
bitmap: 1/1 pages [4KB], 65536KB chunk
md127 : active raid1 sdad1[0] sdae1[1]
488384 blocks super 1.0 [2/2] [UU]
bitmap: 0/1 pages [0KB], 65536KB chunk
-----
md124
^^^^^
-----
mdadm --detail /dev/md124
/dev/md124:
Version : 1.2
Creation Time : Mon Mar 21 11:29:01 2016
Raid Level : raid5
Array Size : 101580637184 (96874.85 GiB 104018.57 GB)
Used Dev Size : 7813895168 (7451.91 GiB 8001.43 GB)
Raid Devices : 14
Total Devices : 14
Persistence : Superblock is persistent
Intent Bitmap : Internal
Update Time : Tue Jun 12 13:59:22 2018
State : clean
Active Devices : 14
Working Devices : 14
Failed Devices : 0
Spare Devices : 0
Layout : left-symmetric
Chunk Size : 512K
Name : copano.tamu.edu:1 (local to host copano.tamu.edu)
UUID : 8ad97205:4608e487:7d32dcac:f8c05e43
Events : 128685
Number Major Minor RaidDevice State
0 67 144 0 active sync /dev/sdbf
1 67 0 1 active sync /dev/sdaw
2 8 176 2 active sync /dev/sdl
3 67 160 3 active sync /dev/sdbg
4 8 128 4 active sync /dev/sdi
5 66 48 5 active sync /dev/sdaj
6 8 160 6 active sync /dev/sdk
7 66 64 7 active sync /dev/sdak
8 67 128 8 active sync /dev/sdbe
9 65 192 9 active sync /dev/sdac
14 8 192 10 active sync /dev/sdm
11 66 16 11 active sync /dev/sdah
12 66 80 12 active sync /dev/sdal
15 66 240 13 active sync /dev/sdav
-----
md125
^^^^^
-----
mdadm --detail /dev/md125
/dev/md125:
Version : 1.2
Creation Time : Mon Mar 21 11:32:58 2016
Raid Level : raid5
Array Size : 101580637184 (96874.85 GiB 104018.57 GB)
Used Dev Size : 7813895168 (7451.91 GiB 8001.43 GB)
Raid Devices : 14
Total Devices : 15
Persistence : Superblock is persistent
Intent Bitmap : Internal
Update Time : Tue Jun 12 14:01:12 2018
State : clean
Active Devices : 14
Working Devices : 15
Failed Devices : 0
Spare Devices : 1
Layout : left-symmetric
Chunk Size : 512K
Name : copano.tamu.edu:2 (local to host copano.tamu.edu)
UUID : 68a23f69:ddc89b29:913936cf:e146d0ee
Events : 121294
Number Major Minor RaidDevice State
0 8 16 0 active sync /dev/sdb
1 65 64 1 active sync /dev/sdu
2 67 112 2 active sync /dev/sdbd
3 8 208 3 active sync /dev/sdn
4 65 48 4 active sync /dev/sdt
5 65 96 5 active sync /dev/sdw
6 65 32 6 active sync /dev/sds
7 67 64 7 active sync /dev/sdba
8 8 112 8 active sync /dev/sdh
9 66 32 9 active sync /dev/sdai
10 8 144 10 active sync /dev/sdj
11 67 96 11 active sync /dev/sdbc
12 8 0 12 active sync /dev/sda
15 8 240 13 active sync /dev/sdp
14 8 224 - spare /dev/sdo
-----
md126
^^^^^
-----
mdadm --detail /dev/md126
/dev/md126:
Version : 1.2
Creation Time : Wed Mar 16 11:36:11 2016
Raid Level : raid1
Array Size : 111327232 (106.17 GiB 114.00 GB)
Used Dev Size : 111327232 (106.17 GiB 114.00 GB)
Raid Devices : 2
Total Devices : 2
Persistence : Superblock is persistent
Intent Bitmap : Internal
Update Time : Tue Jun 12 14:04:44 2018
State : clean
Active Devices : 2
Working Devices : 2
Failed Devices : 0
Spare Devices : 0
Name : localhost.localdomain:root
UUID : 03117eee:30533b14:de066af2:6973ebaa
Events : 8720
Number Major Minor RaidDevice State
0 65 210 0 active sync /dev/sdad2
1 65 226 1 active sync /dev/sdae2
-----
md127
^^^^^
-----
mdadm --detail /dev/md127
/dev/md127:
Version : 1.0
Creation Time : Wed Mar 16 11:36:08 2016
Raid Level : raid1
Array Size : 488384 (477.02 MiB 500.11 MB)
Used Dev Size : 488384 (477.02 MiB 500.11 MB)
Raid Devices : 2
Total Devices : 2
Persistence : Superblock is persistent
Intent Bitmap : Internal
Update Time : Sun Jun 10 01:10:10 2018
State : clean
Active Devices : 2
Working Devices : 2
Failed Devices : 0
Spare Devices : 0
Name : localhost.localdomain:boot
UUID : ef68e8b6:349c935e:8e253215:c5759add
Events : 378
Number Major Minor RaidDevice State
0 65 209 0 active sync /dev/sdad1
1 65 225 1 active sync /dev/sdae1
-----
/proc/partitions
^^^^^^^^^^^^^^^^
-----
major minor #blocks name
65 224 125034840 sdae
65 225 488448 sdae1
65 226 111392768 sdae2
65 208 125034840 sdad
65 209 488448 sdad1
65 210 111392768 sdad2
65 211 7812096 sdad3
65 176 7814026584 sdab
65 144 7814026584 sdz
8 16 7814026584 sdb
65 128 7814026584 sdy
65 160 7814026584 sdaa
8 96 7814026584 sdg
8 112 7814026584 sdh
8 240 7814026584 sdp
65 192 7814026584 sdac
65 16 7814026584 sdr
65 0 7814026584 sdq
65 48 7814026584 sdt
65 80 7814026584 sdv
8 80 7814026584 sdf
65 64 7814026584 sdu
65 112 7814026584 sdx
8 224 7814026584 sdo
8 176 7814026584 sdl
8 64 7814026584 sde
8 48 7814026584 sdd
8 32 7814026584 sdc
8 192 7814026584 sdm
8 0 7814026584 sda
65 32 7814026584 sds
8 128 7814026584 sdi
65 96 7814026584 sdw
8 144 7814026584 sdj
8 160 7814026584 sdk
8 208 7814026584 sdn
9 127 488384 md127
9 126 111327232 md126
65 240 7814026584 sdaf
66 0 7814026584 sdag
66 16 7814026584 sdah
66 32 7814026584 sdai
66 48 7814026584 sdaj
66 64 7814026584 sdak
66 80 7814026584 sdal
66 96 7814026584 sdam
66 112 7814026584 sdan
66 128 7814026584 sdao
66 144 7814026584 sdap
66 160 7814026584 sdaq
66 192 7814026584 sdas
66 176 7814026584 sdar
66 208 7814026584 sdat
66 224 7814026584 sdau
66 240 7814026584 sdav
67 0 7814026584 sdaw
67 16 7814026584 sdax
67 32 7814026584 sday
67 48 7814026584 sdaz
67 64 7814026584 sdba
67 80 7814026584 sdbb
67 96 7814026584 sdbc
67 112 7814026584 sdbd
67 128 7814026584 sdbe
67 144 7814026584 sdbf
67 160 7814026584 sdbg
67 176 7814026584 sdbh
9 125 101580637184 md125
9 124 101580637184 md124
7 0 104857600 loop0
7 1 2097152 loop1
253 0 104857600 dm-0
-----
udisksctl status
~~~~~~~~~~~~~~~~
-----
MODEL REVISION SERIAL DEVICE
--------------------------------------------------------------------------
HGST HUH728080AL5204 C515 2EGMV1AV sda sdaf
HGST HUH728080AL5204 C515 2EGMULEV sdag sdb
HGST HUH728080AL5204 C515 2EGLPUSV sdah sdc
HGST HUH728080AL5204 C515 2EGNH6JV sdai sdd
HGST HUH728080AL5204 C515 2EGMY87V sdaj sde
HGST HUH728080AL5204 C515 2EGMTT2V sdak sdf
HGST HUH728080AL5204 C515 2EGMWW5V sdal sdg
HGST HUH728080AL5204 C515 2EGMY9GV sdam sdh
HGST HUH728080AL5204 C515 2EGKB31V sdan sdi
HGST HUH728080AL5204 C515 2EGNNELV sdao sdj
HGST HUH728080AL5204 C515 2EGNEK0V sdap sdk
HGST HUH728080AL5204 C515 2EGMT72V sdaq sdl
HGST HUH728080AL5204 C515 2EGLNDEV sdar sdm
HGST HUH728080AL5204 C515 2EGNEERV sdas sdn
HGST HUH728080AL5204 C515 2EGNHKTV sdat sdo
HGST HUH728080AL5204 C515 2EGNKU9V sdau sdp
HGST HUH728080AL5204 C515 2EGND2BV sdav sdq
HGST HUH728080AL5204 C515 2EGNND8V sdaw sdr
HGST HUH728080AL5204 C515 2EGKXV4V sdax sds
HGST HUH728080AL5204 C515 2EGNENGV sday sdt
HGST HUH728080AL5204 C515 2EGNWT2V sdaz sdu
HGST HUH728080AL5204 C515 2EGNLL8V sdba sdv
HGST HUH728080AL5204 C515 2EGLN2TV sdbb sdw
HGST HUH728080AL5204 C515 2EGN8K3V sdbc sdx
HGST HUH728080AL5204 C515 2EGNERKV sdbd sdy
HGST HUH728080AL5204 C515 2EGNU8RV sdbe sdz
HGST HUH728080AL5204 C515 2EGNHE5V sdaa sdbf
HGST HUH728080AL5204 C515 2EGNN7RV sdab sdbg
HGST HUH728080AL5204 C515 2EGNVX4V sdac sdbh
Micron_M600_MTFDDAK128MBF MU03 15270FF2F083 sdad
Micron_M600_MTFDDAK128MBF MU03 15270FF3150F sdae
-----
mtab
~~~~
-----
rootfs / rootfs rw 0 0
sysfs /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0
devtmpfs /dev devtmpfs rw,nosuid,size=32835400k,nr_inodes=8208850,mode=755 0 0
securityfs /sys/kernel/security securityfs rw,nosuid,nodev,noexec,relatime 0 0
tmpfs /dev/shm tmpfs rw,nosuid,nodev 0 0
devpts /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000 0 0
tmpfs /run tmpfs rw,nosuid,nodev,mode=755 0 0
tmpfs /sys/fs/cgroup tmpfs ro,nosuid,nodev,noexec,mode=755 0 0
cgroup /sys/fs/cgroup/systemd cgroup rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/usr/lib/systemd/systemd-cgroups-agent,name=systemd 0 0
pstore /sys/fs/pstore pstore rw,nosuid,nodev,noexec,relatime 0 0
cgroup /sys/fs/cgroup/cpu,cpuacct cgroup rw,nosuid,nodev,noexec,relatime,cpuacct,cpu 0 0
cgroup /sys/fs/cgroup/blkio cgroup rw,nosuid,nodev,noexec,relatime,blkio 0 0
cgroup /sys/fs/cgroup/perf_event cgroup rw,nosuid,nodev,noexec,relatime,perf_event 0 0
cgroup /sys/fs/cgroup/net_cls cgroup rw,nosuid,nodev,noexec,relatime,net_cls 0 0
cgroup /sys/fs/cgroup/memory cgroup rw,nosuid,nodev,noexec,relatime,memory 0 0
cgroup /sys/fs/cgroup/cpuset cgroup rw,nosuid,nodev,noexec,relatime,cpuset 0 0
cgroup /sys/fs/cgroup/hugetlb cgroup rw,nosuid,nodev,noexec,relatime,hugetlb 0 0
cgroup /sys/fs/cgroup/devices cgroup rw,nosuid,nodev,noexec,relatime,devices 0 0
cgroup /sys/fs/cgroup/freezer cgroup rw,nosuid,nodev,noexec,relatime,freezer 0 0
configfs /sys/kernel/config configfs rw,relatime 0 0
/dev/md126 / ext4 rw,relatime,data=ordered 0 0
systemd-1 /proc/sys/fs/binfmt_misc autofs rw,relatime,fd=32,pgrp=1,timeout=300,minproto=5,maxproto=5,direct 0 0
hugetlbfs /dev/hugepages hugetlbfs rw,relatime 0 0
debugfs /sys/kernel/debug debugfs rw,relatime 0 0
mqueue /dev/mqueue mqueue rw,relatime 0 0
sunrpc /var/lib/nfs/rpc_pipefs rpc_pipefs rw,relatime 0 0
nfsd /proc/fs/nfsd nfsd rw,relatime 0 0
/dev/md127 /boot ext4 rw,relatime,stripe=4,data=ordered 0 0
fusectl /sys/fs/fuse/connections fusectl rw,relatime 0 0
/dev/md124 /d1 xfs rw,relatime,attr2,inode64,sunit=1024,swidth=13312,noquota 0 0
/dev/md125 /d2 xfs rw,relatime,attr2,inode64,sunit=1024,swidth=13312,noquota 0 0
tmpfs /run/user/1000 tmpfs rw,nosuid,nodev,relatime,size=6570044k,mode=700,uid=1000,gid=1000 0 0
tmpfs /run/user/42 tmpfs rw,nosuid,nodev,relatime,size=6570044k,mode=700,uid=42,gid=42 0 0
gvfsd-fuse /run/user/42/gvfs fuse.gvfsd-fuse rw,nosuid,nodev,relatime,user_id=42,group_id=42 0 0
tmpfs /run/user/890 tmpfs rw,nosuid,nodev,relatime,size=6570044k,mode=700,uid=890,gid=1001 0 0
/dev/md126 /var/lib/docker/devicemapper ext4 rw,relatime,data=ordered 0 0
-----
[[megara]]
megara
------
Network Info
~~~~~~~~~~~~
*IP*: +165.91.85.39+ +
*NM*: +255.255.255.0+ +
*GW*: +165.91.85.1+ +
*DNS*: +128.194.254.1+, +128.194.254.2+
+128.194.254.2+
fstab
~~~~~
------
LABEL=/ / ext3 defaults 1 1
tmpfs /dev/shm tmpfs defaults 0 0
devpts /dev/pts devpts gid=5,mode=620 0 0
sysfs /sys sysfs defaults 0 0
proc /proc proc defaults 0 0
LABEL=SWAP-sda2 swap swap defaults 0 0
/dev/sdb1 /d4 xfs defaults 1 1
/dev/sdd1 /d2 xfs defaults 1 1
------
mtab
~~~~
------
/dev/sda1 / ext3 rw 0 0
proc /proc proc rw 0 0
sysfs /sys sysfs rw 0 0
devpts /dev/pts devpts rw,gid=5,mode=620 0 0
tmpfs /dev/shm tmpfs rw 0 0
/dev/sdb1 /d4 xfs rw 0 0
none /proc/sys/fs/binfmt_misc binfmt_misc rw 0 0
sunrpc /var/lib/nfs/rpc_pipefs rpc_pipefs rw 0 0
nfsd /proc/fs/nfsd nfsd rw 0 0
/dev/sdc1 /d2 xfs rw 0 0
------
/proc/partitions
~~~~~~~~~~~~~~~~
------
major minor #blocks name
8 0 292421632 sda
8 1 284382630 sda1
8 2 8032468 sda2
8 16 1952972800 sdb
8 17 1952965791 sdb1
8 32 1953481728 sdc
8 33 1953479871 sdc1
------
Hardware
~~~~~~~~
*BIOS*: Dell 1.2.12 Rev. 2.12
*Mobo*: 0FR933 ver. A00, SN: CN708217AH005U
*Name*: Dell PowerEdge 6950
*SN*: 30DY1F1
*UUID*: 44454C4C-3000-1044-8059-B3C04F314631
*CPU*: 4 x Dual Core AMD Opteron 8222 SE
*RAM*: 32 GB (16 x 2 GB), DDR2, 667 MHz, Hynix Part #HYMP525P72CP4-Y5
* HL-DT-ST GCR-8240N, ATAPI CD/DVD-ROM drive
* Dell PowerEdge Expandable RAID controller 5
User Guide:
http://support.dell.com/support/edocs/storage/RAID/PERC5/en/index.htm[+http://support.dell.com/support/edocs/storage/RAID/PERC5/en/index.htm+]
Configuring the PowerEdge RAID Controller Without RAID
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Press Ctrl-R to run configuration utility.
* On initial screen with *PERC 5/i Integrated BIOS Configuration Utility*
across top, hit F2 to bring up menu.
* Select *Create New VD* on this menu.
* The *RAID Level* should be on +RAID-0+. If not change it to +RAID-0+.
* Choose the disk from the *Physical Disks* menu below the *RAID Level*
menu.
* Select the *OK* button to the right of the window.
* Select the *OK* on the *It is recommended...* menu that pops up.
* Initialization is not required with a new disk.
To find out the model of the RAID controller:
+/sbin/lspci | grep -i raid+ +
+02:0e.0 RAID bus controller: Dell PowerEdge Expandable RAID controller 5+
Or use the command +dmidecode+ to discover:
-----
Handle 0x0100, DMI type 1, 27 bytes
System Information
Manufacturer: Dell Inc.
Product Name: PowerEdge 6950
Version: Not Specified
Serial Number: 30DY1F1
UUID: 44454C4C-3000-1044-8059-B3C04F314631
Wake-up Type: Power Switch
SKU Number: Not Specified
Family: Not Specified
-----
http://en.community.dell.com/support-forums/servers/f/906/p/18816086/18939072.aspx[+http://en.community.dell.com/support-forums/servers/f/906/p/18816086/18939072.aspx+]
"If you want no RAID, just configure each drive attached to the PERC as a
single drive R0. This will look and behave like there is no RAID and you get
the benefit of the cache on the controller. If you truly want to have nothing
to do with configuring, managing RAID, you have to get a SAS 5/i."
http://en.community.dell.com/support-forums/servers/f/906/t/18327220.aspx[+http://en.community.dell.com/support-forums/servers/f/906/t/18327220.aspx+]
"It's simple really, just make several RAID 0 arrays, each one is a single
physical drive, problem solved."
http://forums.2cpu.com/showthread.php?t=93698#post762508[+http://forums.2cpu.com/showthread.php?t=93698#post762508+]
"As others have stated, it has no jbod mode and the drives won't show in
solaris unless the drives are part of a raid set. You can set each drive to
raid0 but then you loose some of the benefits of zfs, and it gets a bit wierd
when you go to replace a failed drive...as sometimes the drives will get
renamed. ie logical disk 3 will become logical disk2 when disk 2 is removed to
be replaced...."
[[chenier]]
chenier
-------
Hardware
~~~~~~~~
RAID Controller
^^^^^^^^^^^^^^^
+/usr/local/sbin/lspci -vv | grep -i raid
=====
06:00.0 RAID bus controller: 3ware Inc 9650SE SATA-II RAID PCIe (rev 01)
Subsystem: 3ware Inc 9650SE SATA-II RAID PCIe
=====
The PDF guide can be downloaded from:
http://docs.avagotech.com/docs/12353273[+http://docs.avagotech.com/docs/12353273+]
RAID Controller Software
^^^^^^^^^^^^^^^^^^^^^^^^
+/opt/3ware/CLI/tw_cli+
=====
//chenier> help
Copyright (c) 2012 LSI
LSI/3ware CLI (version 2.00.11.022)
Commands Description
-------------------------------------------------------------------
focus Changes from one object to another. For Interactive Mode Only!
show Displays information about controller(s), unit(s) and port(s).
flush Flush write cache data to units in the system.
rescan Rescan all empty ports for new unit(s) and disk(s).
update Update controller firmware from an image file.
commit Commit dirty DCB to storage on controller(s). (Windows only)
/cx Controller specific commands.
/cx/ux Unit specific commands.
/cx/px Port specific commands.
/cx/phyx Phy specific commands.
/cx/bbu BBU specific commands. (9000 series)
/cx/ex Enclosure specific commands. (9690SA, 9750)
/ex Enclosure specific commands. (9550SX, 9650SE)
Certain commands are qualified with constraints of controller type/model
support. Please consult the tw_cli documentation for explanation of the
controller-qualifiers.
Type help <command> to get more details about a particular command.
For more detail information see tw_cli's documentation.
//chenier> show ver
CLI Version = 2.00.11.022
API Version = 2.08.00.027
//chenier> /c6 show bios
/c6 Bios Version = BE9X 4.08.00.004
//chenier> /c6 show driver
/c6 Driver Version = 2.26.08.007-2.6.18RH
//chenier> /c6 show firmware
/c6 Firmware Version = FE9X 4.10.00.027
//chenier> /c6 show unitstatus
Unit UnitType Status %RCmpl %V/I/M Stripe Size(GB) Cache AVrfy
------------------------------------------------------------------------------
u0 RAID-6 OK - - 64K 16763.7 RiW ON
//chenier> /c6 show serial
/c6 Serial Number = L326027A9491734
//chenier> /c6 show drivestatus
VPort Status Unit Size Type Phy Encl-Slot Model
------------------------------------------------------------------------------
p0 OK u0 2.73 TB SATA 0 - ST3000DM001-1CH166
p1 OK u0 2.73 TB SATA 1 - ST3000DM001-1CH166
p2 OK u0 2.73 TB SATA 2 - ST3000DM001-1CH166
p3 OK u0 2.73 TB SATA 3 - ST3000DM001-1CH166
p4 OK u0 2.73 TB SATA 4 - ST3000DM001-1CH166
p5 OK u0 2.73 TB SATA 5 - ST3000DM001-1CH166
p6 OK u0 2.73 TB SATA 6 - ST3000DM001-1CH166
p7 OK u0 2.73 TB SATA 7 - ST3000DM001-1CH166
=====
RAID Hard Drives
^^^^^^^^^^^^^^^^
=====
ST3000DM001-1CH166
is a:
Seagate Desktop HDD ST3000DM001 3TB 64MB Cache SATA 6.0Gb/s 3.5" Internal Hard Drive
=====
CURRENT STATUS: Head and 10 nodes up.
URL: http://chenier.tamu.edu/wordpress/[+http://chenier.tamu.edu/wordpress/+]
Ganglia URL:
http://chenier.tamu.edu/ganglia/[+http://chenier.tamu.edu/ganglia/+]
To restart the Ganglia and queueing services, run:
-----
/etc/init.d/gmetad restart
/etc/init.d/gmond restart
/etc/init.d/pbs_server restart
-----
Adding RAID Array to ROCKS Cluster
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This is explained at:
http://www.danielwong.org/mounting-and-sharing-an-external-volume-using-nfs-on-a-rocks-cluster-autofs/[+http://www.danielwong.org/mounting-and-sharing-an-external-volume-using-nfs-on-a-rocks-cluster-autofs/+]
although there are a few updates that need to be made, i.e. basically
changing +cluster-fork+ to +rocks run host+ as shown below.
Steps for Adding RAID Array
^^^^^^^^^^^^^^^^^^^^^^^^^^^
* Mount the volume
-----
# mount -t xfs /dev/sdc1 /raid1
-----
* Add an entry to +/etc/fstab+
-----
/dev/sdc1 /raid1 xfs defaults 1 2
-----
* Add an entry to +/etc/exports+ to allow NFS sharing of the volume
-----
/raid1 10.1.20.1(rw,async,no_root_squash) 10.1.20.0/255.255.255.0(rw,async)
-----
* Re-read the new NFS configuration
-----
# /usr/sbin/exportfs -r
-----
* Add +/etc/auto.share+ entry:
-----
/raid1 chenier.local:/raid1
-----
* Add +auto.share+ entry to +/etc/auto.master+
-----
/share /etc/auto.share --timeout=1200
-----
* Update 411 and push changes
-----
# cd /var/411
# make clean
rm -f 411.mk
rm -f 411-Group.mk
# make
touch Makefile Files.mk
Regenerating 411.mk...
/opt/rocks/sbin/411put --comment="#" /etc/auto.share
411 Wrote: /etc/411.d/etc.auto..share
Size: 555/234 bytes (encrypted/plain)
# rocks run host command="411get --all"
-----
* Restart the services
-----
# /sbin/service autofs reload
# rocks run host command="service autofs restart"
-----
The 411 Service
~~~~~~~~~~~~~~~
To force the 411 system to flush all changes, run:
-----
make -C /var/411
-----
on the frontend. To force all compute nodes to retrieve the
latest files from the frontend, execute:
-----
rocks run host command="411get --all"
-----
LSI 9650SE-8LMPL Raid Controller
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Driver Version
^^^^^^^^^^^^^^
This is found via:
-----
root@chenier baum]# /opt/3ware/CLI/tw_cli
//chenier> /c6 show driver
/c6 Driver Version = 2.26.08.007-2.6.18RH
-----
CLI Version
^^^^^^^^^^^
The version of the command line interface (CLI) is found via:
-----
root@chenier baum]# /opt/3ware/CLI/tw_cli
//chenier> help
Copyright (c) 2012 LSI
LSI/3ware CLI (version 2.00.11.022)
-----
Controller Model Number
^^^^^^^^^^^^^^^^^^^^^^^
Find it via:
-----
[root@chenier baum]# /opt/3ware/CLI/tw_cli show
Ctl Model (V)Ports Drives Units NotOpt RRate VRate BBU
c6 9650SE-8LPML 8 7 2 2 1 1 OK
-----
Firmware Version
^^^^^^^^^^^^^^^^
Find it via:
-----
[root@chenier baum]# /opt/3ware/CLI/tw_cli /c6 show firmware
/c6 Firmware Version = FE9X 4.08.00.006
-----
This is a pre-2009 firmware version, with no findable information as to hard
drive size support. The latest firmware version is 4.10.00.027 as of Dec. 3,
2012, with the documentation claiming support for drives up to 4 TB.
The support page is at: