This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
visiesrv2_configuration [2018/03/23 15:44] 143.169.49.101 |
visiesrv2_configuration [2018/03/23 16:05] (current) 143.169.49.101 |
||
---|---|---|---|
Line 9: | Line 9: | ||
* PERC H730 RAID controller (in host mode, we don't use hardware RAID) | * PERC H730 RAID controller (in host mode, we don't use hardware RAID) | ||
- | ===== software ===== | + | ===== configuration ===== |
Ubuntu 16.04 LTS is installed on md0, which is a software RAID1 of the 2 240 Gig SSD's : | Ubuntu 16.04 LTS is installed on md0, which is a software RAID1 of the 2 240 Gig SSD's : | ||
<code> | <code> | ||
Line 19: | Line 19: | ||
</code> | </code> | ||
+ | The other 3 HD's are placed in a mirror to provide redundancy. A ZFS datapool is created to provide this feature. | ||
+ | <code> | ||
+ | zpool status | ||
+ | pool: data | ||
+ | state: ONLINE | ||
+ | scan: scrub repaired 0 in 0h7m with 0 errors on Sun Mar 11 00:31:09 2018 | ||
+ | config: | ||
+ | NAME STATE READ WRITE CKSUM | ||
+ | data ONLINE 0 0 0 | ||
+ | mirror-0 ONLINE 0 0 0 | ||
+ | sdc ONLINE 0 0 0 | ||
+ | sdd ONLINE 0 0 0 | ||
+ | sde ONLINE 0 0 0 | ||
+ | |||
+ | errors: No known data errors | ||
+ | </code> | ||
+ | This provides us with 560Gb of storage, for websites, etc... | ||
+ | <code> | ||
+ | zpool list | ||
+ | NAME SIZE ALLOC FREE EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT | ||
+ | data 556G 39.2G 517G - 1% 7% 1.00x ONLINE - | ||
+ | </code> |