CSM SLB for SAP portal 5.0

Dear All!
Is there somebody who have experineces with SLB for SAP portal? The main question is : Which sticknies to use: SSL or IP based? How to configure IP based, because I did not find good explanation of "netmask" parameter in sticky,sticky-group command. What happen to sticky connection, when real server fail. Is it rebalanced?
Thanx!
Gabriel

Hi Gabriel,
I do not have experiences with SAP-Portal Loadbalancing but from my experience with loadbalancing I would say that this decision should be done regarding the surrounding environment. If there are proxies around which are used to connected to the loadbalanced VIP I would suggest SSL-Session balancing/stickieness. If clients are directly connecting towards the VIP a client-IP-stickieness might be easiser to troubleshoot.
Regarding the netmask issue:
Unfortunately there is no real documentation (I did not find any so far). I can only tell you the result out of my experience:
A netmask 255.255.255.255 is kind of host stickiness and 255.255.255.0 a stickieness of a /24 network. In other words I think that all Clients with a network of 10.1.1.0/24 are sticked to the decission once taken for one of the hosts in this segment while the sticky timeout did not take place. Maybe one can confirm or correct this.
Regarding the thing with the failure of a real server:
With the corresponding failaction defined in the serverfarm you decide what to do in case of an error of a real server. The stickiness should be corrected correspondig to the results you define with the failaction command.
This is how I dealt with those sticky issue when doing firewall loadbalancing with client-IP-Stickiness.
Hope that helped.
Kind Regards,
Joerg

Similar Messages

  • CSM - STICKY FOR SAP PORTAL USING SAPLB_* COOKIE

    Hello,
    Please, someone could send me an sample config implementing session persistence in SAP using saplb_* cookie in CSM with software 4.2 ?
    Thank You,

    we need more details.
    What's the cookie name ?
    Is it saplb_ ? is it changing  (so the asterisk saplb_*) ?
    The CSM can only learn the value of a cookie for a specific name which is static.
    This is done easily.
    IE:
    gdufour-cat6k-2(config-module-csm)#sticky 100 cookie saplb
    Once you have created your sticky group, you can assign to your vserver
    gdufour-cat6k-2(config-module-csm)#vserver www
    gdufour-cat6k-2(config-slb-vserver)#sticky 60 group 100
    Gilles.

  • Business packages for SAP Portal 7.3

    Hi,
    as far as I know at the moment there are no business packages existing for SAP Portal 7.3. Is this correct? If yes, how are the different business packages scheduled?
    Bye,
    Timo

    Hi Timo,
    with EHP5 you may choose between WD JAVA and WD ABAP.
    Just check
    http://help.sap.com/erp2005_ehp_06/helpdata/en/48/a2d0be5444690ae1000000
    0a42189c/frameset.htm
    As soon as you have decided to use one of the versions you may use the Maintenance optimizer to determine the pacakge.
    The release of the portal is not so important for the business packages. The NW release is just important if you run the JAVA applications on this machine as well. For NW 7.3 this means
    you will need the 633 and 630 packages.
    Regards
    Shrikant

  • Use only Internet Explorer for SAP portal

    Hello,
    We have a requirement to use only internet explorer for SAP portal.
    When we try to use portal in any other browser, it should display a message saying "This browser is not supported for the application" (or any other message). But purpose is, the portal application should be usable in only one browser i.e Internet Explorer.
    If any one have any idea on this, how this can be implemented, then please share the same. I tried to find if there are any standard SAP portal parameters, but haven't come across any.
    Regards,
    Denish

    Hi Denish:
    Following link may not apply to your scenario but could give you some direction and ideas:
    Changing the Default Browser Detection - Developing Web Dynpro ABAP Applications - SAP Library
    Further more, specifics of your system set up may help us in understanding your situation better and perhaps we can offer more help.
    Sincerely,
    Amrit

  • How can generated EWA for SAP Portal system

    Hi Guru there,
    Usually generate EWA should maintenan RFC, We have SAP Portal systems ( prod PP1 and test PT1 and dev PD1), but they are not appeared at saplogon and no general SAP interface, only operationing system level we can start/stop SAP system and database and from the operating system browser can see the portal work normal ( 50000 port) or not.
    How can I generate EWA from solman?
    waiting for your kind reply!
    best regards,
    WEI

    Hi Wei,
    Do you already know SAP Note <a href="http://www.service.sap.com/sap/support/notes/976054">976054</a>?
    This SAP Note describes the setup of EWA for NON-ABAP Components.
    Please see the description and the attachments.
    Best regards,
    Ruediger

  • Blogging application for SAP Portal?

    I would like to ask what kind of Blogging application is the SDN using on it's pages?
    We would like to add a blogging application for the Portal and have read that at the moment, there is no SAP built-in application for blogging.
    What would be the best solution to integrate Enterprise blogging in the SAP Portal?

    Hi,
    Did you get to look at this [thread|https://www.sdn.sap.com/irj/scn/thread?messageID=6415605#6415605]
    Hope this helps!
    Cheers,
    Sandeep Tudumu

  • Which NWDS Studio Version for SAP Portal SP 7

    Hi experts,
    which NWDS Studio Version I have to use for SAP Enterprise Portal SP 7 and where can I see the Version number from NWDS?
    Under help -> about -> feature details I read:
    Eclipse    2.1.2
    SAP AG  2.5.12
    Thanks in advance!

    Like this u can see in help menu...
    Then u can find the version...
    SAP NetWeaver Developer Studio
    Version: 7.0.09
    Build id: 200608262203
    (c) Copyright SAP AG 2006.  All rights reserved.
    Visit http://www.sap.com
    This product includes software developed by the
    Apache Software Foundation http://www.apache.org/
    Eclipse.org http://www.eclipse.org/
    URs GS

  • How to move files from one folder to another folder in webdynpro java for sap portal

    Dear Experts,
    I wan to move files from one folder to another folder in SAP portal 7.3 programmatically in webdynpro java.
    My requirement is in my portal 1000 transport packages is their. Now i want to move 1 to 200 TP's into Archive folder.
    Can you please help me how to do in through portal or wd java ...
    Regards
    Chakri

    Hello,
    Do you know what the difference between copying a file this way :
    ** Fast & simple file copy. */
    public static void copy(File source, File dest) throws IOException {
    FileChannel in = null, out = null;
    try {         
    in = new FileInputStream(source).getChannel();
    out = new FileOutputStream(dest).getChannel();
    long size = in.size();
    MappedByteBuffer buf = in.map(FileChannel.MapMode.READ_ONLY, 0, size);
    out.write(buf);
    } finally {
    if (in != null) in.close();
    if (out != null) out.close();
    ================SECOND WAY============
    AND THIS WAY:
    // Move file (src) to File/directory dest.
    public static synchronized void move(File src, File dest) throws FileNotFoundException, IOException {
    copy(src, dest);
    src.delete();
    // Copy file (src) to File/directory dest.
    public static synchronized void copy(File src, File dest) throws IOException {
    InputStream in = new FileInputStream(src);
    OutputStream out = new FileOutputStream(dest);
    // Transfer bytes from in to out
    byte[] buf = new byte[1024];
    int len;
    while ((len = in.read(buf)) > 0) {
    out.write(buf, 0, len);
    in.close();
    out.close();
    And which is better? I read up on what each kind of does but still a bit unclear as to when it is good to use which.
    Thanks in advance,
    JavaGirl

  • Disaster Recovery setup for SAP Portal

    Hello,
    I am trying to setup a DR site for our portal system. We are using EMC Recover Point to do the SAN replication between Production and DR site. We are using MSCS cluster with one CI and DI in Production. For DR, we are planning to go with a distributed installation with one portal and database node.
    Can I create the DR system using System copy assuming that the SID is going to be the same, and the host names/IP addresses are different. How can we make sure that the custom applications deployment in production is in sync with the DR site? I don't think replicating the database preserves everything as the Java system persists data in both the database and the file system, for example the Software Delivery Manager (SDM) is persisted in the file system.
    So, how can I make sure that the file system is also gets replicated between production and DR site? Should I keep the DR system shutdown and bring it up for weekly sync up or it can run parallel with the production system?
    Thanks.

    Hi,
    Regarding the system copy, last time I did one myself (its a while ago so I'm not sure if it is still a limitation) it was not possible to have the Target SID the same as the Destination SID.
    If this is not a limitiation anymore then yes you can use the system copy procedure as it also takes the SDM with it.
    Cheers,
    Benjamin

  • License for SAP Portal (SAP NetWeaver 7.0)

    Hi!
    We successfully installed SAP NEtWeaver 7.0 with SAP XI/PI and applied a permanent license for this system.
    Furthermore the SAP EP has been also been installed with other SID.
    Do we need for SAP EP also to order a second license because the current temporary license is only 30 days valid?
    Thank you very much!
    Thom

    Hi!
    Is it not in package with SAP NetWeaver 7.0?
    I mean is it free of charge when I already installed SAP NetWeaver 7.0 with SAP XI and ordered for SAP XI a permanent license. 
    Thank you!
    Thom

  • Settings for SAP Portal start page from BEx Query Designer

    Hi!
    In order to see queries I would like to use SAP Enterprise Portal from BEx Query Designer.
    When I push "execute" button within BEx Query Designer a wrong page will be shown in browser.
    I changed the settings in table RSPOR_T_PORTAL, but still get the wrong Portal page shown in browser.
    Question:
    What is the transaction/table/report to customize the portal start page using by BEx Query Designer?
    Thank you very much!
    regards
    Jürgen

    Hi Anton?
    Many thanks for your reply.
    But I mentioned that I changed the URL within table RSPOR_T_PORTAL and this does not help...
    Do you speak Russian? Me too
    Can you also help me with the following problem?
    Hi!
    I am about to implement SAP Best Practices scenario "B34: Accounts Receivable Analysis".
    Therefore I load the data from SAP ERP IDES system into SAP NetWeaver 2004s system.
    My problems are:
    when I try to load the transaction data for Infosources 0FI_AR_4 and 0FI_AR_6 from SAP ERP system the following happens:
    - the status is getting u201Cyellowu201D (194 from 0 records)
    - at the next day the status is getting u201Credu201D and I received the following error:
    Errors while sending packages from OLTP to BI
    Diagnosis
    No IDocs could be sent to BI using RFC.
    System Response
    There are IDocs in the source system ALE outbox that did not arrive in the ALE inbox of BI.
    Further analysis:
    Check the TRFC log.
    You can access this log using the wizard or the menu path "Environment -> Transact. RFC -> In source system".
    Error handling:
    If the TRFC is incorrect, check whether the source system is fully connected to BI. In particular, check the authorizations of the background user in the source system.
    Comment:
    I did not find any entries on "Environment -> Transact. RFC -> In source system"
    The Source system connection EC6CLNT100 is OK
    Can some one help me to solve this problem?
    Edited by: Jgen Pfeiffer on Feb 5, 2009 12:48 PM

  • Blog for SAP Portal

    Hello,
    has anybody integrated a blog into the SAP Enterprise Portal ?
    If so : which 3rd party can be recommended & is there the possibility to have tight integration with the portal (branding, look & feel), business package, etc?
    Easy points to earn )
    Thanks!

    Thanks for the response!
    In the meantime I have done some research :
    http://wordpress.org/ (PHP/MySQL - can be installed in multiple languages http://codex.wordpress.org/WordPress_in_Your_Language / Publishing a blog in multiple languages requires some tweaks http://blog-en.icanlocalize.com/installing-wordpress-for-multiple-language-blogs or via a plugin http://www.poplarware.com/languageplugin.html)
    http://www.s9y.org/ (PHP/MySQL, PostgreSQL, SQLite - can be installed in multiple languages)
    http://roller.apache.org/ (Java based - used by IBM, Sun, etc. Nice example : http://blogs.sun.com/ - supports publishing blog entries in multiple languages out of the box  http://rollerweblogger.org/project/)
    Further possibilities on http://en.wikipedia.org/wiki/Weblog_software
    Currently, the Apache Roller seems to be the most promising.

  • Planning a production system for SAP portal

    Hello Experts-
    Can any one of you point me to some document or blogs on best practises on designing production portal. I am not looking for best practics implementing portal, but just production system.
    Thanks,
    John.

    Hi,
    What do you mean by implementing portal production system ? Are you talking about HA or from application point of view ? If application point of view, what all application you want to install on portal ?
    Thanks
    Sunny

  • Ant for SAP Portal Folder Sync

    Hi
            Recently we needed to make some changes to the default .css files in the two design components of the portal( urdesigndata and portaldesigndata). Well we are now tryng to create a ant builder in such a way that we can make changes locally and then use the ant to Sync the files with both components of the portal.
             We have achieved a sucessful builder that does what we want but takes way to many time to sync files. (aprox 6 mins, or 24 mins when its a complete theme sync)(eg Images etc).
             How could this be achieved  having a better performance solution?
             We are using ant Standard tasks "Sync", "Tar/Zip" ,"Untar/Unzip", Copy for our current solution and we have seen that there is a possibility to use "SCP" task that would probably help on the performance side. This issue happens because we are using the network to sync the files.

    Hi,
    Regarding the system copy, last time I did one myself (its a while ago so I'm not sure if it is still a limitation) it was not possible to have the Target SID the same as the Destination SID.
    If this is not a limitiation anymore then yes you can use the system copy procedure as it also takes the SDM with it.
    Cheers,
    Benjamin

  • Error while loading SAP Portal

    Can anybody help me to resolve the issue of installation of SAP Portal. This is a fresh installation and I got the following error while installing the portal.
    I will appreciate any body who helps me to resolve the issue.
    Info: Begin of log messages of the target system:
    10/10/21 19:52:31 -  ***********************************************************
    10/10/21 19:52:32 -  Start updating EAR file...
    10/10/21 19:52:32 -  start-up mode is lazy
    10/10/21 19:52:32 -  EAR file updated successfully for 109ms.
    10/10/21 19:52:32 -  Start deploying ...
    10/10/21 19:52:32 -  EAR file uploaded to server for 79ms.
    10/10/21 19:52:32 -  ERROR: Not deployed. Deploy Service returned ERROR:
                         java.rmi.RemoteException: Cannot deploy application sap.com/com.sapportals.dqe.beans..
                         Reason: Exception during generation of components of application sap.com/com.sapportals.dqe.beans in container EJBContainer.; nested exception is:
                              com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Exception during generation of components of application sap.com/com.sapportals.dqe.beans in container EJBContainer.
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:477)
                              at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)
                              at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:291)
                              at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:183)
                              at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:119)
                              at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
                              at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
                              at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
                              at java.security.AccessController.doPrivileged(Native Method)
                              at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
                              at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
                         Caused by: com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Exception during generation of components of application sap.com/com.sapportals.dqe.beans in container EJBContainer.
                              at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:609)
                              at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:365)
                              at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:296)
                              at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:290)
                              at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:321)
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3028)
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:462)
                              ... 10 more
                         Caused by: java.lang.NoClassDefFoundError: com/metamatrix/platform/service/api/exception/ServiceException
                              at java.lang.Class.getDeclaredConstructors0(Native Method)
                              at java.lang.Class.privateGetDeclaredConstructors(Class.java:1618)
                              at java.lang.Class.getConstructors(Class.java:865)
                              at com.sap.engine.services.ejb.deploy.verifier.BeanClassCheck.check(BeanClassCheck.java:33)
                              at com.sap.engine.services.ejb.deploy.verifier.session.SessionBeanCheck.check(SessionBeanCheck.java:51)
                              at com.sap.engine.services.ejb.deploy.verifier.Verifier.checkBean(Verifier.java:82)
                              at com.sap.engine.services.ejb.deploy.verifier.Verifier.check(Verifier.java:46)
                              at com.sap.engine.services.ejb.deploy.DeployAdmin.generate(DeployAdmin.java:258)
                              at com.sap.engine.services.ejb.EJBAdmin.deploy(EJBAdmin.java:2057)
                              at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:594)
                              ... 16 more
                         For detailed information see the log file of the Deploy Service.
    10/10/21 19:52:32 -  ***********************************************************
    Info: End of log messages of the target system.
    Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Error: Aborted: development component 'com.sapportals.dqe.beans'/'sap.com'/'SAP AG'/'609.20041012204607.0000':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application sap.com/com.sapportals.dqe.beans..
    Reason: Exception during generation of components of application sap.com/com.sapportals.dqe.beans in container EJBContainer.; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Exception during generation of components of application sap.com/com.sapportals.dqe.beans in container EJBContainer.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Info: SDM configuration: Do not automatically start/stop J2EE Engine. Do not restore state of J2EE Engine now.
    Error: -
    At least one of the Deployments failed -
    Info: Summarizing the deployment results:
    Error: Aborted: G:\SoftWare\netweaver\Identified\SAPNETWEAVER041DVD_ADDON\EP-KMC\DQE\SDA\J2EE\com.sapportals.dqe.beans.ear
    Processing error. Return code: 4
    Error: Processing error. Return code: 4
    ERROR 2010-10-21 19:52:33
    MUT-02041  SDM call of deploySdaList ends with returncode 4. See output of logfile C:\Program Files\sapinst_instdir\NW04SR1\EP\EP\callSdmViaSapinst.log.

    Hi,
    I believe VISTA is not a recomended OS for SAP Portal, I tried for a week to install and finally gave up
    check this
    Adventures with NetWeaver Portal 7 - Vista Installation
    jo
    Edited by: Ravi Joseph on Dec 12, 2008 11:51 AM

Maybe you are looking for

  • Browsers auto zoom in/out

    Hello, Recently my browsers (safari,chrome) behave oddly, it auto zoom in/out, sometimes really fast like it shaking or something, so far it only happens when i'm using Wacom tablet, I don't know exactly when this started, I guess when I upgraded to

  • How to unlock after 2 year contract with Optimus at no extra cost

    In Portugal after two years of loyalty telecommunications companies are required to unlock the equipment. In the case of Optimus ask absurd value. Such as Vodafone asks 25 euros cost process, this Optimus asking for 235.00 euros. It is stealing and i

  • Portal Runtime Error,See the details for the exception ID in the log file.

    Hi, I am Working on EP 7.0 .today am Getting this Error. Portal Runtime Error An exception occurred while processing a request for : iView : N/A Component Name : N/A The exception was logged. Inform your system administrator.. See the details for the

  • AMC in plant maintenance

    Hi Friends I want to map AMC (Anual maintenance contract ) in plant maintenance . During AMC I want to avail the services at every month. And every month i will pay to service provider against service sheet / invoice Regards Shashikant

  • Time Machine won't use existing backup folder

    Time machine gave me the can't find back up drive error. I did what the support site says, went into the preferences, and reselected the appropriate drive, but now it won't use the existing backup folder. It keeps making a new one called 'user's MacB