Sponsored Content
Operating Systems HP-UX Mount FIle systems from node-1 onto node-2 Post 302907695 by rbatte1 on Tuesday 1st of July 2014 07:07:07 AM
Old 07-01-2014
If you want to run different applications that reference them on both servers then you are not really in a cluster any more. The service that is protected by being in a cluster with consist of resources to be available, typically disk, IP address and service processes.

These resources in a standard cluster are only available on one node at a time, and for good reason. If you have people connecting to the standby server directly, then they need to be prevented from accessing the services being protected by your cluster.

You might have an Active-Active configuration, but this is really two discreet sets of services being protected by two clusters, but using the same hardware. The only exception to this would be a true database cluster such as Oracle RAC which truly shares the disk and offers services on both sides.

If you really need to provide what you describe, you could:-
  • Manage the disk as a cluster service, with it's own IP address and the NFS server included with node 1 active and node 2 standby
  • Manage your 1st business service with node 1 active and node 2 standby, mounting the disk with NFS from the IP address above.
  • Manage your 2nd business service with node 1 standby and node 2 active, mounting the disk with NFS from the IP address above.
You will need to stop people referring to the disk directly and get them to use the NFS mounted view.

I think that this would give you something nearer what you need. If node 1 were to fail, then the services running on node 2 would remain but you would lose the NFS disks until node 2 detected that node 1 had failed and brought up the disks and NFS to serve itself. At the same time, the business service on node 1 could be brought up on node 2 as they both rely on the NFS mounted disks. It might seem a bit odd to NFS mount to the same server, but that would mean you see the same view from either side.

An alternate would be to have the disks on a physically separate cluster just providing NFS to these two nodes.


It's a shame I don't know how to post a picture to better describe this. Smilie

Robin
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Need to view all the attributes for a file/node

I need to find out when a file has been created. 'ls -l' just lists the last date the file was modified, not the creation date. I have also noticed when viewing the attributes through NT, the last modified date is the same as the file creation date. I thought maybe this was a fault due to Samba. ... (2 Replies)
Discussion started by: dpalmer
2 Replies

2. Solaris

unable to mount metaset on cluster node

Dear all, I have created a shared metaset(500gb) having 3 hosts in which 2 hosts are in cluster and 1 is non cluster. I have taken the ownership in cluster node from non cluster node but the problem is i am unable to mount the file system it is giving error "/dev/md/eccdb-ds/d100 or /eccdb-ds... (1 Reply)
Discussion started by: spandhan
1 Replies

3. UNIX for Dummies Questions & Answers

I-node and sessions

I have a program (written by me, for educational purposes) called "analyzer". The program takes a parameter, a filename, and does some statistics on it (for example, word's number, line's number, ... ) at regular intervals. My teacher told me that if the file is edited while the "analyzer" is... (4 Replies)
Discussion started by: hurricane
4 Replies

4. Solaris

SVM metaset on 2 node Solaris cluster storage replicated to non-clustered Solaris node

Hi, Is it possible to have a Solaris cluster of 2 nodes at SITE-A using SVM and creating metaset using say 2 LUNs (on SAN). Then replicating these 2 LUNs to remote site SITE-B via storage based replication and then using these LUNs by importing them as a metaset on a server at SITE-B which is... (0 Replies)
Discussion started by: dn2011
0 Replies

5. Shell Programming and Scripting

Find Node and replace line(s) preceding in xml file

Hello, I have an xml file whose contacts are like below: <Node>Apple <B>Value1</B> <B>Value2</B> <B>Value3</B> </Node> <Node>Mango <B>Value1</B> <B>Value2</B> <B>Value3</B> </Node> <Node>Apple <B>Value1</B> <B>Value2</B> <B>Value3</B> </Node> <Node>Bannana (3 Replies)
Discussion started by: umarsatti
3 Replies

6. Programming

Kernel module - Check whether file (/dev node) exists

Hi, I'm pretty new to kernel coding and I'm working on a device driver that works with an existing framework. Basically my module will be loaded/unloaded multiple times and I'd like to create a register a class, driver, and create a /dev node on the first load only. The existing framework... (0 Replies)
Discussion started by: ThomasBrez
0 Replies

7. UNIX for Dummies Questions & Answers

Ssh tar file using slave node

Hi, I wanted to zip some files (very large files) on our cluster (centOS). I am told that I should use the head node for this as it would tie down the CPU. How can I do this using one of the other nodes in the cluster? For small files, I would just log into the cluster using ssh (ie. ssh... (1 Reply)
Discussion started by: pc2001
1 Replies

8. Homework & Coursework Questions

Accessing one UNIX node from another node of the same server

Hi Experts, I am in need of running a script from one node say node 1 via node 2. My scheduling tool dont have access to node2 , so i need to invoke the list file from node1 but the script needs to run from node2. because the server to which i am hitting, is having access only for the node... (5 Replies)
Discussion started by: arun1377
5 Replies

9. Shell Programming and Scripting

Except script fails to check file exists or not in remote node

Dear members, The following expect script connects to remote node and check for the file "authorized_keys" in directory /root/.ssh in remote node. However the result is always found even if the file exist or doesn't exist. expect { "$fname" { send_user "found\n" } Any idea what is... (4 Replies)
Discussion started by: Sudhakar333
4 Replies

10. Shell Programming and Scripting

Looping through XML file on basis of a node

<?xml version="1.0" encoding="UTF-8"?> <Document> <FIToFICstmrCdtTrf> <GrpHdr> <MsgId>10001</MsgId> <NbOfTxs>1</NbOfTxs> <IntrBkSttlmDt>2015-05-06</IntrBkSttlmDt> <SttlmInf> <SttlmMtd>CLRG</SttlmMtd> </SttlmInf> <PmtTpInf> ... (2 Replies)
Discussion started by: harish2015
2 Replies
NG_DEVICE(4)                                               BSD Kernel Interfaces Manual                                               NG_DEVICE(4)

NAME
ng_device -- device netgraph node type SYNOPSIS
#include <netgraph/ng_device.h> DESCRIPTION
A device node is both a netgraph node and a system device interface. When a device node is created, a new device entry appears which is accessible via the regular file operators such as open(2), close(2), read(2), write(2), etc. The first node is created as /dev/ngd0, all subsequent nodes /dev/ngd1, /dev/ngd2, etc. HOOKS
A device node has a single hook with an arbitrary name. All data coming in over the hook will be presented to the device for read(2). All data coming in from the device entry by write(2) will be forwarded to the hook. CONTROL MESSAGES
The device node supports one non-generic control message: NGM_DEVICE_GET_DEVNAME Returns device name corresponding to a node. SHUTDOWN
This node shuts down upon receipt of a NGM_SHUTDOWN control message, or upon hook disconnection. The associated device entry is removed and becomes available for use by future device nodes. SEE ALSO
netgraph(4), ngctl(8) HISTORY
The device node type was first implemented in FreeBSD 5.0. AUTHORS
Mark Santcroos <marks@ripe.net> Gleb Smirnoff <glebius@FreeBSD.org> BSD October 19, 2004 BSD
All times are GMT -4. The time now is 05:56 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy