GPs in multiple server environment

Hi,
Does anyone have experience using GP in a multiple WAS server environment.  Our scenario is one in which different servers have different user groups and are located in different regions.  We want to have a GP be able to transfer a process to another user group on another server and have the process flow continue there.
Is there something available "out of the box" or is it necessary to develop custom code (in all likelihood based on web-services)?
Thanks.
Dick

Hi Dick,
This is an interesting problem that you have.
There is no out of the box solution for this, but you may be able to architect this in a way that it would not require any custom code.
If you created a GP process for every region, which in all make up the logical super GP process, you can transfer process state and perform instantiation from one to the other.
For instance:
Process 1 (Region US, Server 1) upon completion starts Process 2 (Region EMEA, Server 2).  The last step (Action) of Process 1 would be a Web Service Callable object which starts Process 2 and passes any PK's for state information. 
If you are using CAF Entities for persistence, I recommend that you keep these all on the same server and the distributes GP processes can access as needed.
Does this make sense?
Best Regards,
Austin.

Similar Messages

  • Outlook Integration Configuration in a Multiple Server Environment

    Hello Experts,
    I have the following environment :
    Four Citrix Servers --> SAP B1 Application Server --> License Server --> B1isn + SQL Server --> DB Server.
    First,  which server/s would I configure for outlook integration from the "Mail Settings" window? This is where the admin would enter the SMTP server, SMTP port, etc. Which servers would require that the Outlook Integration tool to be installed?  Second, I have read on most forums that configuring the "Mail Settings" window is the only step needed to begin sending e-mails from SAP B1; is this true? Third, If the admin did not originally install the Outlook Integration tool when installing SAP, how would I go about installing the tool now?
    Any help is greatly appreciated.
    Thank you,
    Taylor

    Further to this, there is a transaction code that calls this function module: SRDEBUG (see OSS Note 1004248). It's a little quirky but it does work.
    1) Set your external breakpoint.
    2) run transaction SRDEBUG. This will display a pop-up asking if you want to stop debugging. This pop-up must remain active until you want to stop debugging, so just leave it hanging there while you debug.

  • SNC configuration in multiple application server environment

    Hello Experts,
    We are planning for SNC configuration between ECC 6  and NW04s Portal systems.
    ECC 6.0 is running with Central Instance and two application servers.
    NW04s EP is running with 4 server nodes.
    I am very much clear about setting up SNC between ABAP and JAVA running with single application server and server node.
    But totally confused about SNC/SSL setup in multiple server environment. Would really appreciate if you can provide some ideas/docuements on setting up SNC/SSL in multiple server environment.
    1. Do we need to create multiple PSE for each of the ABAP application server? If yes then would the CN should be same or different.
    2. If we create only one PSE for central instance and copy this to other application server - will this work.
    Looking forward to hear from your experiences.
    Regards
    Davinder

    Hi,
    Please check the link http://help.sap.com/saphelp_nw04/helpdata/en/69/b0bbd6dde71141bee8806586144796/frameset.htm
    Regards,
    Gowrinadh

  • Best Practice to generate UUIDs in a Cluster-Server Environment

    Hi all,
    I just need some inputs over the best practices to generate UUIDs in typical internet world where there are multiple servers/JVMs involved for load balancing or traffic distribution etc. I know JAVA is shipped with very efficient UUID generator API.
    But still that doesn't solve the issue in multiple server environment.
    For the discussion sake lets assume I need it to be unique over the setup than a near unique.
    How do you guys approach it?
    Thanks you all in advance.

    codeNombre wrote:
    jverd wrote:
    codeNombre wrote:
    Thanks jverd,
    So adding to the theory of "distinguishing all possible servers" in addition to UUID over each server would be the way to go.If you're unreasonably paranoid, sure.I think its a common problem and there is a big number of folks who might still be bugged about the "relative uniqueness" of UUID in long run. People who don't understand probability and scale, sure.
    Again coming back to my original problem in an "internet world", shouldn't the requirement like unique id between different servers be dealt with generating the UUID's at a layer before entering into the multi-server setup. Where would that be? I don't have the answer..Again, that is the POINT of the UUID class--so that you can generate as many IDs as you want and still be confident that nobody anywhere is in the world has ever generated any of those same IDs. However, if your requirements say UUID is not good enough, then you need to define what is, and that means having a lot of foresight as to how this system will evolve and how long it will live, AND having total control over some aspect of your servers, AND having a process that is so good that it's LESS LIKELY for a human to screw up and re-use a "unique" server ID than the probabilities I presented in my previous post.

  • FYI: Cause of multiple front caches in server environment

    Hi All.
    Long time lurker, first time poster here. With this post I would just like to contribute with some information about a problem we recently solved at my work place.
    We have Coherence deployed in an app server environment. We discovered that our distributed schemes ended up having two front-caches by looking in the JMX. We got several instances of the same
    type of CacheMBean with different 'loader' arguments, like this:
    Coherence:type=Cache,service=DistributedCache,name=SomeCache,nodeId=3,tier=front,loader=x
    Coherence:type=Cache,service=DistributedCache,name=SomeCache,nodeId=3,tier=front,loader=y
    By trial and error we finally concluded that the cause of this was that, unless told otherwise, Coherence utilizes the context class loader (Thread#getContextClassLoader()) to fetch the front cache. In our case the context class loader
    differed depending on the entry point of our application. Web calls had one context class loader, and EJB calls another. The undesired side effect was that we ended up with separate front caches for web and EJB calls. This is of course not ideal.
    In order to fix this, one can specify which class loader to use when fetching the cache from CacheFactory: http://download.oracle.com/otn_hosted_doc/coherence/330/com/tangosol/net/CacheFactory.html#getCache(java.lang.String, java.lang.ClassLoader)
    The documentation already makes clear that the class loader is used for serializing. It is apparently also used for more.
    For us the fix was to specify getClass().getClassLoader(), which will vary only depending on the type of the calling instance, not vary depending on entry point. As a side note, this also worked well for us when mixing transactional and non-transactional interactions with the caches.
    Best regards,
    Alexander

    933421 wrote:
    Hi All.
    Long time lurker, first time poster here. With this post I would just like to contribute with some information about a problem we recently solved at my work place.
    We have Coherence deployed in an app server environment. We discovered that our distributed schemes ended up having two front-caches by looking in the JMX. We got several instances of the same
    type of CacheMBean with different 'loader' arguments, like this:
    Coherence:type=Cache,service=DistributedCache,name=SomeCache,nodeId=3,tier=front,loader=x
    Coherence:type=Cache,service=DistributedCache,name=SomeCache,nodeId=3,tier=front,loader=y
    By trial and error we finally concluded that the cause of this was that, unless told otherwise, Coherence utilizes the context class loader (Thread#getContextClassLoader()) to fetch the front cache. In our case the context class loader
    differed depending on the entry point of our application. Web calls had one context class loader, and EJB calls another. The undesired side effect was that we ended up with separate front caches for web and EJB calls. This is of course not ideal.
    In order to fix this, one can specify which class loader to use when fetching the cache from CacheFactory: http://download.oracle.com/otn_hosted_doc/coherence/330/com/tangosol/net/CacheFactory.html#getCache(java.lang.String, java.lang.ClassLoader)
    The documentation already makes clear that the class loader is used for serializing. It is apparently also used for more.
    For us the fix was to specify getClass().getClassLoader(), which will vary only depending on the type of the calling instance, not vary depending on entry point. As a side note, this also worked well for us when mixing transactional and non-transactional interactions with the caches.
    Best regards,
    AlexanderHi Alexander,
    depending on which appserver you use, you would probably want to go with a classloader which is a common root of the EJBs and web-apps. Depending on where your data classes reside, and what appserver you use, this may be an ejb-tier-wide classloader, or the ear classloader.
    Best regards,
    Robert

  • How to configure multiple dev environment in single IP

    HI,
    I have a WLS running on a Windows NT machine. I want to configure multiple partition/environment
    in that single WLS so that each user will have their own partition/environment to
    play around. Once they are happy with their EJBs then we shall move them to a testing
    environment. Is that possible in WLS??. Can anyone please guide me to a good documentation
    about this one.
    Many Thanks
    Vasan.
    PS: I dont want a clustering technology all i want is that in a single ip i wanna
    multiple development environment.

    Tom,
    looks like you are specifying http protocol in
    sky.framework.ejb.SkySessionBean.getInitialContext method.
    Change it to t3 or, if the JNDI lookup is in the same JVM, don't specify
    PROVIDER_URL. If you have to use http tunneling due to any reason , you have to
    enable HTTP Tunneling in server to which initial context is created. It is
    disabled by default in 60. You can do so via console. Please refer to
    documentation , let me know if you need additional help.
    Viresh Garg
    Principal Developer Relations Engineer
    BEA Systems
    Tom Purcell wrote:
    Kevin,
    You said that with 6.0 the following happens:
    On the second server I get an error when I do
    http://host:secondServerPort/index.html
    Is this the error you get on the Admin Server:
    <Feb 28, 2001 12:42:24 PM EST> <Info> <HTTPTunneling> <Login rejected with
    code: 'Failed', reas
    on: You are trying to use http tunneling
    The server will not let you connect'>
    <Feb 28, 2001 12:42:24 PM EST> <Error> <HTTP> <Problem dispatching servlet
    request
    weblogic.common.T3Exception: You are trying to use http tunneling
    The server will not let you connect
    at weblogic.socket.TunnelLogin.rejectConnection(TunnelLogin.java:87)
    at weblogic.socket.TunnelLogin.service(TunnelLogin.java:59)
    at
    weblogic.servlet.internal.MuxableSocketHTTP.dispatch(MuxableSocketHTTP.java:
    467)
    at
    weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:638)
    at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >
    And on the Managed Server:
    <Feb 28, 2001 12:42:24 PM EST> <Error> <ConnectionManager> <Could not
    connect to: '0S:127.0.0.1
    :[-1,7001,-1,-1,-1,-1,-1]'
    java.net.ProtocolException: Tunneling result unspecified - is the HTTP
    server at host: 'localho
    st' and port: '7001' a WebLogic Server?
    at
    weblogic.rjvm.http.HTTPClientJVMConnection.handleNullResponse(HTTPClientJVMC
    onnectio
    n.java:152)
    at
    weblogic.rjvm.http.HTTPClientJVMConnection.connect(HTTPClientJVMConnection.j
    ava:194)
    at
    weblogic.rjvm.http.HTTPClientJVMConnection.createConnection(HTTPClientJVMCon
    nection.
    java:98)
    at weblogic.rjvm.Protocol.createConnection(Protocol.java:207)
    at
    weblogic.rjvm.ConnectionManager.findOrCreateConnection(ConnectionManager.jav
    a:997)
    at
    weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:364)
    at
    weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:330)
    at
    weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java:228)
    at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:188)
    at
    weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:180)
    at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:149)
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:207)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialCon
    textFact
    oryDelegate.java:232)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialCon
    textFact
    oryDelegate.java:174)
    at
    weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFact
    ory.java
    :123)
    at
    javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:668)
    at
    javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:246)
    at javax.naming.InitialContext.init(InitialContext.java:222)
    at javax.naming.InitialContext.<init>(InitialContext.java:198)
    at
    sky.framework.ejb.SkySessionBean.getInitialContext(SkySessionBean.java:112)
    at
    sky.framework.ejb.SkySessionBean.setSessionContext(SkySessionBean.java:94)
    at
    sky.ejb.session.skyreferencesession.SkyReferenceSessionBeanImpl.setSessionCo
    ntext(Sk
    yReferenceSessionBeanImpl.java:87)
    at
    weblogic.ejb20.internal.StatelessEJBHome.createBean(StatelessEJBHome.java:22
    9)
    at
    weblogic.ejb20.pool.StatelessSessionPool.createBean(StatelessSessionPool.jav
    a:90)
    at
    weblogic.ejb20.pool.StatelessSessionPool.getBean(StatelessSessionPool.java:7
    5)
    at
    weblogic.ejb20.manager.StatelessManager.preInvoke(StatelessManager.java:67)
    at
    weblogic.ejb20.internal.BaseEJBObject.preInvoke(BaseEJBObject.java:113)
    at
    weblogic.ejb20.internal.StatelessEJBObject.preInvoke(StatelessEJBObject.java
    :55)
    at
    sky.ejb.session.skyreferencesession.SkyReferenceSessionBeanEOImpl.setDataSou
    rce(SkyR
    eferenceSessionBeanEOImpl.java:22)
    at
    sky.ejb.session.skyreferencesession.SkyReferenceSessionBeanEOImpl_WLSkel.inv
    oke(SkyR
    eferenceSessionBeanEOImpl_WLSkel.java:161)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:373)
    at
    weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
    :128)
    at
    weblogic.rmi.internal.BasicServerAdapter.invoke(BasicServerAdapter.java:237)
    at
    weblogic.rmi.internal.BasicRequestHandler.handleRequest(BasicRequestHandler.
    java:103
    at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
    7)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >
    Thanks,
    Tom
    <Feb 28, 2001 12:42:24 PM EST> <Info> <ConnectionManager> <Bootstrap unable
    to get a: 'Protocol
    : 'http'' connection to: 'localhost/127.0.0.1' on port: '7001'>
    "Kevin Apte" <[email protected]> wrote in message
    news:[email protected]...
    This advice applies to WL5.1. I have been trying to configure a
    multiinstance Weblogic with no success. I want multiple copies
    of the sample petStore available for test by multiple users.
    I think in 6.0
    You would need to open an admin server
    Open the configuration file for say PetStore.
    Clone the petStore- call it petStore2. .
    Create a copy of the startup script and modify it to start PetStore2.
    After doing this only one config.xml is created for both servers.
    I am able to start the first server and view the petStore application,
    On the second server I get an error when I do
    http://host:secondServerPort/index.html
    How does one create multiple instances in WL6.0 using the console
    or using a XML editor ?
    Jesse E Tilly <[email protected]> wrote:
    [This followup was posted to weblogic.developer.interest.management
    and
    a copy was sent to the cited author.]
    In article <[email protected]>, [email protected]
    says...
    HI,
    I have a WLS running on a Windows NT machine. I wantto configure multiple partition/environment
    in that single WLS so that each user will have theirown partition/environment to
    play around. Once they are happy with their EJBs thenwe shall move them to a testing
    environment. Is that possible in WLS??. Can anyoneplease guide me to a good documentation
    about this one.
    Many Thanks
    Vasan.
    PS: I dont want a clustering technology all i wantis that in a single ip i wanna
    multiple development environment.
    NT isn't a multiuser environment. I will assume that
    you mean some
    Win32 box sitting in a room where people can copy their
    classes/EJBs and
    test their stuff. If this is the case, the setup is easy.
    Create a directory and startup script for every developer.
    Have a
    global properties file in the same directory as the scripts
    so that
    common settings are, well, common. Tell each user to
    modify the various
    parts of the properties files in their directories to
    deploy EJBs and
    register servlets, etc etc.
    In each startup script, you will have to specify the server
    directory
    and the binding port for each person. Pick a port (something
    easy to
    remember and high, like 30000, 30001, etc etc) for each
    person. Why?
    Well, when they connect to the app server, they'll know
    they're hitting
    only their server. Also, TCP/IP won't let more than one
    JVM bind to the
    same port, so if you want simultaneous instances (> 4
    you better have
    one kick ass Win32 box) you have to do this.
    Hope this solves your problem.
    JT
    Senior Developer, HotelTools INC
    [email protected]

  • Workflow Custom Activity deploy in multi server environment

    I have been working on a project that involves developing a custom workflow activity for SharePoint 2013. I am developing it in a single server environment working with http.
    My problem occurs when deploying to multi-server environment with https (WFE, APP). My question is how to deploy my solution to the new environment. 
    The steps:
    Create a project - c# activity library
    Add a workflow activity, add .xml
    Deploy the .dll and .xml of project to:
    "C:\Program Files\Workflow%20Manager\1.0\Workflow\Artifacts" "C:\Program Files\Workflow Manager\1.0\Workflow\WFWebRoot\bin"
    net sotp "Workflow Manager Backend"
    net start "Workflow Manager Backend"
    Deploy .DLL to GAC
        - Created MSI using install shield in VS2010 to add .DLL to GAC
        - Verify .DLL in GAC by going to c:\windows\assembly and %windir%\Microsoft.NET\assembly
    iisrest
    Deploy WSP to SharePoint, activate feature, open SharePoint Designer 2013 and choose the custom action that now appears when creating a 2013 workflow
    To recap we have workflow manager on the APP server and and the workflow client on the WFE. We deployed the .DLL and .XML to the workflow manager (APP) only. The .DLL is deployed
    to/in the GAC on the WFE and the APP. We are able to see and create the activity in Designer 2013 and we deploy the workflow to a normal SharePoint list. When we run the workflow we do not get any errors in the ULS logs, event viewer or Workflow Manager Debug
    Logs (event viewer also). The site is not created though. We believe the issue is that the custom C# (.DLL) is not being ran. 
    This all works fine and dandy on my single server environment. Workflow is working like a charm. How can we trouble shoot what the issue is if we are not finding any errors?
    Is there a step that we missed or some other place we need to look for logs? Would the ULS logs show the site creation or show running our custom code? Currently it does not show anything when we run the workflow.
    Let me know if this is unclear or if anyone needs more information. Thanks

    Hi,
    Here is a workaround for your reference:
    We can develop a custom WCF service instead of the Custom Activity in SharePoint. And then use the service from workflow. It use a separate dedicated server for workflow without having any reference to SharePoint DLLs from inside workflow.
    Here is a similar thread for your reference:
    https://social.technet.microsoft.com/Forums/systemcenter/en-US/d462ca07-9861-4133-948a-fc9771306cb1/custom-workflow-how-to-go-from-single-server-to-multiple?forum=sharepointdevelopment
    Thanks,
    Dennis Guo
    TechNet Community Support
    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 Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • JNDI Lookup for multiple server instances with multiple cluster nodes

    Hi Experts,
    I need help with retreiving log files for multiple server instances with multiple cluster nodes. The system is Netweaver 7.01.
    There are 3 server instances all instances with 3 cluster nodes.
    There are EJB session beans deployed on them to retreive the log information for each server node.
    In the session bean there is a method:
    public List getServers() {
      List servers = new ArrayList();
      ClassLoader saveLoader = Thread.currentThread().getContextClassLoader();
      try {
       Properties prop = new Properties();
       prop.setProperty(Context.INITIAL_CONTEXT_FACTORY, "com.sap.engine.services.jndi.InitialContextFactoryImpl");
       prop.put(Context.SECURITY_AUTHENTICATION, "none");
       Thread.currentThread().setContextClassLoader((com.sap.engine.services.adminadapter.interfaces.RemoteAdminInterface.class).getClassLoader());
       InitialContext mInitialContext = new InitialContext(prop);
       RemoteAdminInterface rai = (RemoteAdminInterface) mInitialContext.lookup("adminadapter");
       ClusterAdministrator cadm = rai.getClusterAdministrator();
       ConvenienceEngineAdministrator cea = rai.getConvenienceEngineAdministrator();
       int nodeId[] = cea.getClusterNodeIds();
       int dispatcherId = 0;
       String dispatcherIP = null;
       String p4Port = null;
       for (int i = 0; i < nodeId.length; i++) {
        if (cea.getClusterNodeType(nodeId[i]) != 1)
         continue;
        Properties dispatcherProp = cadm.getNodeInfo(nodeId[i]);
        dispatcherIP = dispatcherProp.getProperty("Host", "localhost");
        p4Port = cea.getServiceProperty(nodeId[i], "p4", "port");
        String[] loc = new String[3];
        loc[0] = dispatcherIP;
        loc[1] = p4Port;
        loc[2] = null;
        servers.add(loc);
       mInitialContext.close();
      } catch (NamingException e) {
      } catch (RemoteException e) {
      } finally {
       Thread.currentThread().setContextClassLoader(saveLoader);
      return servers;
    and the retreived server information used here in another class:
    public void run() {
      ReadLogsSession readLogsSession;
      int total = servers.size();
      for (Iterator iter = servers.iterator(); iter.hasNext();) {
       if (keepAlive) {
        try {
         Thread.sleep(500);
        } catch (InterruptedException e) {
         status = status + e.getMessage();
         System.err.println("LogReader Thread Exception" + e.toString());
         e.printStackTrace();
        String[] serverLocs = (String[]) iter.next();
        searchFilter.setDetails("[" + serverLocs[1] + "]");
        Properties prop = new Properties();
        prop.put(Context.INITIAL_CONTEXT_FACTORY, "com.sap.engine.services.jndi.InitialContextFactoryImpl");
        prop.put(Context.PROVIDER_URL, serverLocs[0] + ":" + serverLocs[1]);
        System.err.println("LogReader run [" + serverLocs[0] + ":" + serverLocs[1] + "]");
        status = " Reading :[" + serverLocs[0] + ":" + serverLocs[1] + "] servers :[" + currentIndex + "/" + total + " ] ";
        prop.put("force_remote", "true");
        prop.put(Context.SECURITY_AUTHENTICATION, "none");
        try {
         Context ctx = new InitialContext(prop);
         Object ob = ctx.lookup("com.xom.sia.ReadLogsSession");
         ReadLogsSessionHome readLogsSessionHome = (ReadLogsSessionHome) PortableRemoteObject.narrow(ob, ReadLogsSessionHome.class);
         status = status + "Found ReadLogsSessionHome ["+readLogsSessionHome+"]";
         readLogsSession = readLogsSessionHome.create();
         if(readLogsSession!=null){
          status = status + " Created  ["+readLogsSession+"]";
          List l = readLogsSession.getAuditLogs(searchFilter);
          serverLocs[2] = String.valueOf(l.size());
          status = status + serverLocs[2];
          allRecords.addAll(l);
         }else{
          status = status + " unable to create  readLogsSession ";
         ctx.close();
        } catch (NamingException e) {
         status = status + e.getMessage();
         System.err.println(e.getMessage());
         e.printStackTrace();
        } catch (CreateException e) {
         status = status + e.getMessage();
         System.err.println(e.getMessage());
         e.printStackTrace();
        } catch (IOException e) {
         status = status + e.getMessage();
         System.err.println(e.getMessage());
         e.printStackTrace();
        } catch (Exception e) {
         status = status + e.getMessage();
         System.err.println(e.getMessage());
         e.printStackTrace();
       currentIndex++;
      jobComplete = true;
    The application is working for multiple server instances with a single cluster node but not working for multiple cusltered environment.
    Anybody knows what should be changed to handle more cluster nodes?
    Thanks,
    Gergely

    Thanks for the response.
    I was afraid that it would be something like that although
    was hoping for
    something closer to the application pools we use with IIS to
    isolate sites
    and limit the impact one badly behaving one can have on
    another.
    mmr
    "Ian Skinner" <[email protected]> wrote in message
    news:fe5u5v$pue$[email protected]..
    > Run CF with one instance. Look at your processes and see
    how much memory
    > the "JRun" process is using, multiply this by number of
    other CF
    > instances.
    >
    > You are most likely going to end up on implementing a
    "handful" of
    > instances versus "dozens" of instance on all but the
    beefiest of servers.
    >
    > This can be affected by how much memory each instance
    uses. An
    > application that puts major amounts of data into
    persistent scopes such as
    > application and|or session will have a larger foot print
    then a leaner
    > application that does not put much data into memory
    and|or leave it there
    > for a very long time.
    >
    > I know the first time we made use of CF in it's
    multi-home flavor, we went
    > a bit overboard and created way too many. After nearly
    bringing a
    > moderate server to its knees, we consolidated until we
    had three or four
    > or so IIRC. A couple dedicated to to each of our largest
    and most
    > critical applications and a couple general instances
    that ran many smaller
    > applications each.
    >
    >
    >
    >
    >

  • Re: WLS51 multiple server instances - no clustering, no multihoming

    Hello - This is the answer to a private question, but I'm posting it to the
    group too in hope it will help.
    Our problem was, we had one computer (Solaris) with one IP address and one
    Weblogic license, but we had two (now three) teams of developers working on
    different projects for WLS. Since they needed different settings and
    configurations, they could not use a single Weblogic server instance, so we
    had to find a way to run multiple server instances independently on a single
    machine.
    I'd call this configuration "parallel-servers" - please remember that it is
    quite different from both multihoming and clustering because all the server
    instances are independent from one another (unlike clustering) but run on
    the same IP (unlike multihoming) and different port numbers.
    This is the simplest procedure for a Solaris computer:
    1: Install WebLogic.
    Let's say the WL installation folder is:
    /wls/weblogic/
    we'll call that:
    WL_HOME/WLS_HOME/
    It contains the default server instance folder
    /wls/weblogic/myserver/
    we'll call that:
    WL_HOME/WLS_HOME/myserver/
    2: Make some copies (as many as you need)
    of the default server instance folder
    with different names, you'll have:
    WL_HOME/WLS_HOME/myserver/
    WL_HOME/WLS_HOME/server_1/
    WL_HOME/WLS_HOME/server_2/
    WL_HOME/WLS_HOME/server_n/
    3: Locate the general properties file
    /wls/weblogic/weblogic.properties
    (we'll call it: WL_HOME/WLS_HOME/weblogic.properties)
    and make a copy of it into EACH of the individual
    server instance folders; you'll end up with:
    WL_HOME/WLS_HOME/weblogic.properties
    WL_HOME/WLS_HOME/myserver/weblogic.properties
    WL_HOME/WLS_HOME/server_1/weblogic.properties
    WL_HOME/WLS_HOME/server_2/weblogic.properties
    WL_HOME/WLS_HOME/server_n/weblogic.properties
    4: In EACH server instance's properties file
    WL_HOME/WLS_HOME/server_i/weblogic.properties
    set per-server values to all the properties
    specific to the individual server; at least:
    weblogic.system.listenPort=PORT_i
    weblogic.password.system=PWD_i
    weblogic.system.SSLListenPort=SSLPORT_i
    plus everything else it should need individually,
    that is, all the things that make that single
    server instance different from all the others
    (connection pools, ACLs, EJB auto deployments and so on)
    Do NOT modify the file
    WL_HOME/WLS_HOME/myserver/weblogic.properties
    (it's a backup copy of the default settings)
    5: In the GLOBAL properties file
    WL_HOME/WLS_HOME/weblogic.properties
    cancel or comment out all the properties
    that have been individually set for all
    the individual server instances; at least:
    weblogic.system.listenPort
    weblogic.password.system
    weblogic.system.SSLListenPort
    6: Locate the default server's startup script
    /wls/weblogic/startWebLogic.sh
    (we'll call it: WL_HOME/WLS_HOME/startWebLogic.sh)
    and make a copy of it (in the same folder)
    for EACH of the new individual server instances;
    you'll end up with:
    WL_HOME/WLS_HOME/startWebLogic.sh
    WL_HOME/WLS_HOME/startServer_1.sh
    WL_HOME/WLS_HOME/startServer_2.sh
    WL_HOME/WLS_HOME/startServer_n.sh
    7: In EACH server instance's startup script
    WL_HOME/WLS_HOME/startServer_i.sh
    set values to the properties:
    weblogic.home=WL_HOME/WLS_HOME
    (where WL libraries and global files are)
    weblogic.system.home=WL_HOME/WLS_HOME
    (where the GLOBAL weblogic.properties is)
    weblogic.system.name=server_i
    (where the PER-SERVER weblogic.properties is)
    weblogic.system.listenPort=PORT_i
    weblogic.system.SSLListenPort=SSLPORT_i
    with the -D option, as in:
    $JAVA $JAVA_OPTIONS -ms64m -mx64m -classpath
    $JAVACLASSPATH -Dweblogic.class.path=$WEBLOGICCLASSPATH -Dweblogic.home=$WL_
    HOME/$WLS_HOME -Dweblogic.system.home=$WL_HOME/$WLS_HOME -Dweblogic.system.n
    ame=server_i -Djava.security.manager -Djava.security.policy=`pwd`/weblogic.
    policy -Dweblogic.system.listenPort=PORT_i -Dweblogic.system.SSLListenPort=
    SSLPORT_i weblogic.Server
    8: If you like, you might also write a shutdown script
    for each server instance (often faster than the console)
    WL_HOME/WLS_HOME/stopServer_i.sh
    which might look like:
    java -classpath $JAVACLASSPATH weblogic.Admin t3://$HOSTNAME:PORT_i SHUTDOWN
    system $PWD_i
    9: If you need individual per-server security policies,
    also duplicate and customize the default policy file
    WL_HOME/WLS_HOME/weblogic.policy
    (just like you did with weblogic.properties in steps 3 to 5)
    and specify the corresponding property in each startup script
    with the -D option
    -Djava.security.policy=`pwd`/server_i/weblogic.policy
    10: Obviously, when you deploy and use your EJBs or JSPs or applications,
    you must make sure that you specify the right individual server's parameters
    (name, user, password, port, paths and everything else).
    And that's all; obviously, there are better ways to achieve the
    "parallel-servers" configuration, but this is the simplest one and is good
    enough for a basic development environment; you might need to tune some more
    properties to suit your specific requirements.
    On a WinNT computer, the procedure should be more or less the same, the main
    difference being: instead of .sh script files, you'll have to edit .cmd
    script files.
    I am very grateful to all the people on the newsgroups who helped me work
    that out. Good luck!
    Paola R.

    "Paola R." wrote:
              > If understand that right, the way to do it is:
              >
              > - make two "clones" of the default /weblogic/myserver/ folder , say
              > /weblogic/server_1/ and /weblogic/server_2/;
              > - make a copy of file /weblogic/myserver/weblogic.properties into each new
              > folder;
              > - in the original /weblogic/myserver/weblogic.properties file, comment out
              > server-variant properties (ordinary and secure port numbers, at least) ;
              > - in each /weblogic/server_x /weblogic.properties file, set per-server
              > values to server-variant properties (ordinary and secure port numbers, at
              > least) and comment out (or leave unchanged) everything else;
              > - start each server from /weblogic/myserver/ , by specifying the path to
              > respective per-server properties in command line (or script) with
              > option -Dweblogic.home=./server_n .
              You also need weblogic.system.name=server_n and I believe it's
              weblogic.system.home rather than weblogic.home. The latter should point
              to
              your /weblogic directory.
              Hope this helps.
              Alexander Petrushko
              mailto:[email protected]
              Consulting Services available
              

  • How Can i specify multiple server names in rwservlet.properties  file?

    How Can i specify multiple server names in rwservlet.properties file without clustering?
    I am using oracle 10g Application server. we have 3 servers Repsvr1, RepSvr2 and RepSvr3. Now i need to configure rwservlet.properties file to point to these servers based on any running report. i got 3 keymap files with reports info.
    Sample entry in the key map file is:
    key1: server=Repsvr1 userid=xxx/yyy@dbname report=D:\Web\path1\path2\reports\Report1.rdf destype=cache desformat=PDF %*
    key2: server=Repsvr2 userid=xxx/yyy@dbname report=D:\Web\path1\path3\reports\Report2.rdf destype=cache desformat=PDF %*
    rwservlet.properties file letting me to enter only one servername. Even though i merged all 3 keymap files into 1, still i have the server name issue. If i leave the server to the default name still i am getting the below error.
    REP-51002: Bind to Reports Server Repsvr1 failed. However, i know the default rep_<servername> would be used incase we dont have SERVER=<value> parameter in the rwservlet.properties file.
    If i specify the servername in the rwservlet.properties file then only Repsvr1 reports are working fine and other 2 server reports are giving the same error like
    REP-51002: Bind to Reports Server <<Server Name>> failed.
    how can i configure the info which will work all 3 reports. 2 Port servers are invoking using oracle forms and report server is invoking using ASP pages.
    If i specify Server name & Key map file in rwservlet.properties one at a time, all the reports are working without any error, whenever i am trying to integrate all 3 to workable i am getting binding error. if i exclude the server from rwservlet.properties still i am getting the same error.

    My RELOAD_KEYMAP setting is YES only.As i said If i specify Server name & Key map file in rwservlet.properties one at a time, all the reports are working without any error.
    keymap file entries
    key1: server=Repsvr1 userid=xxx/yyy@dbname report=D:\Web\path1\path2\reports\Report1.rdf destype=cache desformat=PDF %*
    key2: server=Repsvr2 userid=xxx/yyy@dbname report=D:\Web\path1\path3\reports\Report2.rdf destype=cache desformat=PDF %*
    If i use http://server.domain:port/reports/rwservlet? cmdkey = key1 should bring the report from Repsvr1 and http://server.domain:port/reports/rwservlet? cmdkey = key2 should bring the report from Repsvr2, but i am getting an error from Repsvr2 saying that REP-51002: Bind to Reports Server repsvr2 failed.
    Only Servername Repsvr1 is in rwservlet.properties file. Now what is the best option to by pass the server from rwservlet.properties file and should be from keymap file. if i comment server name in rwservlet.properties file still i am getting REP-51002: Bind to Reports Server <<Server Name>> failed error for both keys.

  • Load Data from a table on one server's database, to the same table structure in multiple server databases

    Hi,
    I have a situation where i have to load data from one server/database table to multiple servers/databases.
    Example:
    I need to load data from dbo.TABLE_A  (on Server: Server_A & Database: Database_A)  to the same table on the list of server databases like
    Server: Server_B , Database: Database_B
    Server: Server_C , Database: Database_C
    Server: Server_D , Database: Database_D
    Server: Server_E , Database: Database_E
    Server: Server_F , Database: Database_F
    Server: Server_G , Database: Database_G
    Server: Server_H , Database: Database_H
    so on and so forth on 250 such server database combinations.
    The table structure is the same on all the servers.
    If i make the source or destination dynamic, it throws an error while mapping ?
    I cannot get Linked server permissions and SQL Server Config thing doesn't work as well.
    Please suggest on how to load data from one source to multiple server/databases.
    Thank you.

    I just need to transfer one table's data. its like i have to use a query to pick data for
    the most recent data. So i use something like, select A, B, C, D from dbo.table where ETL_TIMESTAMP > (the max(etltimestamp) in the destination on different server). There are no foreign key relationships and the data should not be truncated. it just had
    to append the new records.

  • MS SQL DB User Management Connector Unable to Select Multiple Server

    Hi,
    We are trying to connect to multiple server using MS SQL DB user management connector but receive the error below when selecting server.
    <Sep 3, 2012 4:28:59 PM MYT> <Error> <XELLERATE.APIS> <BEA-000000> <Class/Method: tcLookupOperationsBean/getLookupValuesForColumnFilteredData encounter some problems: Lookup.PDBUM.MSSQL.DBNamesis not a valid form field>
    Running InitUtil
    Running ExecuteStoredProcForAuthTypeUser
    Running SetProcessFormData
    <Sep 3, 2012 4:30:13 PM MYT> <Error> <XELLERATE.ADAPTERS> <BEA-000000> <Class/Method: tcAdpEvent/verifyServer encounter some problems: IT Resource Type mismatch found for Adapter variable MSSQL_ITRVerify that IT Resource selected on Process Form matches IT Resource type selected for variable>
    Running InitUtil
    Running ExecuteStoredProcForAuthTypeUser
    Running SetProcessFormData
    Running COMBINENAMEWITHSUFFIXPA
    Target Class = com.thortech.xl.util.adapters.tcUtilStringOperations
    Running COMBINENAMEWITHSUFFIXPA
    Target Class = com.thortech.xl.util.adapters.tcUtilStringOperations
    Running InitUtil
    Running ExecuteStoredProcForAuthTypeUser
    Running SetProcessFormData
    <Sep 3, 2012 4:33:13 PM MYT> <Error> <XELLERATE.ADAPTERS> <BEA-000000> <Class/Method: tcAdpEvent/verifyServer encounter some problems: Could not determine IT Resource Key for variable MSSQL_ITR>
    delete mds name:/db/MSSQL DB User Privilege Login Requestrecon.profile
    Unable to delete profile with mds name:/db/MSSQL DB User Privilege Login Requestrecon.profile
    <Sep 3, 2012 4:33:43 PM MYT> <Warning> <Socket> <BEA-000450> <Socket 8 internal data record unavailable (probable closure due idle timeout), event received 17>
    <Sep 3, 2012 4:33:48 PM MYT> <Warning> <Socket> <BEA-000450> <Socket 4 internal data record unavailable (probable closure due idle timeout), event received 17>
    MS SQL DB connector version is 9.1.0.4
    Any ideas on this error above?
    Thank you.
    Edited by: 950985 on Aug 17, 2012 12:21 AM

    verify lookup : Lookup.DBUM.MSSQL.Configuration and provide the required information (eg: provide query property file)
    --nayan                                                                                                                                                                                                                                                                   

  • Intermittend DNS resolution, timeserver, group policy updates errors in client logs in Win 2012 R2 single server environement

    We recently switched hardware and server software Win SBS 2008 to 2012R2 for a small network roughly 40 clients (Win7 Pro / Win 8.1 Pro) about 16 running concurrently at a given time and one network printer with the printer queue residing on the DC as well.
    I read that a single server environment might not be ideal in particular no fail-over but that is an accepted risk in this particular network here.
    Errors:
    Error 1043: Timeout during name resolution request
    Error 1129: Group policy updates could not be processed due to DC not available
    Error 5719: Could not establish secure connection to DC, DC not available
    Occasionally but disappears after a while
    Error 134: As a result of a DNS resolution timeout could not reach time server
    Symptoms
    On Win 7 Clients
    Network shares added through Group Policy will not show sometimes
    Network shares disconnect (red X) and when accessed return access authorization error after one or two clicks on the share finally grant access again
    When the issue with accessing network shares occurs, it usually also affects Internet access meaning a 'server not responding' error appears in the browser windows when trying to open just any web page
    nslookup during the incident returns cannot resolve error
    ipconfig on client shows correct default router (VDSL Router) and DHCP / DNS Domain Controller
    Also, the Win system log shows the above errors during these incidents, however, the nuimber of incidents vary from 20-30
    On Win 8.1 Clients
    Same as above with the slight variation for network shares apparently due to Server 2012 and Win 8.1 clients managing drive shares differently. However, network share refresh does not work with this clients. In most cases only a gpupdate /force returns
    drive shares but usually only for the active session. After logoff / logon the shares are gone again.
    The issue does appear to be load related since it occurs even if there are only one or two workstations active.
    Server Configuration
    Dell R320 PowerEdge 16GB / 4TB 7200RPM RAID10 / GBitEthernet
    Zyxel 1910-48 Port Switch
    VDSL 50Mbps Down / 20Mbps Up
    Since the DC is the only local DNS and there are no plans to add another one or move DNS to another server, the DNS server is configured with this own address as preferred DNS with three DNS forwarders 1) VDSL Router 2) ISP DNS1 3) ISP DNS2
    Currently only one Network card is active for problem determination reasons.
    There appears to be no consensus concerning IPV6 enabled or disabled, I tried both with no apparent effect
    I have set all network cards server and client to Full Duplex and the same speed, also disabled Offload functions within the adapter settings. Some but no consistent improvements.
    Best Practice Analyzer Results
    DNS server scavening not enabled
    Root hint server XYZ must respond to NS queries for the root zone
    More than one forwarding server should be configured (although 3 are configured)
    NIC1 should be configured to use both a preferred and alternate DNS (there is only one DNS in this network)
    I have found some instructions to apply changes to the clients through a host file but I would rather like to understand whether this DNS response time issue can be resolved on the server for example timing setting perhaps. Currently the DNS forwarders are
    set to 3 second.
    Since a few people have reported issues with DNS but most are working with multi DNS, DC environment I could not really apply any suggestions made there. perhaps there is anyone like me who is running a single server who has overcome or experience the same
    issues. Any help would be appreciated

    Hello Milos thx for your reply.. my comments below
    1. What does it "switched"? You may mean migration or new installation. We do not know...
    >> Switched is probably the incorrect term, replaced would be the appropriate wording. Before, there was a HP Proliant Server with SBS 2008 with distinct domain and now there is a Dell Server with MS 2012 R2 with a distinct domain. Client were
    removed from one (SBS) domain and added to the new Server 2012 domain. Other components did not change for example same Network Switch or VDSL Router, Workstations and Printer
    2. Two DCs are better alternative. Or backup very frequently. There are two groups of administrators. Those who have lost DC and those who will experience this disaster in near future.
    >> Correct, and I am aware of that
    3. NIC settings in W 7 and W 8.1, namely DNS points to DC (...and NOTHING else. No public IP or that of router DNS.))
    >> Correct, this is how it's currently implemented. Clients point to DC for DHCP and DNS and Default Router, no public IP or DNS. The only references to ISP DNS exist on the VDSL Router itself as provided through ISP when establishing VDSL
    Link and the list of Forwarders in the DNS Server configuration. However, I have just recently added the ISPs DNS as forwarders for test purposes and will probably learn tomorrow morning whether this had any effect for better or worse.
    4. Do nslookup to RR on clients. RR branch is saying client basic info on LDAP parameters of AD.
    >> Will post as soon as available
    5. I do not use forwarders and the system works
    >> Ok, does this mean it works for you in a similar or the same infrastructure setup or are you saying it is not required at all and I can remove any forwarder in a scenario like mine? If not required can you explain a bit more why it is not
    required apart from that it does work for you that way?
    6. DHCP should sit on DC (DHCP on router is disabled)
    >> Correct, no other device is configured to provide DHCP service other than DC and DHCP is currently running on DC
    7. NIC settings in DC points to itself (loopback address 127.0.0.1)
    >> Are you sure this is still correct and does apply to Server 2012? I am reading articles stating that it should be the servers own IP but local loop or should this be added as alternate DNS in addition to the servers own IP?
    8. Use IPCONFIG /FLUSHDNS whenever you change DNS settings.
    >> OK, that was not done every time I changed some settings but I can do that next week. Reboot alone would not suffice, correct?
    9. Test your system with dcdiag.
    >> See result below
    10. Share your findings.
    Regards
    Milos
    Directory Server Diagnosis
    Performing initial setup:
       Trying to find home server...
      Home Server = GSERVER2
       * Identified AD Forest.
       Done gathering initial info.
    Doing initial required tests
    Testing server: Default-First-Site-Name\GSERVER2
          Starting test: Connectivity
             ......................... GSERVER2 passed test Connectivity
    Doing primary tests
       Testing server: Default-First-Site-Name\GSERVER2
          Starting test: Advertising
             ......................... GSERVER2 passed test Advertising
          Starting test: FrsEvent
             ......................... GSERVER2 passed test FrsEvent
          Starting test: DFSREvent
             ......................... GSERVER2 passed test DFSREvent
          Starting test: SysVolCheck
             ......................... GSERVER2 passed test SysVolCheck
          Starting test: KccEvent
             ......................... GSERVER2 passed test KccEvent
          Starting test: KnowsOfRoleHolders
             ......................... GSERVER2 passed test
             KnowsOfRoleHolders
          Starting test: MachineAccount
             ......................... GSERVER2 passed test MachineAccount
          Starting test: NCSecDesc
             ......................... GSERVER2 passed test NCSecDesc
          Starting test: NetLogons
             ......................... GSERVER2 passed test NetLogons
          Starting test: ObjectsReplicated
             ......................... GSERVER2 passed test
             ObjectsReplicated
          Starting test: Replications
             ......................... GSERVER2 passed test Replications
          Starting test: RidManager
             ......................... GSERVER2 passed test RidManager
          Starting test: Services
             ......................... GSERVER2 passed test Services
          Starting test: SystemLog
             ......................... GSERVER2 passed test SystemLog
          Starting test: VerifyReferences
             ......................... GSERVER2 passed test VerifyReferences  
       Running partition tests on : ForestDnsZones
          Starting test: CheckSDRefDom
             ......................... ForestDnsZones passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... ForestDnsZones passed test
             CrossRefValidation
       Running partition tests on : DomainDnsZones
          Starting test: CheckSDRefDom
             ......................... DomainDnsZones passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... DomainDnsZones passed test
             CrossRefValidation
       Running partition tests on : Schema
          Starting test: CheckSDRefDom
             ......................... Schema passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... Schema passed test CrossRefValidation
       Running partition tests on : Configuration
          Starting test: CheckSDRefDom
             ......................... Configuration passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... Configuration passed test CrossRefValidation
       Running partition tests on : GS2
          Starting test: CheckSDRefDom
             ......................... GS2 passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... GS2 passed test CrossRefValidation  
       Running enterprise tests on : GS2.intra
          Starting test: LocatorCheck
             ......................... GS2.intra passed test LocatorCheck
          Starting test: Intersite
             ......................... GS2.intra passed test Intersite
    Server:  gserver2.g2.intra
    Address:  192.168.240.6
    *** gserver2.g2.intra can't find g2: Non-existent domain
    > gserver2
    Server:  gserver2.g2.intra
    Address:  192.168.240.6
    g2.intra
            primary name server = gserver2.g2.intra
            responsible mail addr = hostmaster.g2.intra
            serial  = 443
            refresh = 900 (15 mins)
            retry   = 600 (10 mins)
            expire  = 86400 (1 day)
            default TTL = 3600 (1 hour)
    > wikipedia.org
    Server:  gserver2.g2.intra
    Address:  192.168.240.6
    Non-authoritative answer:
    wikipedia.org   MX preference = 10, mail exchanger = polonium.wikimedia.org
    wikipedia.org   MX preference = 50, mail exchanger = lead.wikimedia.org
    polonium.wikimedia.org  internet address = 208.80.154.90
    polonium.wikimedia.org  AAAA IPv6 address = 2620:0:861:3:208:80:154:90
    lead.wikimedia.org      internet address = 208.80.154.89
    lead.wikimedia.org      AAAA IPv6 address = 2620:0:861:3:208:80:154:89
    Final benchmark results, sorted by nameserver performance:
     (average cached name retrieval speed, fastest to slowest)
      192.168.240.  6 |  Min  |  Avg  |  Max  |Std.Dev|Reliab%|
      ----------------+-------+-------+-------+-------+-------+
      + Cached Name   | 0,001 | 0,002 | 0,003 | 0,001 | 100,0 |
      + Uncached Name | 0,027 | 0,076 | 0,298 | 0,069 | 100,0 |
      + DotCom Lookup | 0,041 | 0,048 | 0,079 | 0,009 | 100,0 |
      ---<-------->---+-------+-------+-------+-------+-------+
                 gserver2.g2.intra
                    Local Network Nameserver
      195.186.  4.162 |  Min  |  Avg  |  Max  |Std.Dev|Reliab%|
      ----------------+-------+-------+-------+-------+-------+
      - Cached Name   | 0,022 | 0,023 | 0,025 | 0,000 | 100,0 |
      - Uncached Name | 0,025 | 0,071 | 0,274 | 0,065 | 100,0 |
      - DotCom Lookup | 0,039 | 0,040 | 0,043 | 0,001 | 100,0 |
      ---<-------->---+-------+-------+-------+-------+-------+
                         cns8.bluewin.ch
               BLUEWIN-AS Swisscom (Schweiz) AG,CH
      195.186.  1.162 |  Min  |  Avg  |  Max  |Std.Dev|Reliab%|
      ----------------+-------+-------+-------+-------+-------+
      - Cached Name   | 0,022 | 0,023 | 0,026 | 0,001 | 100,0 |
      - Uncached Name | 0,025 | 0,072 | 0,299 | 0,066 | 100,0 |
      - DotCom Lookup | 0,039 | 0,042 | 0,049 | 0,003 | 100,0 |
      ---<-------->---+-------+-------+-------+-------+-------+
                         cns7.bluewin.ch
               BLUEWIN-AS Swisscom (Schweiz) AG,CH
        8.  8.  8.  8 |  Min  |  Avg  |  Max  |Std.Dev|Reliab%|
      ----------------+-------+-------+-------+-------+-------+
      - Cached Name   | 0,033 | 0,040 | 0,079 | 0,011 | 100,0 |
      - Uncached Name | 0,042 | 0,113 | 0,482 | 0,097 | 100,0 |
      - DotCom Lookup | 0,049 | 0,079 | 0,192 | 0,039 | 100,0 |
      ---<-------->---+-------+-------+-------+-------+-------+
                 google-public-dns-a.google.com
                     GOOGLE - Google Inc.,US
      UTC: 2014-11-03, from 14:33:12 to 14:33:29, for 00:17,648
    15: 40
    192.168.240.  6 |  Min  |  Avg  |  Max  |Std.Dev|Reliab%|
      ----------------+-------+-------+-------+-------+-------+
      + Cached Name   | 0,001 | 0,002 | 0,004 | 0,000 | 100,0 |
      + Uncached Name | 0,025 | 0,074 | 0,266 | 0,063 | 100,0 |
      + DotCom Lookup | 0,042 | 0,048 | 0,075 | 0,007 | 100,0 |
      ---<-------->---+-------+-------+-------+-------+-------+
                 gserver2.g2.intra
                    Local Network Nameserver
      195.186.  1.162 |  Min  |  Avg  |  Max  |Std.Dev|Reliab%|
      ----------------+-------+-------+-------+-------+-------+
      - Cached Name   | 0,022 | 0,024 | 0,029 | 0,001 | 100,0 |
      - Uncached Name | 0,024 | 0,073 | 0,289 | 0,067 | 100,0 |
      - DotCom Lookup | 0,039 | 0,041 | 0,043 | 0,001 | 100,0 |
      ---<-------->---+-------+-------+-------+-------+-------+
                         cns7.bluewin.ch
               BLUEWIN-AS Swisscom (Schweiz) AG,CH
      195.186.  4.162 |  Min  |  Avg  |  Max  |Std.Dev|Reliab%|
      ----------------+-------+-------+-------+-------+-------+
      - Cached Name   | 0,022 | 0,024 | 0,029 | 0,001 | 100,0 |
      - Uncached Name | 0,025 | 0,073 | 0,286 | 0,065 | 100,0 |
      - DotCom Lookup | 0,041 | 0,066 | 0,180 | 0,037 | 100,0 |
      ---<-------->---+-------+-------+-------+-------+-------+
                         cns8.bluewin.ch
               BLUEWIN-AS Swisscom (Schweiz) AG,CH
        8.  8.  8.  8 |  Min  |  Avg  |  Max  |Std.Dev|Reliab%|
      ----------------+-------+-------+-------+-------+-------+
      - Cached Name   | 0,033 | 0,038 | 0,077 | 0,009 | 100,0 |
      - Uncached Name | 0,042 | 0,105 | 0,398 | 0,091 | 100,0 |
      - DotCom Lookup | 0,049 | 0,066 | 0,141 | 0,025 | 100,0 |
      ---<-------->---+-------+-------+-------+-------+-------+
                 google-public-dns-a.google.com
                     GOOGLE - Google Inc.,US
      UTC: 2014-11-03, from 14:39:59 to 14:40:12, for 00:13,363

  • Do I need DFSR in a single server environment?

    I have a 2012 Host, running a single 2012 Guest.  Guest is running as a DC with AD, DNS, DHCP, and File Services.  DFSR is running, and it gives a warning every time my back runs (Backup is running on Host).  Warning is The DFS Replication
    service stopped replication on volume F:......and long message about Database, yada yada yada.  
    Do I need to run DFSR?  Again, single server, no file replication to different offices.  I'm not finding a clear answer to that question.
    Second, Server Manager should, according to TechNet, have under the Tools option the ability to turn off DFSR.  I cannot find that option.  So, IF I can turn it off, can I simply disable the DFS Namespace and DFS Replication services?  
    I would prefer eliminating rather than ignoring warnings.
    Thanks

    Sorry, one more time.  I have a single server environment, there is NO upstream domain controller, no replication between DC's.  There is ONE DC.  So, this is digressing into two questions.  One, why do I need to run DFSR (again, lots
    of articles talking about how to turn it off, and not as a discussion of temporary turn off https://msdn.microsoft.com/en-us/library/cc753144.aspx) in a single server, single domain, non-replicating environment.  
    Second, how do I address the warning I receive during my backup?  It appears to be caused by a replication error to downstream servers, since there is no downstream server, I should be able to resolve it by turning DFSR off.  I would like some
    documentation discussing the issue of turning it off in a non-DFS environment.
    The DFS Replication service stopped replication on volume F:. This occurs when a DFSR JET database is not
    shut down cleanly and Auto Recovery is disabled. To resolve this issue, back up the files in the affected replicated folders, and then use the ResumeReplication WMI method to resume replication. 
    Additional Information: 
    Volume: F: 
    GUID: 65E46942-B9D6-11E3-9400-00155D325402 
    Recovery Steps 
    1. Back up the files in all replicated folders on the volume. Failure to do so may result in data loss due
    to unexpected conflict resolution during the recovery of the replicated folders. 
    2. To resume the replication for this volume, use the WMI method ResumeReplication of the DfsrVolumeConfig
    class. For example, from an elevated command prompt, type the following command: 
    wmic /namespace:\\root\microsoftdfs path dfsrVolumeConfig where volumeGuid="65E46942-B9D6-11E3-9400-00155D325402"
    call ResumeReplication 
    For more information, see http://support.microsoft.com/kb/2663685.  
    Jeff Ferris

  • Installing Acrobat Pro 9.2 in a Terminal Server Environment

    Hi everyone,
    we're facing massive problems in our attempts to install Acrobat Pro 9.2 in a terminal server environment. It seems to be impossible to convert for example a .doc-file into a pdf via the adobe pdf-printer using a restricted user-account. It causes an "Access denied"-popup. We solved this subproblem by granting the user write-permission in the respective registry-key (HKLM\Software\Adobe). By now everytime we try, the application freezes after the "copy-status-bar" is filled. Using a power user instead of a normal user solves this problem. So the question is what's the relevant difference between the rights of those user groups.
    Thanks for your help!

    You can also try to update your Acrobat by applying patches one by one.
    to update upto latest version of Acrobat i.e 9.5, you need to apply the following updates
    9.3.0   download location: < http://www.adobe.com/support/downloads/detail.jsp?ftpID=4605 >
    9.3.2   download location  < http://www.adobe.com/support/downloads/detail.jsp?ftpID=4654 >
    9.3.3   download location  < http://www.adobe.com/support/downloads/detail.jsp?ftpID=4695 >
    9.4      download location  < http://www.adobe.com/support/downloads/detail.jsp?ftpID=4851 >
    9.4.2   download location  < http://www.adobe.com/support/downloads/detail.jsp?ftpID=4931 >
    9.4.5   download location  < http://www.adobe.com/support/downloads/detail.jsp?ftpID=5118 >
    9.4.6   download location  < http://www.adobe.com/support/downloads/detail.jsp?ftpID=5237 >
    9.5     download location  < http://www.adobe.com/support/downloads/detail.jsp?ftpID=5330 >
    You can download the above mentioned patches from the corrosponding download link and apply one by one in same order as mentioned above.
    This is  a bit lengthy process, but I hope you will be able to update your Acrobat.
    Thanks.

Maybe you are looking for

  • Bug in 7.02 on iPhone 5

    BUG in 7.02: After update, you will not be able to control music on locked screen, pause, next or previous song buttons are not working ... Neither through Control Center nor on screen while music is on.

  • Help with Ipod and Itunes...

    I have an ipod nano and have been using it successfully until tonight...I plugged it in to the USB port of my computer to upload some new songs and the ipod shows up as E:\ instead of "my ipod". It also says that I've used more space than I actually

  • IBASE Status update Function Module/ Table Field for status

    Dear Experts We need function module to change status of IBase. Please tell me standard function module if any. Or if no standard fuction moudle exists, please tell me tables which contains user and system status. Thanks and regards

  • Is FF 3.6.19 incompatible with Mac OX 10.4.11?

    Downloaded this and now have a constant problem with it hanging, so i have to quit and restart FF; v annoying. Message in Force Quit is Firefox no responding. Wasn't a problem with the earlier version of FF and the new version is not compatible with

  • Is Data filtering possible in TreeTable examlple 0.

    Hello everyone, I have used an opensource example "TreeTable example 0" provided by sun to develop an application and it is working very file for me. But Now, I want to develop a feature of data filtering whether column wise or data wise. So, is it p