- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Create a new file system in a cluster server
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
01-22-2007 01:07 AM
01-22-2007 01:07 AM
Create a new file system in a cluster server
I want to know wich is the procedure to create a new file system in a cluster server with MS Service Guard and that works as Data Base Server of the application SAP. The OS is HPUX 11.11
Thank's in advance
Hayse ;)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2007 01:46 AM
01-22-2007 01:46 AM
Re: Create a new file system in a cluster server
this below is the procedure, but i never do in production environment, so take care:
In the primary node,
vgchange -a e /dev/vgXX
lvcreate -L sizeinMB -n name /dev/vgXX
vgexport -p -v -s -m vgXX.map /dev/vgXX
rcp vgXX.map node2:/vgXX.map
In other nodes,you have to export the vgXX configuration and import it.
vgexport /dev/vgXX
mkdir /dev/vgXX
mknod /dev/vgXX/group c 64 0x020000
vgimport -v -s -m /vgXX.map
It is a good idea to to a ls -lR > log.lst of the/dev/vgXX so you have a list of
all the minor node id's
Hope this help
regards
pg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2007 02:41 AM
01-22-2007 02:41 AM
Re: Create a new file system in a cluster server
But have a new doubt ... I have to do nothing in cluster configuration for make this change? Cluster package will recognize this change automatic?
Thanks again..
;)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2007 02:57 AM
01-22-2007 02:57 AM
Re: Create a new file system in a cluster server
hth
pg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2007 03:23 AM
01-22-2007 03:23 AM
Re: Create a new file system in a cluster server
If you have available space on disk that is already part of the package then you do not need to stop the package or your cluster.
Just do your lvm commands:
lvcreate -n
lvextend -l xxx /dev/
newfs -F vxfs -o largefiles /dev/
mkdir /
mount /dev/
vgexport -pvs -m /etc/lvmconf/
rcp that mapfiles to other nodes that need it
Now go back and edit your pkg.cntl file to include the new information. Copy the pkg cntl file to other servers.
On other nodes do your:
vgexport /dev/
mkdir /dev/
mknod /dev/
vgimport -vs -m /etc/lvmconf/
Your done...package and cluster kept right on running.
Rgrds,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2007 03:24 AM
01-22-2007 03:24 AM
Re: Create a new file system in a cluster server
Rita