Sponsored Content
Operating Systems Solaris Solaris/vxvm/EMC Lun configuration Post 302816611 by mat_solaris on Tuesday 4th of June 2013 09:50:53 AM
Old 06-04-2013
Oracle Solaris/vxvm/EMC Lun configuration

Hello all,

i try to allocate the same LUN to two server (or more in the future)
i use solaris 10, vxvm (vxfs) for data and solaris zones and EMC DMX-4, i try to migrate solaris zones between servers in case of problem.

and this is what i want to do

- affect LUN to srv00124 and srv10155
- the LUN must be imported only on one server
- in case of problem
- export or forcing import LUN to the other server
- mount all file system
- migrate the solaris zone
- roolback when the problem are resolved

anyone have suggestions ?
is this config file for making and mapping LUN are correct for affection on two server ?

Thanks a lot,


# cat srv00124_08FB
Code:
form meta from dev 08FB,config=striped;
add dev 08FA to meta 08FB;
add dev 08FC to meta 08FB;
add dev 08FD to meta 08FB;
add dev 0A2E to meta 08FB;
add dev 0A2F to meta 08FB;
add dev 0A30 to meta 08FB;
add dev 0A31 to meta 08FB;
add dev 0A32 to meta 08FB;
add dev 0A33 to meta 08FB;
add dev 0A34 to meta 08FB;
add dev 0A35 to meta 08FB;
add dev 0A36 to meta 08FB;
add dev 0A37 to meta 08FB;
add dev 0A38 to meta 08FB;
add dev 0A39 to meta 08FB;
add dev 0A3B to meta 08FB;
add dev 0A5B to meta 08FB;
add dev 0A5C to meta 08FB;
add dev 0A5D to meta 08FB;

Code:
# cat srv00124_08FB.cmd
symmask -awwn srv00124/c1 -dir 8D -p  0 add devs 08FB -map
symmask -awwn srv00124/c2 -dir 9D -p  0 add devs 08FB -map -nop
symmask -awwn srv10155/c1 -dir 8D -p  0 add devs 08FB -map
symmask -awwn srv10155/c2 -dir 9D -p  0 add devs 08FB -map -nop
symmask refresh -nop

#

Last edited by jim mcnamara; 06-04-2013 at 05:44 PM..
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

VxVM disk/lun grow

hi, i have a volume on a LUN of an EMC-storage and i need to increase the size. i could increase the size of the LUN on the EMC, i could increase the size of the disk for solaris, but how can i tell the veritas volume manager that the disk is larger now? what i've done: 1. LUN on EMC 2.... (3 Replies)
Discussion started by: pressy
3 Replies

2. Solaris

Problems fetching EMC disks to Solaris OS.

Hi, I have a nasty little problem with my disks on my system My system configuration is as follows Sunv890 with sunos 9 connected tot a IBM6800 SAN using a 2port 2 GB qla2342 adapter. We have bought a EMC SAN. The company who sold us the san, said that it would be no problem connecting the... (10 Replies)
Discussion started by: orac
10 Replies

3. Solaris

VxVM on Solaris.

Hi, Quick question if anyone knows this. Is there a command I can use in Veritas Volume manager on Solaris that will tell me what the name of the SAN I am connected to? We have a number of SANs so I am unsure which one my servers are connected to. Thanks. (13 Replies)
Discussion started by: gwhelan
13 Replies

4. Solaris

Documentation on connecting EMC storage to Solaris servers

Hi Can anyone suggest me some documents for EMC clarion documents which I am going to use in the servers with solaris environments. (1 Reply)
Discussion started by: ningy
1 Replies

5. UNIX for Advanced & Expert Users

Removing EMC LUN from Solaris 10 host without a reboot

I have seen a few threads / posts on the forum's but nothing specific to what Iam after. So Iam hoping you can help. Issue : Iam hoping to remove unused emc luns from my solaris servers , T2000 (5.10 Generic_142900-02). I have a list of the process I have followed for the removal of the luns.... (3 Replies)
Discussion started by: furby
3 Replies

6. Linux

EMC, PowerPath and issue on using LUN

Hello guys, I'm going crazy over here with a problem with a LUN created on a EMC CX3. I did sucessfully managed to create the LUN on the Storage (the LUN is named DBLNX25EC_TST), after doing the following process: echo "1" > /sys/class/fc_host/host<n>/issue_lip and echo "- - -" >... (10 Replies)
Discussion started by: Zarnick
10 Replies

7. Solaris

Mount Emc Clones in VxVm

The Storage Admin presents a clone of a LUN, on the source side the device is under VxVM control, assuming that on the target side we have scanned the new cloned LUN at the OS level (solairs), from there on how do we initialize and mount the new volume. Please give some guidence on this or a... (1 Reply)
Discussion started by: Tirmazi
1 Replies

8. Solaris

Solaris 10 booting from EMC SAN DISK

Hi All, I have server : Sun-Fire-V490 configured with Solaris 10 zfs .. and I have configured three mirror the third one from EMC storage. root@server # zpool status -v pool: rpool state: ONLINE status: The pool is formatted using an older on-disk format. The pool can ... (8 Replies)
Discussion started by: top.level
8 Replies

9. AIX

AIX help -reconnect EMC lun

we have an old AIX system with important data on an EMC LUN. the AIX server crashed and we had to rebuild it with the old AIX os 5.8. how do we reconnect the EMC LUN without losing the data? (15 Replies)
Discussion started by: jhudson12
15 Replies
Mirror/redirect action in tc(8)                                        Linux                                       Mirror/redirect action in tc(8)

NAME
mirred - mirror/redirect action SYNOPSIS
tc ... action mirred DIRECTION ACTION [ index INDEX ] dev DEVICENAME DIRECTION := { ingress | egress } ACTION := { mirror | redirect } DESCRIPTION
The mirred action allows packet mirroring (copying) or redirecting (stealing) the packet it receives. Mirroring is what is sometimes referred to as Switch Port Analyzer (SPAN) and is commonly used to analyze and/or debug flows. OPTIONS
ingress egress Specify the direction in which the packet shall appear on the destination interface. mirror redirect Define whether the packet should be copied (mirror) or moved (redirect) to the destination interface. index INDEX Assign a unique ID to this action instead of letting the kernel choose one automatically. INDEX is a 32bit unsigned integer greater than zero. dev DEVICENAME Specify the network interface to redirect or mirror to. EXAMPLES
Limit ingress bandwidth on eth0 to 1mbit/s, redirect exceeding traffic to lo for debugging purposes: # tc qdisc add dev eth0 handle ffff: ingress # tc filter add dev eth0 parent ffff: u32 match u32 0 0 action police rate 1mbit burst 100k conform-exceed pipe action mirred egress redirect dev lo Mirror all incoming ICMP packets on eth0 to a dummy interface for examination with e.g. tcpdump: # ip link add dummy0 type dummy # ip link set dummy0 up # tc qdisc add dev eth0 handle ffff: ingress # tc filter add dev eth0 parent ffff: protocol ip u32 match ip protocol 1 0xff action mirred egress mirror dev dummy0 Using an ifb interface, it is possible to send ingress traffic through an instance of sfq: # modprobe ifb # ip link set ifb0 up # tc qdisc add dev ifb0 root sfq # tc qdisc add dev eth0 handle ffff: ingress # tc filter add dev eth0 parent ffff: u32 match u32 0 0 action mirred egress redirect dev ifb0 SEE ALSO
tc(8), tc-u32(8) iproute2 11 Jan 2015 Mirror/redirect action in tc(8)
All times are GMT -4. The time now is 08:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy