Trajectories of load balance LUNS, Where-Object error

Greetings,

I started to modify the script to:

http://vmjunkie.WordPress.com/2009/01/29/balancing-LUN-paths-on-your-ESX-hosts-with-PowerShell/

to adapt to our environment. We have our similar to VM LUN LUN labeled utility, but they do not have the same number of paths. Here are the instruction select where-object that I use:

SNIP script:

$luns = $VMHost | get-scsilun - luntype disc |

WHERE-object {$_.} {ConsoleDeviceName-like ' / vmfs/devices/drives/vml * "} |

WHERE-object {$_.} {CanonicalName as "vmhba0:0: *"} | CanonicalName sort-Object

$firstLUNPaths = get-ScsiLunPath $lun [0]

$numPaths = $firstLUNPaths.Length

The script works very well on the first host in the cluster, but I get this error on each host subsequently:

Err:

Impossible to index in an object of type VMware.VimAutomation.Client20.Host.ScsiLunImpl.

C:\hp\Tools\VM_Tools\Scripts\Pathing\Set_Cluster_SAN_Path_t.ps1:37 tank: 40

+ $firstLUNPaths = get-ScsiLunPath $lun [0 & lt; & lt; & lt; & lt;]

Line 37 is:

$firstLUNPaths = get-ScsiLunPath $lun [0]

If I remove the part of the select statement:

WHERE-object {$_.} {CanonicalName as "vmhba0:0: *"}

The error disappears. Since it is part of the select statement that gets the VM LUN I really it works.

Thanks in advance!

Kevin

Are you sure that $lun is a table when you get the error?

Maybe there is only 1 object of ScsiLunImpl. Where the error index.

You can try asking the type of the variable $lun

$luns = $VMHost|get-scsilun -luntype disk|
where-object {$_.ConsoleDeviceName -like "/vmfs/devices/disks/vml*"} |
where-object {$_.CanonicalName -like "vmhba0:0:*"}|Sort-Object CanonicalName

($lun.gettype()).Name

$firstLUNPaths = Get-ScsiLunPath $lun[0]
$numPaths = $firstLUNPaths.Length

He will say 'object []' when it's a table, but "ScsiLunImpl" when it comes to a single object.

An easy way to fix this would be to make a table even when there is only 1 object

$luns = @($VMHost|get-scsilun -luntype disk|
where-object {$_.ConsoleDeviceName -like "/vmfs/devices/disks/vml*"} |
where-object {$_.CanonicalName -like "vmhba0:0:*"}|Sort-Object CanonicalName)
$firstLUNPaths = Get-ScsiLunPath $lun[0]
$numPaths = $firstLUNPaths.Length

Tags: VMware

Similar Questions

  • VPN 3030 load balancing

    Hi all

    Asked me to configure the load balancing between two hub Cisco VPN (Cisco VPN 3030).

    I set up two such boxes mentioned in the cisco Web site

    [url] https://www.Cisco.com/en/us/products/HW/vpndevc/ps2284/products_tech_note09186a0080094b4a.shtml [url]

    After you enable VPN load balancing, I get the error described for 30 seconds.

    Quote:

    Master double detected LBSSF [0003a 0889463] and going to SLAVE

    One of my friends said me that try with encryption active but not different.

    I searched in google but did not get any solution. I am now hlepless. If any of you guys have met this kind of problem before could you please help to solve this problem...

    Thank you

    Please set each device to have different priorities and then charge two devices.

    If this does not work then you can confirm your settings of the VCA have been properly configured and applied to the public interface? The following links provide more details on how to configure filters VCA:

    https://www.Cisco.com/en/us/products/HW/vpndevc/ps2284/products_tech_note09186a0080094b4a.shtml#C2

    Kind regards
    ATRI

  • Manually load balancing / setting of the LUN paths.

    I am wanting to manually load balance my Lun, there are 4 paths, and I want to cycle each round logic unit through the other way and back loop number. Am on vSphere 4 Update 1.

    Browsing the web I found these two articles provide the code I'm after but the two error for me.

    http://vmjunkie.WordPress.com/2009/01/29/balancing-LUN-paths-on-your-ESX-hosts-with-PowerShell/

    http://doitsmarter.blogspot.com/

    -


    1. Check with the user

    $vc = Read-Host "Please enter the name of the vCenter server:

    $uname = Read-Host "Please enter the user name to connect to vCenter server:

    $upass = Read-Host "Please enter the password that is associated:

    $clusterName = Read-Host "Please enter the name of the Cluster:

    Write-Host "Connection to the server vCenter $vc, please wait." - black BackgroundColor - ForegroundColor white

    SE connect-VIserver $vc - user $uname - password $upass | Out-Null

    ###

    1. Recover clustered ESX hosts

    $VMHosts = get-Cluster $clusterName | Get-VMHost

    1. Run through this loop for each host in the cluster

    foreach ($VMHost to $VMHosts)

    {

    $luns = @($VMHost | get-scsilun-luntype disque | where-object {$_.) {ConsoleDeviceName-like ' / vmfs/devices/drives/vml * "} | Sort-Object CanonicalName)

    $firstLUNPaths = get-ScsiLunPath $luns [0]

    $numPaths = $firstLUNPaths.Length

    $count = 0

    foreach ($lun to $luns)

    {

    If ($count - ge $numPaths)

    {

    $count = 0

    }

    $paths = get-ScsiLunPath - ScsiLun $lun

    $lun | Game-ScsiLun - MultipathPolicy fixed PreferredPath - $paths [$count]

    $count += 1

    1. Sleep 30 seconds to avoid saturation of the picture.

    Start-Sleep - 30 seconds

    }

    }

    -


    Initially, I found the script stumbled upon the $luns [0] which means the value is null or empty. I replaced vml with naa. Now, I got "one or several mandetory missing settings SCSI LUN". An error with the syntax, but I'm not able to establish that, I guess.

    Now, if I run certain commands on the command line I find I'm out usable. But by channeling the same row in a table or the variable, then the Write-Host of the content, I see "VMware.VIMAutomation.ViCore.Impl.V1" (and so on).

    Judging by the dates of the blog posts that I am of the opinion the latest PowerCLI (v4 build 264274) can return the information in a different way, I'm wrong with my assumption?

    Can you guess what will be my next question? How could I do that now?

    Any help is appreciated and rewarded (in points not beer).

    Thank you

    Darren.

    The "vml", "naa"... depends on the type of storage are your LUNs.

    The problem with this statement is that you must specify the parameter - Scsilun.

    This can be a positional parameter (without - Scsilun), but then it has to come in position 2.

    See the page Get-ScsiLunPath .

    Try the attached script.

    I changed this line and it works for me.

    ____________

    Blog: LucD notes

    Twitter: lucd22

  • Network Load Balancing error

    Hello

    I have DC with 192.168.10.2 255.255.255.0 P.DNS 192.168.10.2 & ADC 192.168.10.3 P.DNS 192.168.10.2 255.255.255.0

    When I configure the network load balancing in win2012r2 std I get below error. Please help on this.

    "NLB Manager running on a system with all networks bound to NLB mifht does not work as expected.
    If all interfaces are ser to run NLB in "unicast" mode, Manager NLB will fail to connect to the hosts. »

    Thank you.

    This issue is beyond the scope of this site (for consumers) and to be sure, you get the best (and fastest) reply, we have to ask either on Technet (for IT Pro) or MSDN (for developers)
    *
  • Where to configure clustering: on the web server or a load balancer?

    Hi all

    a few installation questions. I read on clusters and where to set up the pool. My main goal is to reach stickness session, session failover. but I'll ask them later when I clarify below.

    If my installation is

    -> Cluster WebLogic Web server, I need to install the cluster weblogic web server plugin.

    If my installation is

    Balancer load-> cluster WebLogic, I need to configure the LB, cos the LB must meet certain criteria.

    My planned Setup is

    Webserver-> LB-> cluster WebLogic. the weblogic balancing is done at LB. I'll have to set up the LB to balance to the cluster.

    I think I'm NOT configure the weblogic on the correct Web server plugin?

    Configuring the web server is obviously a proxy directly through the lb.

    So my next qn: the configuration to the LB is to balance the weblogic cluster OR a list of all the backend .jsf page server? Assuming that my application launch page is a jsf page. Enjoy your advisor.

    (a) you have little sticky on LB. On the Web server, Weblogic Plugin will take care of permanent sessions.

    (b) Yes, you need to add to your weblogic.xml in the application. There will be no conflict. However, your heap memory usage will increase as you could store session information on two servers.

    "Circumstances and considerations should I need a LoadBalancer in front of my weblogic cluster? --

    The main reason you would use a load balancer is to keep the VIP for your application. He would charge the balance between the weservers. Also usually SSL is stopped at the level of load balancer. It helps you reach cross clutser replication etc... You can read this document... Failover and replication in a Cluster

  • Load Balancing does not not on 2911

    Hello people,

    I have some difficulty to operate the Load Balance on my 2911.

    I have followed the editing on this site:

    http://www.Cisco.com/en/us/Tech/tk648/tk361/technologies_configuration_example09186a0080950834.shtml

    and APARENTLY it works, but not in reality, because I see packets using a NAT IPS bot thru, but when I check on the interfaces I see we're not receive / send anything.

    Background:

    G0/0, I have one ISP, other 1/G0, G0/2 my network.

    Building configuration...

    Current configuration: 6045 bytes

    !

    ! Last configuration change to 15:47:49 UTC Tuesday, January 28, 2014 by alan

    ! NVRAM config update at 14:32:59 UTC Tuesday, January 28, 2014 by alan

    ! NVRAM config update at 14:32:59 UTC Tuesday, January 28, 2014 by alan

    version 15.1

    horodateurs service debug datetime msec

    Log service timestamps datetime msec

    encryption password service

    !

    ROUTER1 hostname

    !

    boot-start-marker

    boot-end-marker

    !

    !

    logging buffered 51200 warnings

    !

    No aaa new-model

    !

    !

    No ipv6 cef

    IP source-route

    IP cef

    !

    !

    !

    !

    dhcp LAN_DHCP_POOL IP pool

    network 192.168.0.0 255.255.0.0

    default router 192.168.2.2

    domain g_bacon

    DNS 8.8.8.8 Server 208.67.222.222

    0 8 rental

    !

    !

    no ip domain search

    IP host ROUTER1 192.168.2.2

    8.8.8.8 IP name-server

    name-server IP 208.67.222.222

    IP-server names 8.8.4.4

    IP-server names 208.67.220.220

    !

    Authenticated MultiLink bundle-name Panel

    !

    !

    Crypto pki token removal timeout default 0

    !

    Crypto pki trustpoint TP-self-signed-2101532551

    enrollment selfsigned

    name of the object cn = IOS - Self - signed - certificate - 2101532551

    revocation checking no

    rsakeypair TP-self-signed-2101532551

    !

    !

    TP-self-signed-2101532551 crypto pki certificate chain

    certificate self-signed 01

    3082022B 30820194 02020101 300 D 0609 2A 864886 F70D0101 05050030 A0030201

    2 060355 04031326 494F532D 53656 C 66 2 AND 536967 6E65642D 43657274 31312F30

    69666963 32313031 35333235 6174652D 3531301E 32313137 OF 31323239 170 3131

    31335A 17 0D 323030 31303130 30303030 305A 3031 06035504 03132649 312F302D

    4F532D53 5369676E 656C662D 43 65727469 66696361 74652 32 31303135 65642D

    33323535 3130819F 300 D 0609 2A 864886 01050003, 818, 0030, 81890281 F70D0101

    8100DEA3 06574FDF B2B2113F 84A1EF39 9969F4D9 04131994 A3FCC466 D0328CCF

    B219F1AE A3DCC204 CD993BB2 F59C9A7F C251024E 382162 5 D9277CEB F1A575A5

    0356 C 896 A7A1BB48 8EA4CFF6 DA77B72C 9904A73B 6731A6E0 3004E5EA B44C1F7F

    5667496C 1E8E603D BE9B1AA1 1065E449 F6110C17 1A5FE3B9 3593BF87 96E14DEC

    010001A 3 53305130 1 130101 FF040530 030101FF 301F0603 0F060355 87FF0203

    551 2304 18301680 14E5F8C8 C30593C3 CEAB1874 F94F070B 9674F152 AD301D06

    03551D0E 04160414 E5F8C8C3 0593C3CE AB1874F9 4F070B96 74F152AD 300 D 0609

    2A 864886 F70D0101 A 05050003 81810092 51314, 50 EA812CDA AC97A8D1 2CA06BCC

    6FD5B4A6 DA888322 E2166AB4 0CF340BB E0407C95 584A1BDF 5DC3A6EE 2862E9CF

    7BF0C831 54F06ABF 011664 D 3 75269FF3 02D434BD 0FD15F32 EB34730C 47FE29D9

    7C2BBF9D 5BDB1D4F EEBFBED5 9B07450E 83DA57B2 1F296D0A 52D39A8F 6A 679244

    05C0924C F3FA9A05 53198E BDB28409

    quit smoking

    license udi pid CISCO2911/K9 sn FTX1553AJQU

    !

    !

    username privilege 15 secret 5 alan $1$ b6Jk$ 8iz3K3cTUgSZ.VePkKl5a.

    !

    redundancy

    !

    !

    !

    !

    !

    class-map correspondence-any PROHIBIDAS

    Protocol httpwww.facebook.comhost game «»

    Protocol httpwww.youtube.comhost game «»

    match Protocol http host 'www.pornotube.com.

    Protocol http host «www.xvideos.com» game

    match Protocol http host 'www.mega.co.nz'.

    match Protocol http host 'www.radios-on-line.com.ar'.

    match Protocol http host 'www.enlaradio.com.ar'.

    Protocol http host «www.cienradios.com.ar» game

    match Protocol http host 'www.radios-argentina.com.ar'.

    match Protocol http host 'www.fmyam.com.ar'.

    Protocol http host «www.piratebay.org» game

    class-map match-all P2P

    winmx Protocol game

    gnutella Protocol game

    bittorrent Protocol game

    match Protocol kazaa2

    !

    !

    Policy-map DROP_PROHIBIDAS

    class PROHIBIDAS

    drop

    class P2P

    drop

    !

    !

    !

    !

    !

    !

    !

    !

    the Embedded-Service-Engine0/0 interface

    no ip address

    Shutdown

    !

    interface GigabitEthernet0/0

    Fibertel description

    DHCP IP address

    IP access-group acl101 in

    IP access-group out acl101

    NAT outside IP

    IP virtual-reassembly in

    automatic duplex

    automatic speed

    No cdp enable

    out of service-policy DROP_PROHIBIDAS

    !

    interface GigabitEthernet0/1

    Arnet description

    IP 186.153.125.138 255.255.255.248

    IP access-group acl101 in

    IP access-group out acl101

    NAT outside IP

    IP virtual-reassembly in

    automatic duplex

    automatic speed

    No cdp enable

    out of service-policy DROP_PROHIBIDAS

    !

    interface GigabitEthernet0/2

    IP 192.168.2.2 255.255.0.0

    IP access-group block_FB in

    IP access-group out acl101

    IP nat inside

    IP virtual-reassembly in

    IP tcp adjust-mss 1452

    automatic duplex

    automatic speed

    No cdp enable

    !

    router RIP

    version 2

    network 192.168.0.0

    !

    IP forward-Protocol ND

    !

    IP http server

    IP 8180 http port

    20 class IP http access

    IP http secure server

    IP http timeout policy slowed down 60 life 86400 request 10000

    !

    IP nat inside source map route address interface GigabitEthernet0/1 overload

    IP nat inside source map route fibertel interface GigabitEthernet0/0 overload

    IP route 0.0.0.0 0.0.0.0 track GigabitEthernet0/0 123

    IP route 0.0.0.0 0.0.0.0 200.122.102.1 254

    !

    block_FB extended IP access list

    deny ip 192.168.0.0 0.0.255.255 welcome 173.252.100.16

    deny ip 192.168.0.0 0.0.255.255 173.252.64.0 0.0.63.255

    deny ip 192.168.0.0 0.0.255.255 31.13.24.0 0.0.7.255

    deny ip 192.168.0.0 0.0.255.255 31.13.64.0 0.0.63.255

    deny ip 192.168.0.0 0.0.255.255 66.220.144.0 0.0.15.255

    deny ip 192.168.0.0 0.0.255.255 69.63.176.0 0.0.15.255

    deny ip 192.168.0.0 0.0.255.255 69.171.224.0 0.0.31.255

    deny ip 192.168.0.0 0.0.255.255 74.119.76.0 0.0.3.255

    deny ip 192.168.0.0 0.0.255.255 103.4.96.0 0.0.3.255

    deny ip 192.168.0.0 0.0.255.255 204.15.20.0 0.0.3.255

    IP 192.168.0.0 allow 0.0.255.255 everything

    allow an ip

    !

    access-list 110 permit ip 192.168.0.0 0.0.255.255 everything

    !

    !

    !

    !

    route allowed fibertel 10 map

    corresponds to the IP 110

    is the interface GigabitEthernet0/0

    !

    arnet allowed 10 route map

    corresponds to the IP 110

    is the interface GigabitEthernet0/1

    !

    !

    !

    control plan

    !

    !

    exec banner ^ C ^ C

    connection of the banner ^ C ^ C

    Banner motd ^ C ^ C

    !

    Line con 0

    local connection

    line to 0

    line 2

    no activation-character

    No exec

    preferred no transport

    transport of entry all

    transport output pad rlogin lapb - your MOP v120 udptn ssh telnet

    StopBits 1

    line vty 0 4

    access-class 23 in

    privilege level 15

    local connection

    transport input telnet ssh

    line vty 5 15

    access-class 23 in

    privilege level 15

    local connection

    transport input telnet ssh

    !

    Scheduler allocate 20000 1000

    end

    So far so good, I have check the transactions of NAT:

    ROUTER1 #show ip nat trans

    Inside global internal local outside global local outdoor Pro

    TCP 200.122.102.74:62114 192.168.0.1:62114 17.151.239.110:443 17.151.239.110:443

    TCP 200.122.102.74:62119 192.168.0.1:62119 17.172.233.134:5223 17.172.233.134:5223

    TCP 200.122.102.74:34945 192.168.0.2:34945 181.30.241.103:443 181.30.241.103:443

    TCP 200.122.102.74:37444 192.168.0.2:37444 173.194.42.230:443 173.194.42.230:443

    TCP 200.122.102.74:37695 192.168.0.2:37695 181.30.241.109:80 181.30.241.109:80

    TCP 200.122.102.74:40662 192.168.0.2:40662 173.194.74.188:5228 173.194.74.188:5228

    TCP 186.153.125.138:41426 192.168.0.2:41426 216.115.101.179:443 216.115.101.179:443

    TCP 200.122.102.74:41484 192.168.0.2:41484 216.115.101.179:443 216.115.101.179:443

    TCP 200.122.102.74:42381 192.168.0.2:42381 181.30.241.31:80 181.30.241.31:80

    TCP 186.153.125.138:42553 192.168.0.2:42553 98.136.223.39:8996 98.136.223.39:8996

    and I see they're going through the two connections.

    Buuuuuuuuuuuuut, when I check the interfaces...

    ROUTER1 #show int g0/0

    GigabitEthernet0/0 is up, line protocol is up

    Material is CN Gigabit Ethernet, the address is c464.1354.b8c0 (BIA c464.1354.b8c0

    )

    Description: Fibertel

    The Internet address is 200.122.102.74/24

    MTU 1500 bytes, BW 100000 Kbit/s, DLY 100 usec,

    reliability 255/255, txload 1/255, rxload 1/255

    Encapsulation ARPA, loopback not set

    KeepAlive set (10 sec)

    Full-Duplex, 100 Mbps, media type is RJ45

    control output stream is XON, control of input stream is XON

    Type of the ARP: ARPA, ARP Timeout 04:00

    Last entry of 00:00:00, 00:00:00 exit, exit hang never

    Final cleaning of "show interface" counters never

    Input queue: 0/75/0/0 (size/max/drops/dumps); Total output drops: 0

    Strategy of queues: fifo

    Output queue: 0/40 (size/max)

    5 minute input rate 774000 bps, 161 packets/s

    5 minute output rate 423000 bps, 102 packets/s

    2133521 package, 1223904205 bytes, 0 no buffer entry

    Received 615778 broadcasts (0 of IP multicasts)

    0 Runts, 0 giants, 0 shifters

    entry 0, 0 CRC errors, frame 0, saturation 0, 0 ignored

    Watchdog 0, multicast 0, break 0 comments

    1065308 packets output, 214203455 bytes, 0 underruns

    0 output errors, 0 collisions, 1 interface resets

    unknown protocol 0 drops

    0 babbles, collision end 0, 0 deferred

    1 lost carrier, 0 no carrier, interrupt the output of 0

    output buffer, the output buffers 0 permuted 0 failures

    ROUTER1 #show int g0/1

    GigabitEthernet0/1 is up, line protocol is up

    Material is CN Gigabit Ethernet, the address is c464.1354.b8c1 (BIA c464.1354.b8c1

    )

    Description: arnet

    The Internet address is 186.153.125.138/29

    MTU 1500 bytes, BW 100000 Kbit/s, DLY 100 usec,

    reliability 255/255, txload 1/255, rxload 1/255

    Encapsulation ARPA, loopback not set

    KeepAlive set (10 sec)

    Full-Duplex, 100 Mbps, media type is RJ45

    control output stream is XON, control of input stream is XON

    Type of the ARP: ARPA, ARP Timeout 04:00

    Last entry 00:04:01, 00:00:06 exit, exit hang never

    Final cleaning of "show interface" counters never

    Input queue: 0/75/0/0 (size/max/drops/dumps); Total output drops: 0

    Strategy of queues: fifo

    Output queue: 0/40 (size/max)

    5 minute input rate 0 bps, 0 packets/s

    5 minute output rate 0 bps, 0 packets/s

    208948 packages, 153515983 bytes, 0 no buffer entry

    Received 1236 broadcasts (0 of IP multicasts)

    0 Runts, 0 giants, 0 shifters

    entry 0, 0 CRC errors, frame 0, saturation 0, 0 ignored

    Watchdog 0, multicast 0, break 0 comments

    190283 packets output, 45657373 bytes, 0 underruns

    0 output errors, 0 collisions, 0 resets interface

    unknown protocol 0 drops

    0 babbles, collision end 0, 0 deferred

    carrier, 0 no carrier, lost 0 0 interrupt output

    output buffer, the output buffers 0 permuted 0 failures

    Everything happens through G0/0 and nothing in G0/1!

    Any ideas on why this is happening?

    Thank you in advance for your help!

    Kind regards

    Alan

    Hello

    Yes here you only have a single default route installed (one from the DHCP server) so it can't NAT on the other interface as it can route on this one.

    Change your configuration like this:

    no ip route 0.0.0.0 0.0.0.0 track GigabitEthernet0/0 123

    no ip route 0.0.0.0 0.0.0.0 200.122.102.1 254

    IP route 0.0.0.0 0.0.0.0 dhcp

    IP route 0.0.0.0 0.0.0.0 200.122.102.1 254

    Now if you want to follow the first route look at this document:

    http://www.Cisco.com/en/us/docs/iOS/dial/configuration/guide/dia_rel_stc_rtg_bckup.html#wp1065528

    Concerning

    Alain

    Remember messages useful rate.

  • Load Balancing configuration failed with the failure of the connection shared after 11.1.2.2 11.1.2.3 upgrade

    Hello

    We have our EMP system had put 11.1.2.2 to 11.1.2.3 and it's a broadcast environment (Windows 2008 Server) and in one of the server, we installed FDM and after 11.1.2.2 upgrade to 11.1.2.3.

    When we load balance FDM Configuration, SSP is failed with " Shared Services Connection Failed '

    What I did:

    Deleted all entries in the object load balancing DCOM {E652643D...} and the Application Server Config {26AD6592..} and the COMJNIBridge DCOM objects. Re-directed EMP config for FDM application server

    and reconfigured the FDM with mycmsc\svc_hyperionfdm of the user application server. Config of load balancing is still unable to the connection of Shared Services with the error "Shared Services cannot connect".

    I tried the local administrator user but fails in the same way

    Windows system log entries:

    The application-specific permission settings do not grant Local Activation permission for the COM with CLSID {E652643D-6CC1-48AC-915D-01842B04F292} server application and the APPID

    {E652643D-6CC1-48AC-915D-01842B04F292} the user NT AUTHORITY\SYSTEM SID (S-1-5-1 of the address LocalHost (using LRPC).

    This security permission can be modified using the Component Services administrative tool.

    Windows Application log entries:

    Recovery of the class factory COM for component with CLSID {E652643D-6CC1-48AC-915D-01842B04F292} failed due to the following error: 80070005.

    COMJNIBridegWrapper.log entries

    08/07/2014 10:42:06: unknown COMException error

    at Microsoft.VisualBasic.CompilerServices.LateBinding.InternalLateCall (Object o, Type objType, String name, Object [] args, paramnames, CopyBack [] Boolean String, Boolean IgnoreReturn) at

    Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateCall (Object Instance, Type, Type, String MemberName, Object [] Arguments, String [] ArgumentNames, TypeArguments, Boolean] [] Type

    CopyBack, Boolean IgnoreReturn) at Hyperion.Fdm.Api.Common.Security.Authentication.AuthenticateUser (String userName, String password, the domain, String String & ssoToken)

    Hello

    Finally, we could solve this problem. Thank you for all your help.

    Kind regards

    VJ

  • Load balancing between nodes in a cluster analytic provider service

    Hi all

    -First a bit of background on my architecture. My EMP environment consist of 3 servers Solaris:

    Server1: Foundation Services + APS + EAS WLS Server Admin

    Server2: Foundation Services-APS-EA

    Server 3: Essbase Server + server Essbase Studio

    All services are deployed on a single domain. We have a load balancer, sitting in front of Server1 and Server2 that redirects the request according to the availability of services.

    -Consider the APS:

    We have an APS cluster "AnalyticProviderServices" loaded their AnalyticProviderServices1 on Server1 and AnalyticProviderServices2 deployed on Server2.

    So I connect to the APS and connect as User1. Say that the balancer load decides to send my request to server1, so my request are then managed by APS on Server1. Now if APS on server1 is reduced, all requests for APS on server1 are redirected by weblogic to APS on server2.

    Now ideally APS on server2 should say "hey I see what APS on server1 is down so I will take your session, where it was stopped." So I wait for the 2nd APS node in the cluster to tale my session. But this does not happen... I need to log in again when I hit refresh in excel I get the error "Invalid session...". Please log in again". When I opened EAS, according to me, that I was connected with a new session ID. It seems that the cluster nodes are simply load - swing and are not smart enough to take a node that failed, sessions where she had stopped.

    Is my understanding correct or do I have to configure something to do?

    Thank you

    Kent

    Yes, the session will be lost.

    See you soon

    John

    http://John-Goodwin.blogspot.com/

  • Load balanced OAM servers

    I have 2 instances OAM, set up on 2 different machines, working with them through in a cluster. When I created a webgate 11g to protect the oamhost1.mycompany.com:7777/index.html and two oam servers are on, I'm redirected correctly to authenticate on oamhost1 and it works perfectly. When I take the oamserver1, the redirect fails, I get an error page, and it redirects me to (stop now) oamhost1. But when I manually replace oamhost1.mycompany.com by oamhost2.mycompany.com in the address bar, authentication works properly.

    So the problem I have is not as long as the system will not work, but rather that there is no failover of the URL redirection. That is to say the webgate will always redirect to oamhost1 for authentication even when turned off, even when a redirect to oamhost2 for authentication works.

    Anyone where I can fix this minor but annoying?

    You will need to install a load balancer (using SST or any Web server or a load balancer), and balance the load 2 servers OAM on 14100. Example: MatchExpression /oam * WebLogicCluster = node1.oam.com:14100, node2.oam.com:14100

    After that you will need to change the value of "OAM host server" through "Configuration system-> common settings" and change the value to the URL of your server that does the load balancing.

    Once the above changes, when you hit your protected site, you will be redirected to the url of the load balancer for oam who, in the case of a failure in node OAM are failed over to the other node.

  • Problem in Configuration of Hyperion FDM load balance...

    Hi all

    I installed hyperion essbase, planning, Hfm and Fdqm 11.1.1.3 version.

    but I get error when setting up the configuration of fdm load balance...

    error: when I click on test connection in authentication providers (Shared services (CSS))... get the error message like cannot create ActiveX component

    Please give me answer if you know about it.

    Kind regards

    Mady

    This error indicates that the dcom COMJNIBRIDGE object is not able to successfully launch or it was not properly registered on the FDM application server:

    (a) start > run > DCOMCNFG
    (b) expand Component Services > computers > my computer > DCOM CONFIG
    (c) locate the COMJNIBRIDGE object, right-click and choose "Properties".
    (d) click the identity tab and choose "This user" and look for the Service of FDM account and enter and confirm the password
    (e) re - test

  • Clustering, load balancing, failover implementation process - worm 11.1.1.3

    We are setting up two servers Linux Red Hat, with the 11.1.1.3 Essbase version,

    Question is which tool or where the process of configuration we achieve the objectives
    mentioned in the question and answer below. Any help will be great.


    Thank you
    Jay


    Box1:
    • Services Essbase 32-bit server
    • Essbase administration services 32-bit Web Application
    • 32-bit client Essbase
    • Additional components Essbase
    • Web Applications service provider.


    Box2:
    • Services Essbase 64-bit server
    • Essbase administration services Web 64-bit Application
    • Essbase client 64-bit
    • Additional components Essbase
    • Web Applications service provider.


    with answers, general order questions

    Can you please give us more details on what you are trying to achieve?
    Trying to accomplish load balancing, Clustering and Higavailability.

    What do you mean by "using a file system location"?
    We want to use a single source (a space on a single server) to the application and the data on the shared network or one of the boxes.
    where similar applications on both environments will use a system of data files and other activities of essbase, so double maintenance
    is eliminated.

    Have you ever seen such environment or implemented?
    NO.

    Share with us all the steps that you follow?
    We are at a stage of installation and configuration of servers and software.

    Two Essbase servers cannot share the same files IND/PAG, correct - each server is expected to be able to block them exclusively.

    V11 makes it a little easier to see which files can be shared and which cannot. The idea, as I understand it, is that you can share the entire folder Oracle\Middleware between all the servers in your cluster (assuming they have the same operating system, architecture, etc.), but we must give each server a separate subfolder under user_projects (by nominating the "instance" when you run the Setup program). Each subfolder under user_projects must be assigned to a single server. All Essbase data, apps, etc. is all user_projects subfolders, so they cannot be shared.

  • How to configure das MD3200i load balancing

    I would like to connect a MD3200i (with two raid controllers) to one of our Windows 2003 R2 servers without the aid of a switch.

    After most of the documentation, some things remain pretty obscure to me. I'm new to MPIO/balancing and cannot figure how to set up.

    Is it possible to connect 1 nic host to RAID 0 and another host nic to RAID 1 and then combine the bandwidth? Thus having 2Gbs instead of 1Gbs? Or is it only a redundant path sollution, happening the other controller in case of failure of the first line. How can I configure this regarding the IP addresses, subnets. And where is the configuered to load balancing. This is explained in the documentation? I can't find it. I found a few examples that include the use of a switch, but none with das sollutions.

    What I have is 4 the MD3200i UTP cables to connect to the host. 2 the high raid controller and 2 on the lower raid controller. And use that I have 4x1Gbs, resulting a connection 4Gbs to a single partition on the MD3200i of load balancing.

    Thanks for any help.

    Multiple paths and in windows 2003 load balancing is managed by the driver MPIO is installed when you install the 'host' or 'full' version install MD Storage Manager. There is no need to separately aggregated network adapters to get the aggregate bandwidth. The pilot, by default, uses repetition alternated on all ports connected to a single controller.

    Also, for a single virtual disk, all i/o through a single controller and the second controller acts as a redundant path. So, if you have 2 x 1 Gbps connections to each controller, you will have, at most, 2 Gbps for each partition. Now, each controller can have virtual disks, so the second controller may have a second partition that will also have a separate between 2 x 1 Gbps connection.

    You can set IP addresses and subnets that are similar to the way that you would with a switch as long as you can test the connection port. It would be wise for each NETWORK card on the host on a different subnet and each port on the MD3200i on the corresponding subnet. This will make it easier when you set up your iSCSI.

    You can use the configuration utility to MD in place your iSCSI sessions too

    -Mohan

  • The storage load balancing process

    We have a group of 4 members, total approximately 30 TB of space. In the past, we had a lot of volumes of 500 GB for ESX, after the installation of the ESXi5.1, we use higher volumes, about 1.5 TB. So there are a lot of changes in the storage pool. We find that the EQ is balancing of storage compared to 4 members as expected. We thought it was over two or three days agoo, but now he's balancing... then again for a couple of day all volumes are spread over 3 members, also, as expected, but he decides to charge storage it swings again... and again...  It is coming to an end sometimes?

    We have another group with 4 members and also the same amount of space, but it we do not use the 1.5 TB volumes again... here, we see that EQ is continuous storage load balancing pool.

    Im not worried yet :)), but whenever volumes are redestributing compared to members, it does not follow on some reconnects for ESX as the part of a volume can and will reside on another Member where on that time esx is not a connection to that session at that time.

    Hello René,.

    It will not be stuck in a loop.  Part of the balance to the maintenance of free space between the members.  So when several pages are written to a specific member, space balancing will create plans to move the blocks to the other members to free up space on this member.  It's an ongoing balancing act.  In addition, extended periods of heavy i/o load balancer Advanced Performance will swap pages in order to compensate for the latency between members.

    Kind regards

  • Hi ALL, did any attempt on the virtual computer NETWORK load balancing using HYPERV on UCS blades

    I try to configure the CASE server cluster by using the Unicast NLB on the virtual machine on different blades on the UCS, it works for awhile, then he abandoned packages.

    I heard that this screenplay of unicast is not supported in the UCS when she used END-host mode in the fabric interconnet...? any attempted before.

    Would it, I use the multicast mode is that something needs to be done on the FBI62020 or the LAN switch upstream. ??

    Header note I found on the implementation of UCS for mulitcast NLBL:

    Microsoft NLB can be deployed in 3 modes:

    Unicast

    Multicast

    IGMP multicast

    For series B UCS deployments, we have seen that the multicast and IGMP multicast work.

    IGMP multicast mode seems to be the more reliable deployment mode.

    To do this, the monitoring settings:

    All NLB Microsoft value "Multicast IGMP" nodes.  Important!  Check ths by logging into EACH node independently.  Do not rely on the MMC of NLB snap.

    An IGMP applicant must be present on the VLAN of NLB.  If PIM is enabled on the VIRTUAL LAN that is your interrogator.  UCS cannot function as applicant IGMP.  If an interrogator of functioning is not present, NLB IGMP mode will not work.

    You must have a static ARP entry on cheating it upstream pointing IP address Unicast NLB on the multicast MAC address NETWORK load balancing.  This need will set up, of course, on the VLAN of the NLB VIP. The key is that the routing for the NLB VLAN interface must use this ARP entry as a unicast IP ARP response may not contain a multicast mac address. (Violation of the RFC 1812)  Hosts on the NLB VLAN must also use the static entry.  You may have several entries ARP.  IOS can use a function of 'alias' of ARP. (Google it.)

    How Microsoft NLB works. -The truncated for brevity Mac addresses.

    TOPOLOGY OF NLB MS

    NETWORK VLAN 10 = subnet 10.1.1.0/24 IP load balancing

    VIP = 10.1.1.10 NETWORK LOAD BALANCING

    Arp entry static switch advanced IP 10.1.1.10 upstream to MAC 01

    NLB VIP (MAC 01, IP 10.1.1.10)

    NODE-A (AA, MAC IP:10.1.1.88)

    NŒUD-B (MAC BB, IP:10.1.1.99)

    Using the IGMP snooping and interrogator VLAN snooping table is filled with the mac NLB address and groups pointing to the appropriate L2 ports.

    MS NLB nodes will send the responses of IGMP queries.

    This snooping table could take 30 to 60 seconds to complete.

    Host on VLAN 200 (10.200.1.35) sends traffic to NETWORK VIP (10.1.1.10) load balancing

    It goes of course to VLAN 10 interface that uses the static ARP entry to resolve to address MAC 01 VIP NETWORK load balancing.

    Since it is a multicast frame destination it will be forward by the IGMP snooping table.

    The framework will arrive at ALL NLB nodes. (NŒUD-A & NŒUD-B)

    NLB nodes will use its load balancing algorithm to determine which node will manage the TCP session.

    Only one NLB node will respond to this host with TCP ACK to start the session.

    NOTES

    This works in a VMware with N1k, standard vSwtich and vDS environment. Where surveillance IGMP is not enabled, the framing for VIP MAC NETWORK load balancing will be flooded.

    NLB can only work with TCP-based services.

    As stated previously mapping an IP unicast to a multicast mac address is a violation implied by RFC 1812.

    TROUBLESHOOTING

    Make sure your interrogator is working. Just to clarify that this does not mean that it is actually at work.

    Wireshark lets check that IGMP queries are received by the NLB nodes.

    Make sure that the ARP response works as expected.  Once Wireshark again is your friend.

    Look at the paintings IGMP snooping. Validate the L2 ports appearing as expected.

    CSCtx27555 [Bug-preview for CSCtx27555] Unknown multicast with destination outside the range MAC 01:xx: are deleted. (6200 FI fixed in 2.0.2m)

    IGMP mode not affected.

    CSCtx27555    Unknown multicast with destination outside the range MAC 01:xx: are deleted.

    http://Tools.Cisco.com/support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCtx27555

    fixed in 2.0(2m)

    Solution: Change the NLB mode of operation of "Multicast" to "multicast IGMP', which modifies balancing load NETWORK VIP MAC at 0100.5exx.xxx Beach, allows to transfer occur as expected.

    Q: and if I switch to switch mode, which means all of the profile and the settings on the servers are completely exhausted and I need to recreate them. ???

    A:Cisco Unified Computing System Ethernet switching Modes

    http://www.Cisco.com/en/us/solutions/collateral/ns340/ns517/ns224/ns944/whitepaper_c11-701962.html

    -There is no impact on the configuration, you have done service profiles.  they will continue to work as expected.  Mode selector has the FI behave more like a conventional switch.  Most notable is that Spanning tree will be activated and if you have several uplinks yew, tree covering weight will begin to block redundant paths.

    You need to review your topology and what impact tree covering weight.  Generally, we at the switch port upstream defined as "edge master", you want to delete this line.

    For pre-production and laboratory environment, PDI can help qualified with the planning, design and implementation partners.  Given to review the IDP site and open a case if you need more detailed assistance.

  • ISE behind the load balancer

    I have a question about ISE profiling of the servers that are placed behind a load balancer:

    If you have an ISE environment where computers and users are be authenticated and restricted access Machine (MAR) is enabled (so that users can authenticate only on a machine already authenticated), the ISE servers up-to-date with all authentications of succesfull computer manipulated by other servers in the ISE?

    For example:

    There are 2 aircraft of ISE (ISE01 and ISE02) behind a load balancer.

    A user starts the computer and the computer authentication is managed by ISE01 (and the authentication is successful). For the moment, that the user logs on to this computer, the load balancer selects ISE02 to authenticate the user.

    ISE02 will be aware that the computer has been already properly authenticated on ISE01, so that users are able to connect? Or she refuses authentication of the user, because he thinks that the computer is not (yet) authenticated and Machine Access Restrictions is enabled?

    Kind regards

    Bert

    ISE servers are aware of all authentications of succesfull computer manipulated by other servers in the ISE?

    => N°

    they are independent servers that replicate that configuration.

    If a user must always authenticate with the same ISE.

    In addition, a load balancer kills profiling since profiling requires you to cover a portion of the traffic at the ISE

Maybe you are looking for

  • Printers HP 7525: 60 HP and HP 564 ink... are they the same?

    I will be upgrading my printer shortly for the HP 7520 that uses HP564 cartridges.  My previous printer used HP60 cartridges.  I have 4 big bottles of refill ink (black is pigmented, the colors are dye) and wonder if I can use these inks to fill the

  • Properties for the control of Simulation IviScope

    Anyone know if the properties to control IviScope Simulation for TDS2000 Series works. I tried to put it by MAX properties such as waveform, FREQUENCY, so I can set different simulation of the deafualt without success. It did not affect the flexible

  • No internet connection for a profile of admin

    Hi all Today, I've faced "Blue Screen of Death" before getting this error. I am unable to connect to internet on my Admin profile after that. I have a dial-up connection. Whenever I am trying to connect I have received a msg of error "error 623: a te

  • I can't connect to internet without ethernet on laptop

    So yesterday, may 29, 2016. I have re installed windows 7 starter edition. And I can't get on the wifi. I have an ethernet cable. I can't connect in the regular wifi. Can someone please I've done wasted 5 hours on this subject, Im a noob with compute

  • Bobbieperplexed

    I'm running Windows 7 pro w/64 bit.  and the use of Firefox. My problem opens one pdf file anywhere other than in an email, it will not actually open.  It takes to be saved, and THEN I can go back, find it in the documents and open it.  If I'm in a s