CentOS项目实例之五--LVM配置

1. ZZSRV2上的LVM配置

1.1. 磁盘配置

# fdisk -l
Disk /dev/sda: 21.5 GB, 21474836480 bytes, 41943040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x00012974
   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048     1026047      512000   83  Linux
/dev/sda2         1026048    41943039    20458496   8e  Linux LVM
Disk /dev/mapper/centos-swap: 2147 MB, 2147483648 bytes, 4194304 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mapper/centos-root: 18.8 GB, 18798870528 bytes, 36716544 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
添加100GB的磁盘。让Linux系统扫描刷新磁盘配置:
# echo "- - -" > /sys/class/scsi_host/host0/scan
# echo "- - -" > /sys/class/scsi_host/host1/scan
# echo "- - -" > /sys/class/scsi_host/host2/scan
# fdisk -l
看到新的盘了
Disk /dev/sdb: 107.4 GB, 107374182400 bytes, 209715200 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes

1.2. LVM配置

# fdisk /dev/sdb
创建分区
# fdisk -l /dev/sdb
Disk /dev/sdb: 107.4 GB, 107374182400 bytes, 209715200 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x8dee9f3a
   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048   209715199   104856576   8e  Linux LVM  
创建PV
# pvcreate /dev/sdb1
  Physical volume "/dev/sdb1" successfully created
创建VG
# vgcreate DATAVG /dev/sdb1
  Volume group "DATAVG" successfully created
# vgdisplay DATAVG
  --- Volume group ---
  VG Name               DATAVG
  System ID
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  1
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                0
  Open LV               0
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               100.00 GiB
  PE Size               4.00 MiB
  Total PE              25599
  Alloc PE / Size       0 / 0
  Free  PE / Size       25599 / 100.00 GiB
  VG UUID               xxKwGK-FDbT-elLy-yU7A-gKfj-j3hc-7Cq76o
# lvcreate -n LVSMB -L 40G DATAVG
  Logical volume "LVSMB" created
# lvcreate -n LVFTP -L 30G DATAVG
  Logical volume "LVFTP" created
查看VG是未使用PE数量
# vgdisplay DATAVG
  --- Volume group ---
  VG Name               DATAVG
  System ID
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  3
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                2
  Open LV               0
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               100.00 GiB
  PE Size               4.00 MiB
  Total PE              25599
  Alloc PE / Size       17920 / 70.00 GiB
  Free  PE / Size       7679 / 30.00 GiB
  VG UUID               xxKwGK-FDbT-elLy-yU7A-gKfj-j3hc-7Cq76o
将所有未使用的PE全部分配给最后一个LV
# lvcreate -n LVNFS -l 7679  DATAVG
  Logical volume "LVNFS" created
# vgdisplay DATAVG
  --- Volume group ---
  VG Name               DATAVG
  System ID
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  4
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                3
  Open LV               0
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               100.00 GiB
  PE Size               4.00 MiB
  Total PE              25599
  Alloc PE / Size       25599 / 100.00 GiB
  Free  PE / Size       0 / 0 全部使用完了
  VG UUID               xxKwGK-FDbT-elLy-yU7A-gKfj-j3hc-7Cq76o
# lvscan
  ACTIVE            ‘/dev/DATAVG/LVSMB‘ [40.00 GiB] inherit
  ACTIVE            ‘/dev/DATAVG/LVFTP‘ [30.00 GiB] inherit
  ACTIVE            ‘/dev/DATAVG/LVNFS‘ [30.00 GiB] inherit
  ACTIVE            ‘/dev/centos/swap‘ [2.00 GiB] inherit
  ACTIVE            ‘/dev/centos/root‘ [17.51 GiB] inherit

1.3. 文件系统配置

创建文件系统

# mkfs.ext4 /dev/DATAVG/LVSMB
# mkfs.ext4 /dev/DATAVG/LVFTP
# mkfs.ext4 /dev/DATAVG/LVNFS
创建Mount Point
# mkdir /smb
# mkdir /ftp
# mkdir /nfs
# vi /etc/fstab
添加
/dev/DATAVG/LVSMB  /smb  ext4 defaults  0 0
/dev/DATAVG/LVFTP  /ftp  ext4 defaults  0 0
/dev/DATAVG/LVNFS  /nfs  ext4 defaults  0 0
测试一下
# mount /smb/
# mount /ftp
# mount /nfs
# mount
..... 
/dev/mapper/DATAVG-LVSMB on /smb type ext4 (rw,relatime,data=ordered)
/dev/mapper/DATAVG-LVFTP on /ftp type ext4 (rw,relatime,data=ordered)
/dev/mapper/DATAVG-LVNFS on /nfs type ext4 (rw,relatime,data=ordered)
时间: 2024-10-13 06:18:13

CentOS项目实例之五--LVM配置的相关文章

CentOS项目实例之四--Apache配置

1. ZZSRV1上的WWW配置 1.1. 磁盘配置 1.1.1. 添加磁盘 添加80GB的磁盘. # fdisk -l Disk /dev/sda: 21.5 GB, 21474836480 bytes, 41943040 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 byte

CentOS项目实例之六--samba配置

1. ZZSRV2上的SAMBA配置 1.1. 安装SAMBA # yum -y install samba samba-client samba-common # rpm -qi samba Name        : samba Epoch       : 0 Version     : 4.1.1 Release     : 37.el7_0 Architecture: x86_64 Install Date: Mon 11 Aug 2014 05:10:39 PM CST Group  

CentOS 6.3下配置LVM(逻辑卷管理

CentOS 6.3下配置LVM(逻辑卷管理) 一.简介 LVM是逻辑盘卷管理(Logical Volume Manager)的简称,它是Linux环境下对磁盘分区进行管理的一种机制,LVM是建立在硬盘和分区之上的一个逻辑层,来提高磁盘分区管理的灵活性. LVM的工作原理其实很简单,它就是通过将底层的物理硬盘抽象的封装起来,然后以逻辑卷的方式呈现给上层应用.在传统的磁盘管理机制中,我们的上层 应用是直接访问文件系统,从而对底层的物理硬盘进行读取,而在LVM中,其通过对底层的硬盘进行封装,当我们对

CentOS项目实例之二--DHCP配置

1. ZZSRV1上的DHCP配置 1.1. 安装 # mkdir /mnt/cdrom/ # mount /dev/cdrom  /mnt/cdrom # cd /mnt/cdrom/Packages/ # ls dhcp* dhcp-4.2.5-27.el7.centos.x86_64.rpm  dhcp-common-4.2.5-27.el7.centos.x86_64.rpm  dhcp-libs-4.2.5-27.el7.centos.x86_64.rpm # rpm -Uvh dhc

虚拟机及Centos安装、Xshell配置与虚拟机连接

第1章 虚拟机及Centos安装.Xshell配置与虚拟机连接 1.1 虚拟机的创建(图示)          1.2 虚拟机的services.msc服务设置 有的电脑在安装虚拟机后并不能够完全开启VMware  Authorization.DHCP.NETWORK.Arbitration.Remote等服务协议因此得对其作出修改: 1.win+r ===>services.msc进入服务选项 2.然后按下图操作将几个服务启动都启用并设为自动. 1.3 centos系统安装 选取第一栏安装/升

centos安装和环境配置

centos安装和环境配置 网络配置 vi /etc/sysconfig/network-scripts/ifcfg-eth0 TYPE=Ethernet BOOTPROTO=static 静态ip DEFROUTE=yes IPV4_FAILURE_FATAL=no IPV6INIT=yes IPV6_AUTOCONF=yes IPV6_DEFROUTE=yes IPV6_FAILURE_FATAL=no NAME=eno16777736 UUID=34bbe4fa-f0b9-4ced-828

Centos 下串口输出配置(转发)

一,查看系统是否支持串口 [[email protected] ~]# dmesg |grep ttyconsole [tty0] enabledserial8250: ttyS0 at I/O 0x3f8 (irq = 3) is a 16550Aserial8250: ttyS1 at I/O 0x2f8 (irq = 4) is a 16550A00:09: ttyS0 at I/O 0x3f8 (irq = 3) is a 16550A00:0a: ttyS1 at I/O 0x2f8

CentOS 6.5安装配置LNMP服务器(Nginx+PHP+MySQL)

CentOS 6.5安装配置LNMP服务器(Nginx+PHP+MySQL) 一.准备篇: 1 /etc/init.d/iptables stop #关闭防火墙 2 关闭SELINUX 3 vi /etc/selinux/config 4 #SELINUX=enforcing #注释掉 5 #SELINUXTYPE=targeted #注释掉 6 SELINUX=disabled #增加 7 :wq 8 shutdown -r now #重启系统 二.安装篇 1.安装nginx 1 yum re

CentOS 7.0安装配置Vsftp服务器步骤详解

安装Vsftp讲过最多的就是在centos6.x版本中了,这里小编看到有朋友写了一篇非常不错的CentOS 7.0安装配置Vsftp服务器教程,下面整理分享给各位. 一.配置防火墙,开启FTP服务器需要的端口 CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙. 1.关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止