Process to add mount point in Sun Cluster existing HAplus resource


 
Thread Tools Search this Thread
Operating Systems Solaris Process to add mount point in Sun Cluster existing HAplus resource
# 1  
Old 09-18-2014
Process to add mount point in Sun Cluster existing HAplus resource

Hi

Well I would like to know step by step process of adding a mountpoint in HAPLUS resource in SUN cluster as I go the below command to add a mount point but not the step by step process of adding a mount point in existing HA Plus resource.

Code:
 clrs set -p FileSystemMountPoints+=<new_MP> <resourceName

# 2  
Old 09-18-2014
Hi,
Should this be a scalable resource or a failover resource in the cluster, also you'll have to give us some more information.

But in general just creating the mount point with;

Code:
mkdir /xxx

Then you would configure the resource with;

Code:
clresource create -g <resource_group> -t SUNW.HAStoragePlus -p FilesystemMountPoints=/xxx -p Affinityon=true <resource-name>

Edit the /etc/vfstab to add the mount point, make sure to newfs the file systems before mounting the filesystem on all or each of the cluster nodes.Then run;

Code:
/usr/cluster/bin/cluster export -o backup.xml

But I would say if you are not experienced with Cluster 3.2, invoulve your sysadmin and count on his cluster experience - the guidance is invaluable.

Clusters are generally there for a reason and breaking one will make you extremely unpopular.

Regards

Dave
# 3  
Old 09-18-2014
Depends if you are using ZFS / UFS with metasets setup can vary in steps.

If you are using ZFS, present the disks to new nodes and check first cldev output if both disk are visible for both nodes of the cluster.

Create a zpool out of those disks, you don't have to use DID devices.

After that run :
Code:
zpool export <your new pool>
clresource set -p Zpools="zpools-list" hasp-resource

Where 'zpool-list' is list of existing zpools that resource manages + your new pool, comma separated.
hastorageplus will import the pool and mount it after adding.

Administration of newly added zpool (creating zfs filesystems and their mountpoints) is done with zfs commands.

If you are using metasets things are a bit more complicated but fairly well documented.

Regards
Peasant.
# 4  
Old 09-25-2014
Thanks Dave & Peasant
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. Red Hat

Web server cluster at some point ?

What's the best way clusters for Storage at some point? (The way that data is the same in all parts) To set up a Web server cluster is the logical way?! Cluster database and Storage and then by keepalived + HA cluster will be communicated? Or, there a better solution? (For about 4 points) Thank... (0 Replies)
Discussion started by: mnnn
0 Replies

3. Red Hat

Add the luns to the mount point

Hi, What is the procedure require to add the luns to the mount point in linux server. say for example due to lack of space in the mount point /u03,i want to add some extra 20gb space to mount point, how to add that ? What does luns means ? Regards, Maddy (5 Replies)
Discussion started by: Maddy123
5 Replies

4. Solaris

Sun cluster 4.0 - zone cluster failover doubt

Hello experts - I am planning to install a Sun cluster 4.0 zone cluster fail-over. few basic doubts. (1) Where should i install the cluster s/w binaries ?. ( global zone or the container zone where i am planning to install the zone fail-over) (2) Or should i perform the installation on... (0 Replies)
Discussion started by: NVA
0 Replies

5. AIX

Adding existing VG to powerHA Resource group

Hello. I am Running AIX 6.1 and PowerHA 6.1 I have an active/active cluster (Prod/Dev) cluster. Each side will failover to the other. I have on my prod side an active volume group with a file system. The VG is imported on both nodes and active (varried on, file system mounted) on the prod... (3 Replies)
Discussion started by: mhenryj
3 Replies

6. Solaris

suncluster co-existing with Veritas Cluster

have a pair of sun servers, wanting to test drive a 2-node cluster using both software.. would like disable one of these cluster software while the othe is running.. Is it feasible at all ?? (2 Replies)
Discussion started by: ppchu99
2 Replies

7. Solaris

Sun cluster and Veritas cluster question.

Yesterday my customer told me to expect a vcs upgrade to happen in the future. He also plans to stop using HDS and move to EMC. Am thinking how to migrate to sun cluster setup instead. My plan as follows leave the existing vcs intact as a fallback plan. Then install and build suncluster on... (5 Replies)
Discussion started by: sparcguy
5 Replies

8. High Performance Computing

SUN Cluster Vs Veritas Cluster

Dear All, Can anyone explain about Pros and Cons of SUN and Veritas Cluster ? Any comparison chart is highly appreciated. Regards, RAA (4 Replies)
Discussion started by: RAA
4 Replies

9. High Performance Computing

sun Cluster resource group cant failover

I have rcently setup a 4 node cluster running sun cluster 3.2 and I have installed 4 zones on each node. when installing the zones I had to install the zone on all nodes the on the last node do a zlogin -C <zonename> this worked ok. theni I tried to siwitch the zone to node a thei work... (14 Replies)
Discussion started by: lesliek
14 Replies

10. UNIX for Advanced & Expert Users

Fibre connection Point to Point SUN

Anyone know of a guide or instructions for Solaris I got to configure a SBUS HBA to talk to a tape robot. I have done this on a switch but not point to point. just going HBA >>>>> TAPE Fibre simple two nodes Kie (6 Replies)
Discussion started by: kie
6 Replies
Login or Register to Ask a Question