How to configure Load balance

Dear all,
  Newly I installed dialog instance to my CI server,
Now I can configure load balance to my CI server.
Please send configuration doc for MSLG and what
Settings I need to perform in SAPGUI
Regards,
satish

Hi.
look at  following
http://help.sap.com/saphelp_nw04s/helpdata/en/c4/3a644c505211d189550000e829fbbd/frameset.htm
check
26317 Set up for LOGON group for autom. load balancing
118093 Concepts of defining 'limits' in logon load balancing
27044 Login workload Balancing verification test
624955 Poor user distribution in logon load balancing
regards,
kaushal

Similar Messages

  • How to configure Load Balancer in front of Web Logic Cluster

    hi all,
    I installed 2 weblogic servers in cluster and now i want to deploy Hardware Load balancer in front of them, i want to know do i require any configuration on servers or i just deploy hardware Load balancer in front clustered servers with round robin technique.
    Regards,
    imran

    I think there are two important configuration when you use hardware load balancer in front of WebLogic cluster.
    1) Passive Cookie Persistance
    You need to configure hardware load balancer so that it can identify Weblogic session cookie for routing request primary server holding HTTP sesstion.
    2) External DNS
    If there is firewall between hardware load balancer and weblogic cluster and NAT (Network translation ) is used, then you need to configure "External DNS" for each weblogic server in cluster. You need to specify the hostname used by load balancer in "external DNS".
    More details about this are available at.
    http://edocs.bea.com/wls/docs92/cluster/load_balancing.html#wp1026940
    http://e-docs.bea.com/wls/docs92/cluster/planning.html#wp1088950
    Hope this will help...
    Jayesh
    Yagna Sys

  • Configuring load balancing in agents

    Experts,
    Can you please guide me how to setup load balancing through agents?
    both java ee and stand alone in 11g.
    Cheers

    Hi,
    Have you checked the docs on how to do it :
    see section 4.3 here :
    http://docs.oracle.com/cd/E21764_01/integrate.1111/e12643/setup_topology.htm#CHDDDABA
    On the physical agent properties in Topology you can choose to link the agents together on the load balancing tab.
    Edit - slightly nicer write up for you here : http://gerardnico.com/doc/odi/webhelp/en/usermanual/topology/topology/load_balancing.htm

  • How do I load balance TFTP between two servers and a client on the same subnet?

    Hi,
    I have trawled through several documents and tried umpteen different configs, all to no avail. I have a PXE boot client trying to access a boot file via TFTP from a couple of TFTP servers on the same VLAN/subnet. For HA purposes I want to load balance the two TFTP servers.
    Config is currently;
    =====
    probe icmp ICMP_PROBE
      description icmp probe for default gateway tracking
      interval 5
      passdetect interval 15
    rserver host server1
      description Server1
      ip address 10.0.0.1
      inservice
    rserver host server2
      description Server 2
      ip address 10.0.0.2
      inservice
    serverfarm host serverfarm_01
      description servers used
      probe ICMP_PROBE
      rserver server1
        inservice
      rserver server2
        inservice
    class-map match-all L4_VIP_TFTP
      10 match virtual-address 10.0.0.10 udp eq 69
    policy-map type loadbalance first-match L7_TFTP
      class class-default
        serverfarm serverfarm_01
    policy-map multi-match L4_LB_VIP_POLICY
      class L4_VIP_TFTP
        loadbalance vip inservice
        loadbalance policy L7_TFTP
        loadbalance vip icmp-reply active
    nat dynamic 1 vlan 200
    interface vlan 200
      ip address 10.0.0.250 255.255.255.0
      nat-pool 1 10.0.0.241 10.0.0.243 netmask 255.255.255.255 pat
      service-policy input L4_LB_VIP_POLICY
      no shutdown
    ip route 0.0.0.0 0.0.0.0 10.0.0.254
    =====
    I have read the doco by Ivan Kovacevic amongst many others but as my clients and servers are on the same subnet, the config doesnt work.
    Can anybody point me in the right direction please. The devices are ACE 4710 running A3(2.3).
    Thanks

    Try using the following configuration:
    Note: Please make sure to configure also a udp probe to probe udp port 69, in case the application is down.
    You need to configure a management policy on the interface when using a UDP probe.
    That is because, when port 69 on the server will be unreachable, the server will send an ICMP unreachable.
    ACE will consider a udp probe as "failed" only when it sees ICMP unreachable.
    Without a management policy-map, the ICMP unreachable message will be dropped.
    Also, add an ICMP probe to the rserver because udp probe will not be enough when the physical interface will be down.
    That is because UDP is a connection-less protocol. To consider a UDP probe successfull, ACE need to see NO answer from the server in respose to the probe.
    The ACE will not see any answer from the server when the interface is down and thus, will consider the probe as "sucessful".
    With ICMP probe attached to the rserver, you also test the reachability of the server and not only the UDP port.
    Here is the configuration (of course, you can chage the names of the of the objects to the name you are using if you want) :
    access-list ALL line 10 extended permit ip any any
    probe udp TFTP
      port 69
      interval 5
      passdetect interval 15
    probe icmp ICMP_PROBE
      interval 5
      passdetect interval 15
    rserver host TFTP_1
      ip address 10.0.0.1
      probe TFTP
      probe ICMP_PROBE
      inservice
    rserver host TFTP_2
      ip address 10.0.0.2
      probe TFTP
      probe ICMP_PROBE
      inservice
    serverfarm host TFTP-SFARM
      rserver TFTP_1
        inservice
      rserver TFTP_2
        inservice
    sticky ip-netmask 255.255.255.255 address source TFTP-STICKY
      timeout 10
      replicate sticky
      serverfarm TFTP-SFARM
    class-map type management match-any MANAGE
      2 match protocol icmp any
    class-map match-all NAT
      2 match virtual-address 0.0.0.0 0.0.0.0 udp any
    class-map match-all TFTP
      2 match virtual-address 10.0.0.10 udp eq 69
    policy-map type management first-match MANAGE
      class MANAGE
        permit
    policy-map type loadbalance first-match ROUTE
      class class-default
        forward
    policy-map type loadbalance first-match TFTP-POL
      class class-default
        sticky-serverfarm TFTP-STICKY
    policy-map multi-match TFTP-MULTI
      class TFTP
        loadbalance vip inservice
        loadbalance policy TFTP-POL
        nat dynamic 1 vlan 212
      class NAT
        loadbalance vip inservice
        loadbalance policy ROUTE
        nat dynamic 2 vlan 212
    interface vlan 212
      ip address 10.0.0.250 255.255.255.0
      no normalization
      access-group input ALL
      nat-pool 1 10.0.0.241 10.0.0.243 netmask 255.255.255.0 pat
      nat-pool 2 10.0.0.10 10.0.0.10 netmask 255.255.255.0 pat
      service-policy input TFTP-MULTI
      service-policy input MANAGE
      no shutdown
    Let me know how it goes.
    Good luck!

  • Adapter configuration & load balancing

    Hi,
    I posted questions for my requirements on Adapter forum but did not get any answer.
    Hope this forum can help.
    We started a POc with Oracle As adapters for EBS. As part of that we are trying following taks,
    1) Connect to multiple EBS instances & deploy individual adapter for same on AS
    2) Use these two instances for loadbalancing & scalaing
    I am not bale to find information about above two in Oracle Adapter documentation.
    I could build sample EBs adpater scenario with concurrent programs and use a default APPS adapter deployed on AS server by modifying oc4j-ra.xml. But failed to delpoy multiple instances that can be viwed from Enterprise Manager.
    Also how to configure my adapters for better load balancing and sclaling. Is there any doc link that i can read?
    Thanks in advance.

    Hi,
    This High Availability Guide will give some hints on the same:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cefe0399-0701-0010-8d86-b6b31cc5a681
    http://help.sap.com/saphelp_nw70/helpdata/en/43/39c7b227b91bcbe10000000a1553f7/content.htm
    Hope this helps,
    Rgds
    Moorthy

  • How to properly load balance between diffrent server farms.

    Hi experts,
    We are using an ACE 4710. We chose for our server farms to load balance using the least_connections predictor. it seems to work fine inside the same server farm but is it working properly between server farms? It doesn't seem because some of my real servers seems to be more loaded than others. Each server farm are using the same real servers.
    Any idea about what is the problem or any suggestion regarding the best load balancing predictor we should use using this kind of configuration?
    Thank's to all.

    The ACE uses load-balancing algorithms or predictors to determine how to balance the traffic among the devices configured in the server farms, independent of the device type. For FWLB, we recommend that you use only the hash address source and the hash address destination predictors. Using any other predictor with FWLB may fail and block traffic, especially for applications that have separate control and data channels.
    Here is the configuration guide for the Cisco ACE 4700 Series Appliance Server Load-Balancing.
    http://www.cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/ace_appliances/vA1_7_/configuration/slb/guide/fwldbal.html

  • Issue with Site Configuration / Load Balancing

    We’re noticing strange behavior with our servers that are configured behind a load balancer. We’ve got two servers with different ports and a load balancer:
    Server1: https://host1:30003/opensso
    Server2: https://host2:30103/opensso
    Load Balancer: https://loadbalancer:30003/opensso
    When we go to the admin console, we can access Server1 without a problem, but the second time we go the load balancer sends us to Server2, and our browser returns a page not found error. We’ve traced the HTTP traffic and discovered that every other time we go to the admin console (the load balancers are configured round robin), Server2 always returns a bogus HTTP found URL. The response it provides is something like https://loadbalancer:*30103*/opensso/UI/Login (just an example).
    The issue here is that it is properly directing the end user’s browser to the load balancer DNS entry. It is not however directing the end user’s browser to the proper port. It seems to sends its own port value to the browser. Obviously when the browser tries to access this URL the Load Balancer rejects the request because it is not listening on port 30103.
    Can Multiple OpenSSO application servers (configured as a site) run from behind a load balancer when they are listening on different ports? If so, why is the application server responding to the user request with its own port, rather than that of the load balancer, yet still providing the DNS hostname entry for the load balancer the whole time.

    Major updates of Muse are targeted to release roughly every quarter. The 1.0 release was in mid-May. The 2.0 release was in mid-August. A fundamental change to image loading would only appear as part of a major update due to the engineering and testing efforts required.
    As provided in your previous thread http://forums.adobe.com/message/4659347#4659347 the only workaround until then is to reduce the number of images in the slideshow.

  • Weblogic 11g load balancing configeration

    how can configure load balancing in weblogic 11 server

    Load balancing has to be done from the outside with an external load balancer, could be a Hardware or Software (such as webcache in OAS 10.1.2 ), WebLogic could do a Clustering service where several machines could host failed processes from died machine, but they nead a external Load balancer.
    Hope it helps.

  • RV042, Load Balance issue

    Hello,
    I'm a newbie to routers and on this discussion.
    I've  purchased a Linksys RV042 hoping I could connect my two ISP.
    Both of them are 1/1 Mb, first is DSL  second PPPoE connection.
    The problem is that on system summary page it doesn't show me that second WAN is connected. Even when I trying to manually connect to Internet it doesn't help.
    When this connection is in Load balance Mode, internet is very slow, sometimes it's even disconnected.
    My question is:
    How to configure Load Balance properly?
    I've tried this page:
    http://www.cisco.com/en/US/products/ps9923/products_qanda_item09186a0080a36632.shtml
    but it didn't helped.
    Or maybe it's just a demo of this option and doesn't work at all?
    Thanks for the reply.....

    Eliviszopa,
    Hi. My name is Tiya and I am one of the Cisco SMB Support Engineers. I have been eyeing your post and I would like to add a few recommendations.
    From what I've gathered, you are having an initial problem with your Dual-WAN configuration, in that you are unable to have both WAN interfaces Live at the same time. I will list a few things that will help you in determining if there is an issue with your RV042's Dual-WAN configuration and connectivity.
    I understand your Network Topology to be: [ISP Modem 1 & ISP Modem 2]---->RV042---->LAN Clients (PC).
    First thing, we need to ensure your router it at the most current firmware version for optimal performance. The RV042 series routers are currently in their 3rd HW revision, so we also need to ensure we download the firmware that is compatible with the HW version of your RV042
    To locate HW version:
    Look on the bottom of your RV042.
    You will find the Serial Number and MAC      address sticker.
    The HW Version will be visible by the      Model Number on that sticker.
    Image below has a Red Square around the      Model Number and HW version of an older RV042 as a reference. HW is indicated      with 'v' and rational number, i.e. v1.1, v2.0. Your sticker may look      slightly different, but the content will be the same:
    Now that we are certain of the HW version, check the release notes below to check the best firmware version for your RV042. I have provided a link below to the RV042 Release Notes:
    Firmware v 4.0.0.7 Release Notes:      http://www.cisco.com/en/US/docs/routers/csbr/rv0xx/release/rv0xx_rn_v4-0-0-7.pdf
    Firmware v 1.3312.19-tm Release Notes:      http://www.cisco.com/en/US/docs/routers/csbr/rv042/release/notes/RV042_RN_v1-3-12-19-tm.pdf
    If your RV042 is using neither of the 2 firmwares, follow this link to download the correct version for your router:
    http://www.cisco.com/cisco/software/type.html?mdfid=282414010&flowid=784
    I would recommend you download and      'flash' your RV042 with the current compatible version of firmware to      address the possibility of software corruption.
    Now, we need to reset your RV042 to factory defaults to remove any parameters previously configured and also, in essence, clear the router's memory so that we can start afresh. When this happens, your RV042 will return all settings to their default state; in other words, it will be as if you are pulling it out of the box for a new install. To do this:
    Disconnect the RV042 from your network,      so that the only item the RV042 is only connected to the power outlet.
    Locate the reset button on your RV042.      This will be on the front of your router and it will be recessed a bit.
    Use a small tipped item; paperclips      usually work best, to hold down the reset button for 30 secs. Anytime less      will not guarantee a full reset to factory defaults.
    Connect your RV042 to your PC. After      about 30 secs, ensure that you have an IP address of 192.168.1.100 on your      PC.
    Now, let's test each WAN port with each of your ISP connections.
    The next few steps will take us through a process that will ensure both WAN ports are working, and ultimately will help is in determining your Dual-WAN connectivity performance.
    Connect one of your DSL modems to WAN1 and configure the WAN1 interface accordingly:
    · DSL connections typically are UN-bridged by default; where you will see the modem is performing NAT. You will use DHCP as the WAN tupe for UN-bridged DSL connection types. This UN-bridged state can be recognized quickly in a couple of ways.
    o    There is a PRIVATE IP address displayed as the WAN1 IP address, e.g. 192.168.x.x. where X is a number 0-254, 10.x.x.x where X is a number 0-254, or less commonly, 172.16.x.x where X is a number 0-254.
    o    When connecting to the modem directly to your PC, you are able to reach the Internet.
    o    If your DSL connection is UN-bridged, you must make sure the LAN IP Subnet of your Modem and Router are NOT the same.
    o    Again, you will use DHCP as the WAN type for UN-bridged DSL connection types.
    · DSL connection that is Bridged will require a PPPoE Username AND Password. This PPPoE username and password will be entered on the RV042 under the WAN type PPPoE. PPPoE connections can be quickly recognized in the same manner:
    o    There is a PUBLIC IP address displayed as the WAN1 IP address AFTER correctly configuring WAN interface to use PPPoE and using correct UN/PW.
    o    You are NOT able to reach the Internet when connecting your PC directly to your RV042.
    · Contact your ISP to assist you in determining the bridged state of your modem to be absolutely certain.
    2.     After you have properly configured WAN1 and confirmed Internet connection, configure WAN2 in the same fashion.
    3.     Change Primary WAN to WAN2 by going to the following location in the RV042:
    · System Management>Dual-WAN> Smart-Link Backup Primary : WAN2 (change this option)
    4.     Disconnect DSL Modem from WAN1 and connect to WAN2.
    5.     Power cycle the DSL Modem, RV042, and also disconnect your PC from the router as well while it is powered down.
    6.     After about 5-10 sec, and in this order, power on your Modem, power on you RV042, and reconnect your PC to one of the LAN ports of your RV042
    7.     After about 30-60 secs, test for Internet connectivity.
    Now we will do the same for your other ISP connection.
    1.     Disconnect all devices from the RV042, save your PC.
    2.     Change Primary WAN to WAN1 by going to the following location in the RV042:
    · System Management>Dual-WAN> Smart-Link Backup Primary : WAN1 (change this option)
    3.     Connect 2nd ISP connection to WAN1 and configure according to Modem configuration, either DHCP or PPPoE.
    4.     Power cycle the DSL Modem, RV042, and also disconnect your PC from the router as well while it is powered down.
    5.     After about 5-10 sec, and in this order, power on your Modem, power on you RV042, and reconnect your PC to one of the LAN ports of your RV042
    6.     After about 30-60 secs, test for Internet connectivity.
    7.     Do the same for WAN2 using your 2nd ISP connection
    At this point, we should now know for certain if both WAN Interfaces will allow Internet connectivity.
    If you have problems with these steps, repost with the steps you took and the results.
    If things are OK, then we will continue with configuring the router for Load Balance Mode:
    1.     Navigate to System Management>Dual-WAN and change your selection from Smart-Link Backup to Load balance
    2.     Configure both WAN1 and WAN2 with the configuration that correlates to the Modem connection it will receive.
    3.     Connect both Modems to the correct WAN port on the RV042.
    4.     Power cycle all devices; Both Modems, RV042, and PC
    5.     Navigate to RV042 management page and check to see if there are IP addresses for WAN1 & WAN2 Interfaces.
    If you have problems with these steps, repost with the steps you took and the results. Let us know your results.

  • Configuring RFC connections for load balancing.

    Hi ,
    We have the following landscape for our systems.
    The database is installed on z/os , db2 (mainframe). The central services( SCS and ASCS) are also on the mainframe. So the message server is on mainframe.
    The CI is on AIX and The DI is on AIX.
    We have Logon groups configured and load balancing Configured and is RFC enabled.
    1) When we connect to SAP using the SAPGUI and  the portal connection is made to either CI or DI depending upon the best response times.  Now recently we are running the mercury load testing, all the users are connecting to DI. Why are the users connecting to DI even though we have load balancing?
    2) I have a system with SID BP0, with one CI and one DI. The logon group is BP0 and the message server name is cyrix. Now I have other another system EP0. I have created a RFC connection from EP0 to BP0. In SM59 I have selected the load balancing option, and provide the message server name, SID and logon group name. The connection does not work. If I connect directly to the CI or DI the connection works. Please tell me how can I configure load balancing for RFC connections.
    Thanks
    Manmath.

    Dear 917996,
    There are two types of load balancing:
    - Client-side load balancing (setting up the tnsnames.ora on client side). More information here (http://ggsig.blogspot.co.uk/2012/04/client-side-
    load-balancing-in-oracle.html). Very good video produced my friend Igor Melnikov is here (http://www.dsvolk.ru/oracle/racdd4d/demos/video/loadbalance/client/clientloadbalance_viewlet_swf.html)
    -Server-side load balancing (remote_listener and setting service parameter clb_goal). Very good Igor Melnikov's video is here (http://www.dsvolk.ru/oracle/racdd4d/demos/video/loadbalance/server/serverloadbalance_viewlet_swf.html).
    I have read about client side and server side load balancing. By editing tnsnames.ora I have enabled client side load balancing which is suppose to select listeners at random. then why does it only go to second node?Could you please show your tnsnames.ora on client?
    Please can anyone help me to configure server side load balancing with SCAN. I have read many many post but couldn't find a clear answer.Based on your output (remote_listener string cmbtrnrac-scan:1521) you have already configured the server side load balancing.
    SQL> show parameter listener
    NAME TYPE VALUE
    listener_networks string
    local_listener string (DESCRIPTION=(ADDRESS_LIST=(AD
    DRESS=(PROTOCOL=TCP)(HOST=10.1
    7.67.214)(PORT=1521))))
    remote_listener string cmbtrnrac-scan:1521How many SCANs do you use? Do you use DNS?
    regards,
    Gennady

  • How to Load Balance Event Collection

    Hi, 
    I got the Windows Event Forwarding working, but how can I load balance a huge number of souce computers to forwared their events to two or more servers in my domain?
    Im Using Windows Server 2012R2 as my collectors and 2008R2 and after as my forwarders.
    Thanks for your replies.

    Hi DDerJoel,
    Windows Event forwarding is a build-in functionality, easy to use. But it does not provide load balance function. System Center Operations Manager, as a full grown product,
    provides more advanced enterprise monitoring solution.
    Or you can refer the following related KB to optimize your log forwarding server.
    Configure Advanced Subscription Settings
    http://technet.microsoft.com/en-us/library/cc749167.aspx
    I’m glad to be of help to you!
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Thanks for reply, 
    I already got to the page you provided above in my research and it helped me out a lot, but not enough I think.
    I would highly appreciate if you find some time to help me get out of my confusion Here
    Thanks in advance.
    PS: Am I able to set up a email notification, if a question qot anwered? Thanks.

  • Configure Barracuda Load Balancer with Exchange 2010

    I have following scenario:
    1 x DB
    1 x Exchange multi role server on VLAN1 on site 1
    1 x Exchange multi role Server on VLAN2 on site 2
    1 x cas array on site 1
    1 x cas array on site 2
    1 x Barracuda at site 1.
    How barracuda will load balance my 2 exchange servers located on different subnets and sites? Do i need to make them SINGLE SITE? and make them part of single array or i can do it without bringing them into single site. Barracuda can access both exchange servers.
    I cannot move servers, all i have to do is in the same scenario and that is to load balance CAS services.
    Hasan

    If your network supports(i.e. Bandwidth between Vlan1 and Vlan2) and if it is single ADsite you can. You have to add both Vlan1 server and Vlan2  server to the load balancer. 
    Enable DAC on both servers http://technet.microsoft.com/en-us/library/dd979790(v=exchg.150).aspx
    Cconfigure alternatewitness on DAG properties. http://technet.microsoft.com/en-us/library/dd297934(v=exchg.150).aspx
    One server with all roles in Vlan1  IP 192.168.1.101  
    One server with all roles in Vlan2  IP 192.168.2.101
    Assume you configured 192.168.1.100 as Barracuda VIP and pointed the names to this IP.
    If your Vlan1 network goes down your Exchange will go offline till you point the CAS Array FQDN to the IP of the Vlan2 server in Vlan2 DNS server. (i.e point CAS array FQDN to 192.168.2.101 as per above example)
    If you are not sure about the configuration on Barracuda I suggest you take help from Barracuda support to configure as per the above scenario. 
    If you want to reduce the traffic between Vlans you can switchoff shadow redundancy. Please read about
    shadow redundancy before switching off
    Set-TransportConfig -ShadowRedundancyEnabled $false
    Thanks, MAS
    Please mark as helpful if you find my comment helpful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you.
    I got you. Now if i make both Vlans server part of single array and that array FQDN IP will obviously be one of VLANs IP, so if that VLAN goes down then i need to change the IP of CAS array FQDN from local DNS (Pick one IP from another VLAN) and also on
    Barracuda... right? 
    Also correct me that VLAN IP on Barracuda will be the IP of CAS Array FQDN right? 
    Hasan

  • XIR3 Clustered load balancing - how is it handled?

    Can anyone help me with this, or point to some useful documentation on the following? The scenario is this. I plan to deploy the following 2 servers:
    1. Server 1, with it's CMS and system database
    2. Server 2, clustered with Server 1 (different machine), using the same system database and FRS (on a NAS).
    Questions
    1. How is the load balancing handled. Is there an SIA for each server, or one SIA handling each server and respective CMS? By what process/servers is the load balancing handled?

    That's strange. The client side of DeskI doesn't store what connections are being used or how many, so how could it evaluate which server to use before connecting? Surely if I am asking it to connect to Server B and it finds Server B then it would use Server B? If it couldn't find Server B then I can understand how it would redirect to Server A.
    In my case the CMS for Server B is up and running, my registry settings are configure to search for A and B, so in the case of Server B being unused and the CMS up and running the DeskI client that is looking for Server B sould find Server B and not Server A, right?
    Is there any documentation on this?

  • How to config in this architecture to achive load balance?

    We have a XI which has a dialog instance.now we use the XI to connect to R3 system using abap proxy and to a no-sap system using JDBC.
    no-sap sys(DB2)->JDBC adapter<-xi(CI+Di)->r3
    The question is how to achive load balance,using web-dispatcher or other method?
    Thanks in advance!

    HI,
    See the below link
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0332d790-0201-0010-46b1-a0530fe87c1f
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/30f8bd90-0201-0010-dd9a-c8a7f52c47aa
    Regards
    Chilla

  • SAP GLM Print Request - Load Balancing of WWI server

    Hi GLM Experts,
    I am using new GLM + module that generates labels based on Print Requests. I am unable to understand how I can load balance the WWI services when there are multiple label printing requests.
    In GLM + we associate a WWI to a Print Station and which can then be associated with a printer. So in the configuration we are tying up a printer a WWI.
    Also during label printing, if the scenario uses print request module, then the use need to select a print station and printer. What happens if the WWI related to the print station is down?
    For example I have two services in WWI server GENPC1 and GENPC2. I created WWII and WWI2 as two print stations. I will associate my printer PRNWWI to both the print stations WWI1 and WWI2.
    During label printing if the user picks and WWI1 and Printer PDNWWI and if the GENPC1 WWI server assocaited with print status WWI1 is busy and down I want WWI GENPC2 to generate the label?
    How to setup the above load balancing or fall back? Please let me know.
    Thanks
    Pugal

    Dear Pugal
    we are not using GLM + and I am not sure about the technqiue used there to handle load balancing. Regarding general WWI setup I assume you know this Note: EH&amp;amp;S: Availability and performance of WWI and Expert servers
    On the top there is a further SAP Note abvailable which might be of interest. This is referenced here:
    http://de.scribd.com/doc/191576739/011000358700000861002013-e
    May be check OSS note: 1958655; OSS Note 1155294 is more related to normal WWI stuff; but may be check it as well. May be 1934253 might help better
    May be this might help.
    C.B.
    PS: may be check as well: consolut - EHS_MD_140_01 - EH&amp;amp;S-Management-Server einrichten
    The load balancing of synchron WWi servers is donein the "RFC" layer, therefore you have no inffluence here, for asynchron WWI servers you can do a lot to manage the WWI load balancing by using "exits" etc.

Maybe you are looking for

  • Can I get a new and bigger hard drive on my macbook?

    Right now I have an 80GB Hard Drive, It keeps getting filled up too easily and I need a bigger hard drive. When I chatted with a person (online) at the apple store they said it couldn't be replaced after it has been formatted or something, unless som

  • How to generate unique IDs for a metadata field

    Hi, We have a requirement to generate a unique ID for a metadata field. Does anybody know how this can be achieved? Ideally I would want to have a database sequence and specify the metadata field to get value from this database sequence, similar to h

  • Oracle 9iAS 9.0.2.1

    I have installed the software for Oracle 9iAS 9.0.2.1, i need to configure the same. I am searching for : 1. any guide that will help me do the same (Oracle 9iAS Administration Guide) and 2. Any Configuration Assistant tool. So that i can deploy my a

  • Where did old iphoto library go?

    My main iPhoto libary has disappeared and I am freaking out. This happened after opening iPhoto with the option key down and opening it with a different library. Now I can't get my original library back. None of the libary options are the right one w

  • How to access old SRs

    A few months back I submitted an SR related to the CBO and Density checking - I'd like to reference that SR again but I don't have the number and it's not active in Metalink. Does anyone know how you can find SRs that were created that are no longer