- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Extending the DP mount
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2005 05:07 AM
08-23-2005 05:07 AM
I have ran lvextend -L 2048 /dev/vgdp/lvol1 /dev/dsk/c9t1d1 which wrote to mntab. I have tried to now unmount the filesystem and get an error saying the device is busy.
I have tried to run the umount command before I run the extendfs command and before I mount again. how can I get around this. I run a fuser -cu /dp and it shows entries there so I believe there are processes being used.
I am quite new to HPUX (unix) and am following instructions left by a guy who left recently when he extended another logical volume.
His notes say to shutdown the SAP database first but I didnt do this because I didnt think the DP area would be causing any processes to be used due to the backups not running until later. I have tried after stopping the dp services but still no joy and also when the DP cluster package was stopped but then it did not recognise the DP filesystem mounted to umount.
Would appreciate any help.
Regards,
Chad
ps - many thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2005 05:13 AM
08-23-2005 05:13 AM
Solutionswlist -l product | grep -i jfs
if you see something like this in the output, you have it
OnlineJFS B.11.11 Online features of the VxFS File System
if you have it, after lvextend command completes, run this
fsadm -F vxfs -b 2048M /dp
should make you good to go.
if you do not have it, come back and indicate that for a more detailed troubleshooting.
As usual, try the simplest possibility first.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2005 05:14 AM
08-23-2005 05:14 AM
Re: Extending the DP mount
Check about your DP daemons and processes ,i.e , crs , rds , mmd if running from , that filesystem.
Usually it runs from /opt/omni/lbin/.
Check if any process running with omni.
# ps -ef | grep omni.
# fuser -cu /dp
Once everything is clear , u can unmount it.
cheers ,
Raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2005 05:20 AM
08-23-2005 05:20 AM
Re: Extending the DP mount
check it with:
# swlist -l bundle | grep -i online
swlist -l bundle | grep -i online
B3929DA 3.5-ga15-01 HP OnLineJFS 3.5
you should get like that. And then you can proceed for expansion of the file system.
Syntax:
-------
# lvextend -L 2048 /dev/vgdp/lvol1
# fsadm -F vxfs -b 2097152 /dp
( Remember this will be the total size of the file system, i.e total size will be= 2GB 2048MB, that is including the earlier size).
Cheers,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2005 05:22 AM
08-23-2005 05:22 AM
Re: Extending the DP mount
if you have Online JFS you could do it while omniback was up and running.
fuser -cu /db should show you what is running against that filesystem. Stop those processes if they are something other than omniback and you can umount and extendfs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2005 05:42 AM
08-23-2005 05:42 AM
Re: Extending the DP mount
Is the DP database located on an own volume (/var/opt/omni or perhaps /var/opt/omni/db40) ? If it is, just shut down DP using "/opt/omni/sbin/omnisv stop". Then you can unmount the volume. Start DP again after mounting with "/opt/omni/sbin/omnisv start"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2005 05:44 AM
08-23-2005 05:44 AM
Re: Extending the DP mount
But one more thing catched my eye:
"I have ran lvextend -L 2048 /dev/vgdp/lvol1 /dev/dsk/c9t1d1 which wrote to mntab."
Can You be a bit more verbose about this - nothing except the mount command itself should write to /etc/mntab. Can You explain a bit more?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2005 07:39 AM
08-23-2005 07:39 AM
Re: Extending the DP mount
You mentioned stopping the DP cluster package. If this is a ServiceGuard package, then when you stopped it, did it start on another node/system? That would be one reason why it would not find the filesystem to unmount - because it was mounted on another system. Stopping a SG package, unmounts the relevant file systems.
Marlou
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2005 07:50 AM
08-23-2005 07:50 AM
Re: Extending the DP mount
Marlou
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2005 07:56 PM
08-23-2005 07:56 PM
Re: Extending the DP mount
The command used 'fsadm -F vxfs -b 2048M /dp'
Thanks all for your help.
Chad