A major question which came in Linux Administrators minds is that what will happen if all space within a crtical disk become full.
No worry! If you are using Linux LVM , then you can do it online as follows
1. Extend the space for LUN from storage subsystem management software
2. Rescan your partition table
#partprobe
3. Now the output of
#fdisk -l /dev/sdc
should show the extended size of Lun ( if not , then sorry your Linux kernel is not supporting online extension and you have to restart the server)
4. extend the pv
#pvresize /dev/sdc
5. extend the lv
lvextend -l 100% FREE /dev/VG01/lvdata01
6. Extend the fileystem
ext2online /dev/mapper/VG01/lvdata01
and to make sure finally verify through "df" command
This is blog for IT Infrastructure consultants , who want to use latest technologies for building high profile solutions with reliability and high performance.
Monday, 9 August 2010
Subscribe to:
Posts (Atom)
How to Enable Graphical Mode on Red Hat 7 he recommended way to enable graphical mode on RHEL V7 is to install first following packages # ...
-
Putting the physical control panel in manual operating mode There are many instances , where you want to use ASMI interface to login to Hype...
-
Fortunately enough i got a recent opportunity to work with IBM IVM, but offcourse in a very difficult customer situation. And when on a very...
-
* Which client nodes currently locked from server access? select node_name from nodes where locked='YES' *How to use string operator...