- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Extending a JFS filesystem on-line with an act...
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
03-03-2004 12:36 AM
03-03-2004 12:36 AM
Extending a JFS filesystem on-line with an active database.
Thoughts???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2004 12:45 AM
03-03-2004 12:45 AM
Re: Extending a JFS filesystem on-line with an active database.
Is Online JFS installed properly? Check with swverify.
It should be like this.
lvextend -L xxM /dev/vgxx/lvolxx
fsadm -F "fstype" -b xxxxM /mount_pointof_file_system.
Do you have tusc tool? Is there any error in syslog? You can start it with tusc and see where it hangs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2004 01:08 AM
03-03-2004 01:08 AM
Re: Extending a JFS filesystem on-line with an active database.
For example:
lvextend -L 11264 /dev/vg18/lvAPPL
fsadm -F vxfs -b 11264M /export/APPL
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2004 01:18 AM
03-03-2004 01:18 AM
Re: Extending a JFS filesystem on-line with an active database.
2 things:
1) A good practice would be defragmenting the filesystem before such manipulations:
fsadm -F vxfs -D -d -E -e -s $FILESYSTEM
2) As already mentioned fsadm -b needs extra space prior to the expansion for the extra growth of its structural files.
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2004 01:26 AM
03-03-2004 01:26 AM
Re: Extending a JFS filesystem on-line with an active database.
If a file system would have been full at 100%, it's true that the command fsadm would not have worked but it would nopt have hung.. it would give you an error message saying it cannot do the command.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2004 01:30 AM
03-03-2004 01:30 AM
Re: Extending a JFS filesystem on-line with an active database.
One thing missing also is what version of OS?
10.20 , 11.00 or 11.11?
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2004 01:35 AM
03-03-2004 01:35 AM
Re: Extending a JFS filesystem on-line with an active database.
This is probably an installation error or some process has the device for the filesysetm on hold.
At this point you might want to down the database and run fusers -cu /fsname
Most likely problem here is patching or corrupt installation.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2004 10:51 AM
03-03-2004 10:51 AM
Re: Extending a JFS filesystem on-line with an active database.
The only other information we're missing (aside from the OS) is the type of disks you are using. Are they internal, SCSI array, or fibre?
I'd also want to check how busy the disks are that your database sits on. If they are busy there would be a delay (I certainly wouldn't expect hours though).
Have you applied patches recently? Is this the first time you have had to extend the filesystem in this manner, or has it been done before with no problems?
Were there any error messages (such as I/O errors being reported - look at dmesg and syslog). Its possible you are getting SCSI resets if the I/O subsystem is hanging (depending on your architecture of course).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2004 10:42 PM
03-04-2004 10:42 PM
Re: Extending a JFS filesystem on-line with an active database.
It is strange that when the database is brought down, the exact commands to extend the filesystem that were used when it was up now works.
Will look into bring system up to the latest patches.
Thanks again.