Solaris: Expanding / Extending a mount point / Slice


 
Thread Tools Search this Thread
Operating Systems Solaris Solaris: Expanding / Extending a mount point / Slice
# 1  
Old 02-20-2012
Solaris: Expanding / Extending a mount point / Slice

I'm new to UNIX, sort of inherited this job. I have an HP lefthand SAN, where I added 100GB to one of the volumes. As I understand I also have to expand the volume on the server (solaris 10 ) as well. So, how do I do that? The file system is called: sybdump. the mount point is /export/xxx/sybdump. I believe its a zfs, but not sure. Can someone please help?? Please use red crayon. Smilie

Thanks


Joey

Last edited by jim mcnamara; 02-20-2012 at 05:12 PM.. Reason: Moved to Solaris Forum
# 2  
Old 02-20-2012
First check if you really have ZFS filesystem. Post output of:
Code:
mount | grep sybdump

This User Gave Thanks to bartus11 For This Post:
# 3  
Old 02-20-2012
# mount | grep sybdump
/export/sybase/compers on sybdump/compers read/write/setuid/devices/nonbmand/exec/xattr/atime/dev=4790002 on Fri Feb 17 04:35:43 2012
/export/sybase/dumps on sybdump read/write/setuid/devices/nonbmand/exec/xattr/atime/dev=4790003 on Fri Feb 17 04:35:43 2012
# 4  
Old 02-20-2012
So you don't have sybdump filesystem, but ZFS pool. To check what is the structure of that pool run (and post output):
Code:
zpool status sybdump

This User Gave Thanks to bartus11 For This Post:
# 5  
Old 02-20-2012
Bartus11 -

Thanks for helping me out, I truly appreciate it!! How did you know it was a zfs pool? What was it in the output that gave you that indication? I want to learn !!

# zpool status sybdump
pool: sybdump
state: ONLINE
scrub: none requested
config:

NAME STATE READ WRITE CKSUM
sybdump ONLINE 0 0 0
c5t113d0 ONLINE 0 0 0

errors: No known data errors
# 6  
Old 02-20-2012
In case of UFS the "on XXX" part in mount output looks different (like on /dev/dsk/c0t0d0s0, or on /dev/md/d0 in case of SVM). To extend this pool simply run:
Code:
zpool add sybdump new_LUN

The "new_LUN" name can be found by running format.
# 7  
Old 02-20-2012
Thanks again!! when you say 'new_LUN', do you mean cxtxdxsx? Can I do this while its in production? Will it take anyone or anything offline?

Thanks!

Spaseman
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to create a new mount point with 600GB and add 350 GBexisting mount point? IN AIX

How to create a new mount point with 600GB and add 350 GBexisting mount point Best if there step that i can follow or execute before i mount or add diskspace IN AIX Thanks (2 Replies)
Discussion started by: Thilagarajan
2 Replies

2. Solaris

import lun data to mount point - Solaris 10

Hi Guys, I have EMC Storage and from this storage I have maped lun5 to Sun Solaris server and I have created on this lun mount point with name /application I have anothere Sun Solaris server and I'll colne lun5 to lun10 from storage level so the data of lun5 will be in lun10 how to... (6 Replies)
Discussion started by: Mr.AIX
6 Replies

3. Linux

Expanding slice

Hi all I am testing backupPC as a backup solution for machines, as far as i knew, backuppc cannot combine more than storage from different slices so it have to be in one slice my question is, what is the easy way to offer a virtual logical drive expanded/expandable to backuppc, i mean i want to... (1 Reply)
Discussion started by: XP_2600
1 Replies

4. Solaris

how to mount back the slice 7

Hi, i encounter problem during middle progress of mirroring. i trying create a mirror (metainit) to my slice 7. Who's have any experience, can you please help me? i tried create a state database replica "metadb -afc1 /dev/dsk/cxtxdxs7" but at it show it cannot create caused /dev/dsk/cxtxdxs7... (2 Replies)
Discussion started by: webster5u
2 Replies

5. AIX

Creating a new mount point

Hello, I have an AIX Oracle database server that I need to create a new filesystem/mount where I can create a new ORacle home to install 11g on. What are the needed steps to create this? There are mounts for Oracle 9i and 10g already. Thank you. - David (7 Replies)
Discussion started by: dkranes
7 Replies

6. Solaris

extending /var in solaris 10

Hi all, i need to extend /var file system on my solaris 10 box /var is part of rootdg current size 2GB Required size 6GB layout mirror veritas 4.1 solaris 5.10 pls let me know the steps and the procedure to follow. regards Ajay S (2 Replies)
Discussion started by: ajays
2 Replies

7. Solaris

Can't mount slice

Hey guys, This is how I originally had my drive setup... This is on a solaris 10 box ***BEFORE*** Current Disk = c0t1d0 Current partition table (original): Total disk cylinders available: 7506 + 2 (reserved cylinders) Part Tag Flag Cylinders Size Blocks... (2 Replies)
Discussion started by: kingdbag
2 Replies

8. UNIX for Dummies Questions & Answers

mount point

hi people, I'm trying to create a mount point, but am having no sucess at all, with the following: mount -F ufs /dev/dsk/diskname /newdirectory but i keep getting - mount-point /newdirectory doesn't exist. What am i doing wrong/missing? Thanks Rc (1 Reply)
Discussion started by: colesy
1 Replies

9. UNIX for Dummies Questions & Answers

Recover mount point

A disk was sliced into 6 slices with m01 being the mount point for one of the slices. This mount point was deleted with rmdir (ie. rmdir m01). What is the easiest way to recover this mount point? (1 Reply)
Discussion started by: here2learn
1 Replies

10. UNIX for Advanced & Expert Users

mount point lost

hi , I was applying patches after that when i reboot i get these message. I did not do anything other thatn this. Now i am unable to start my oracle . Tell me how to solve this These are the error messages forceload of /drv/rdriver failed /drv/rdmexus failed ... (7 Replies)
Discussion started by: sathiya
7 Replies
Login or Register to Ask a Question