- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- OnlineJFS "freeze" command?
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
06-16-2005 02:21 AM
06-16-2005 02:21 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2005 02:28 AM
06-16-2005 02:28 AM
Re: OnlineJFS "freeze" command?
Yes it's the sync commmand.
Generally you'll want to issue several before a command like /etc/reboot which avoida all the "normal" shutdown sequences.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2005 02:42 AM
06-16-2005 02:42 AM
Re: OnlineJFS "freeze" command?
Here is what I am looking to automate:
1.) Freeze/Flush/Quiesce the database
2.) Freeze the multi-volume volume group or filesystem
3.) Take my snapshots of the Vdisks in the EVA using sssu
4.) Thaw the filesystem or volume group
5.) Thaw the database
Sync will flush buffers, but it is async and will only improve the odds that I don't get filesystem metadata corruption, it won't guarantee that I don't have it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2005 02:43 AM
06-16-2005 02:43 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2005 02:59 AM
06-16-2005 02:59 AM
Re: OnlineJFS "freeze" command?
what sort of database are you talking about? There's never been such a command on HPUX, because there's never really been a need - with intent logging filesystems, all metadata changes can be replayed with a very quick fsck on the backup host with no problem - certainly when I've done split mirror/business copy based Oracle backups there's never been a need to freeze the filesystem before doing the split - just a quick fsck before mounting the split.
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2005 03:02 AM
06-16-2005 03:02 AM
Re: OnlineJFS "freeze" command?
Maybe IBM JFS/AdvFS intent logging functions aren't as reliable as VxFS?
(and that me just trying to push your buttons now!)
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2005 03:16 AM
06-16-2005 03:16 AM
Re: OnlineJFS "freeze" command?
http://www.ntap.com/tech_library/3308.html?fmt=print
This seems to do what you require... just ignore the NetApp specific stuff.
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2005 06:05 AM
06-16-2005 06:05 AM
Re: OnlineJFS "freeze" command?
If the HP supported method of obtaining SAN level snapshots is:
1.) Quiesce DB
2.) sync, sync, sync (cross fingers)
3.) Grab snapshot (at sanlevel, not filesystem level)
4.) Thaw DB
Then I am ok with the lack thaw/freeze at the filesystem level.
I guess before we move on business copy license, I want to be sure the method is "HP supported" (because on a parallel track IBM had back-pedaled on a similar process even though it seemed to work almost always... after dollars were already spent). I'll chase it from support/sales for the HP nod, just don't want to get burned again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2005 09:05 AM
06-16-2005 09:05 AM
Re: OnlineJFS "freeze" command?
Given the constraints, I chose to implement it like this:
vx -t 120 -c "mystuff.sh" /mointpoint
This will issue a VX_FREEZE with a timeout of 120 seconds. If the freeze succeeds, the command "mystuff.sh" is executed and then the filesystem is thawed. If the freeze/thaw operations are successfull, the status of the executed comand is returned otherwise the non-zero status of the freeze/thaw operation is returned.
Compile it like this:
cc vx.c -o vx
Invoke as vx -u for usage.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2005 01:28 AM
06-17-2005 01:28 AM