Clustered OAM Servers go only to one server

The more we do clustering of our OAM Managed Servers... the more questions we seem to come across....
With OAM 11g, DB 11.2.0.1, RHEL5.6, and WLS 10.3.5... we have clustered the managed servers and all that displays, starts, stops as expected. But when we test the availability of the OAM Servers... only one is ever accessed.
With 2 hosts (H1 and H2) and the OAM Servers on both running, when we try to access a protected resource we are sent to H1's oam server everytime. To test the clustering of the servers, we shutdown the OAM server on H1 in hopes Oracle would recognize it and send us to the running OAM server on H2 -- at least that's what we thought clustered servers "should" do.
Much to our dismay, we were directed to the OAM server on H1 thereby receiving an "unable to connect" error... After a few more tries... we are actually able to get directly into the protected resource without having to enter the SSO login page.
Then only thing we can determine is that the first time we try to access the resource we are stopped because the system wants us to go to the SSO login which it cannot find because it is only willing to look at H1 for the OAM server -- which is down. Continuing to try to access the page and then getting in without the SSO login... tells us that the system has determined that the OAM server is down and therefore there is nothing to stop us from accessing the protected resource.
There are a few basic questions that come from this... but the one we need answered is... why is it not rolling over to the other running OAM server on the cluster? Where can this be defined?
thanks for any assistance...

See my comments below:
Hosts -- 4 hosts total:
Testing Host with protected resource app:
Host: x.x.x.134
App: servletproject
OAM Host1: x.x.x.216
OAM Host2: x.x.x.217
HAProxy Host: x.x.x.190
HAProxy conf file (just the LB)
listen LB x.x.x.190:5575 This is not needed as all OAP (5575) traffic must go directly to each OAM Node and not through a LB. REPLACE THIS WITH x.x.x.190:14101 or x.x.x.190:443
mode tcp
balance roundrobin
server host1 x.x.x.216:5575 REPLACE THIS WITH x.x.x.216:14101 (Ths listen port of your oam1 managed server
server host2 x.x.x.217:5575 REPLACE THIS WITH x.x.x.217:14101 (Ths listen port of your oam2 managed server
OAM Console:
Server Instances:
original settings before haproxy included: revert this change. You must use port 14101 and go through the LB for this. Using 5575 in this way will not work
host IP: host1/host2
port: 14101
settings after haproxy included:
host IP: x.x.x.190
port: 5575
OAM Proxy values -- did not change with haproxy:
Port: 5575
Proxy Server ID: AccessServerConfigProxy
Mode: Open
Access Manager Settings: This value must be using the HAProxy host on port 14101 - This explains why when you shutdown host1's OAM Server you see errors trying to connect to host1.
Load Balancing:
Host: host1
OAMPort: 14101
Protocol: HTTPS
Mode: External
Testing Host ObAccessClient.xml excerpt: Once you make the above change in the OAM Console adding back host1/host2 and port 14101 for your instances, this setting should be automatically updated but it's worth validating in the Webgate configuration
ListName="primaryServer1">
<NameValPair
ParamName="host"
Value="192.168.2.190"></NameValPair>
<NameValPair
ParamName="port"
Value="5575"></NameValPair>
<NameValPair
ParamName="numOfConnections"
Value="1"></NameValPair>
This is a great way to communicate your configuration. Go ahead and re-post when you've made the changes I reference above.
Thanks!
Seth
Edited by: SethMalmberg on Mar 9, 2012 9:06 AM

Similar Messages

  • SSIS 2012 ETL is failing only at one server (No BIDS) but running successfully from BIDS on different sever . In this ETL, I have used Stored Procedure in OLEDB Source.

    Hi Guys,
    SSIS 2012 ETL is failing only at one server (No BIDS) but running successfully from BIDS on different sever . In this ETL, I have used Stored Procedure in OLEDB Source.
    Note: I have couple of ETLs developed in 2005 using same logic and upgraded to 2012, working perfectly.
    I am getting Error Message:
    SSIS
    Error Code
    DTS_E_OLEDBERROR. 
    An OLE DB
    error has occurred.
    Error code: 0x80004005.
    An
    OLE DB
    record is available. 
    Source: "Microsoft OLE DB Provider for SQL Server" 
    Hresult: 0x80004005 
    Description: "Error converting data type varchar to datetime.".
    Unable
    to retrieve
    column information
    from the data
    source. Make
    sure your target
    table in
    the database is
    available.
    "OLE DB Source"
    failed validation
    and returned
    validation status
    "VS_ISBROKEN".
    I tried below word around and found It is working perfectly.
    I loaded data into a table (dbo.TEMP) using Stored procedure and then I used this dbo.TEMP table in OLEDB source and then found no issue.
    MY SP Details: (This SP I am calling in OLEDB source of ETL) and when I run it from one server IT is working fine and when I run from ETL dedicated Server getting error:   Guys Help me out.
    USE
    [TEST_DB]
    GO
    SET
    ANSI_NULLS ON
    GO
    SET
    QUOTED_IDENTIFIER ON
    GO
    ALTER
    PROCEDURE  [DBO].[SP_TEST]
    --EXEC [DBO].[SP_TEST] '2014-09-30','2014-10-01'
    @FROMDATETIME
    DATETIME,
    @TODATETIME
    DATETIME
    AS
    SET
    NOCOUNT ON
    BEGIN
    DECLARE
    @FROMDATEKEY INT,
    @TODATEKEY INT,
    SET
    @FROMDATEKEY=
    CONVERT(VARCHAR(10),@FROMDATETIME,112)
    SET
    @TODATEKEY=
    CONVERT(VARCHAR(10),@TODATETIME,112)
    IF 1 = 1
    BEGIN
    SELECT
    CAST(NULL
    AS DATETIME) 
    AS TXN_DATE
    , CAST(NULL
    AS DATETIME
    ) AS PROCESS_DATE     
    , CAST(NULL
    AS money)
    AS  S1_AMT
    , CAST(NULL
    AS money)
    AS  S2_AMOUNT
    , CAST(NULL
    AS money)
    AS  S2_INVALID_AMOUNT
    , CAST(NULL
    AS money)
    AS  INVALID_MOVED_IN_VALID_S2_AMOUNT
    , CAST(NULL
    AS VARCHAR(20))
    AS SYSTEM_ID
    , CAST(NULL
    AS money)
    AS  S3_AMT
    END
    SELECT
    TXN_DATE
    ,PROCESS_DATE
    ,S1_AMT
    ,S2_AMOUNT
    ,S2_INVALID_AMOUNT
    ,INVALID_MOVED_IN_VALID_S2_AMOUNT
    ,SYSTEM_ID
    S3_AMT
    FROM
    DBO.TABLE_1
    WHERE TNX_DATE_KEY
    BETWEEN @FROMDATEKEY
    and @TODATEKEY
    UNION
    ALL
    SELECT
    TXN_DATE
    ,PROCESS_DATE
    ,S1_AMT
    ,S2_AMOUNT
    ,S2_INVALID_AMOUNT
    ,INVALID_MOVED_IN_VALID_S2_AMOUNT
    ,SYSTEM_ID
    S3_AMT
    FROM
    DBO.TABLE_2
    WHERE TNX_DATE_KEY
    BETWEEN @FROMDATEKEY
    and @TODATEKEY
    UNION
    ALL
    SELECT
    TXN_DATE
    ,PROCESS_DATE
    ,S1_AMT
    ,S2_AMOUNT
    ,S2_INVALID_AMOUNT
    ,INVALID_MOVED_IN_VALID_S2_AMOUNT
    ,SYSTEM_ID
    S3_AMT
    FROM
    DBO.TABLE_3
    WHERE TNX_DATE_KEY
    BETWEEN @FROMDATEKEY
    and @TODATEKEY
    END
    Data Source Mode: SQL Command for Variable
    "EXEC [DBO].[SP_TEST]  '"+ (DT_WSTR, 24) @[User::V_EXTRACT_FROM_DT]  +"','"+ (DT_WSTR, 24) @[User::V_EXTRACT_TO_DT]  +"'"
    Where variable @[User::V_EXTRACT_FROM_DT] and @[User::V_EXTRACT_TO_DT] is defined as DATETIME 
    Thanks Shiven:) If Answer is Helpful, Please Vote

    Hi,
    Yes you are right. At one sever where I was getting error, DateTime was in USA format and Where It was running successfully was in AUS format.
    I changed from USA to AUS and I did another changes:
    Data Source Mode: SQL
    Command
    EXEC  [DBO].[SP_TEST] 
    @FROMDATETIME = ?,
    @TODATETIME = ?
    and It is working fine.
    Thanks Shiven:) If Answer is Helpful, Please Vote

  • Cluster servlet only sees one server

              I'm using WLS6.1 SP2 running on Solaris. I'm using the new version of the HttpClusterServlet
              (weblogic.servlet.proxy.HttpClusterServlet) to proxy to 6 managed servers running
              on two physical servers. It's just proxying web requests, not EJBs or anything
              like that, and we're not using session state or SSL.
              The problem is that the cluster servlet only sends requests to one server at a
              time - no round-robin is going on. It seems to just latch onto the first server
              it can find. So if I bring down all the managed servers, the first one that comes
              back up gets all the requests forever.
              The only parameters to the HttpClusterServlet are DebugConfigInfo = On and the
              WebLogicCluster property which is set to:
              server1:9221:9222|server1:9231:9232|server1:9241:9242|server2:9221:9222|server2:9231:9232|server2:9241:9242
              I've also checked the online debug info, using http://server1:proxyport/dummy.jsp?__WebLogicBridgeConfig.
              This shows only one server under the General Server List. However it does change
              if I take down the server listed there.
              Any help would be greatly appreciated,
              BKR
              

    Hi Brian,
              One thing I notice is that the servers listed in your WebLogicCluster
              property show some instances listening on different ports. Pre-7.0,
              clustered instances must be listening on different IPs, but the same port
              number. For example,
              server1 - listen address 192.168.1.100 - listening on port 8001
              server2 - listen address 192.168.1.101 - listening on port 8001
              server3 - listen address 192.168.1.102 - listening on port 8001
              ..etc...
              So you are either trying to proxy to three different clusters, in which
              case, your HttpClusterServlet configuration is incorrect, or you just have
              your cluster configured in correctly (if you intend for all six servers to
              be a part of one cluster).
              Hope this helps.
              Jane
              BEA Support
              "Brian Reischl" <[email protected]> wrote in message
              news:[email protected]...
              >
              > I'm using WLS6.1 SP2 running on Solaris. I'm using the new version of the
              HttpClusterServlet
              > (weblogic.servlet.proxy.HttpClusterServlet) to proxy to 6 managed servers
              running
              > on two physical servers. It's just proxying web requests, not EJBs or
              anything
              > like that, and we're not using session state or SSL.
              >
              > The problem is that the cluster servlet only sends requests to one server
              at a
              > time - no round-robin is going on. It seems to just latch onto the first
              server
              > it can find. So if I bring down all the managed servers, the first one
              that comes
              > back up gets all the requests forever.
              >
              > The only parameters to the HttpClusterServlet are DebugConfigInfo = On and
              the
              > WebLogicCluster property which is set to:
              >
              server1:9221:9222|server1:9231:9232|server1:9241:9242|server2:9221:9222|serv
              er2:9231:9232|server2:9241:9242
              >
              >
              > I've also checked the online debug info, using
              http://server1:proxyport/dummy.jsp?__WebLogicBridgeConfig.
              > This shows only one server under the General Server List. However it does
              change
              > if I take down the server listed there.
              >
              >
              > Any help would be greatly appreciated,
              > BKR
              

  • One server works fine - the other (on a cluster) produces

    Dear community memebers,
    Can you help? I manage two sun web servers that are set up identically with the exception that one is on a clustered Solaris system.
    I used the standard Sun Web Server interface set up JDBC Data Resources for my databases to do connection pooling. My web application runs simple queries using the class attached below.
    On one web server, the one not running on the cluster, I never have issues with the data sources.
    On the other web server, the one running on the Solaris cluster, I often get the following error:
    java.sql.SQLException: RSR0009: Resource not available for pool [MyDBResource].  Wait-time expired.This error comes up irregularly after several days where there are no problems. The particular database involved is a MySQL database. The web server version is the newest one available.
    Can you suggest what I might be doing incorrectly?
    Here is the class with which I access the data source. You'll see that I close all connections.
         * Takes care of Select statements.
         * Must have set both dbName as well as the sql String.
         * Will return a vector.
         * @return Vector of Hashes containing the Results of the query
         * @exception SQLException
         * @exception Exception
        public Vector getSelect(){
            checkData(); // this just checks if we received sql and a database dbName
            InitialContext initContext = null;
            Vector returnValue = new Vector();
            ResultSet result = null;
            ResultSetMetaData rsmd = null;
            try{
                // Get connection from configured pool
                initContext = new InitialContext();
                source = (DataSource) initContext.lookup("java:comp/env/jdbc/" + dbName);
                conn = source.getConnection();
                if(conn != null){
                    stmt = conn.createStatement();
                    result = stmt.executeQuery(sql);
                    rsmd = result.getMetaData();
                    while(result.next()){
                        Hashtable hash = new Hashtable();
                        for(int i = 1; i <= rsmd.getColumnCount(); i++){
                            if(result.getString(i) != null){
                                hash.put(rsmd.getColumnName(i),result.getString(i));
                            }else{
                                hash.put(rsmd.getColumnName(i),"");
                        returnValue.addElement(hash);
            }catch (Exception e){
                // pg is a class which gets values from a properties file.
                setErrors(e.toString());
                Email.sendMail(pg.getValue("adminEmail"),"SCCWeb Error: [ConnectAndQuery.getSelect] Exception","getSelect Exception: " + e.toString() + "\nWith: " + sql,"SccwebBackend");
            }finally{
                try{
                    result.close();
                    stmt.close();
                    conn.close();
                    initContext.close();
                }catch(Exception e){
                    setErrors(e.toString());
                    //Email.sendMail(pg.getValue("adminEmail"),"SCCWeb Error: [ConnectAndQuery.getSelect] Exception","Close() Result/Stmt\ndb: "+dbName+"\nSQL: "+sql+"\nPlease investigate\nException: " + e.toString(),"SccwebBackend");
            return returnValue;
        }   Thank you,
    dailysun

    Did you ever solve this issue? We are running an applications on 4 Sun web servers. Every now and then, we get the following error on one or two of the servers.
    java.sql.SQLException: RSR0009: Resource not available for pool [jdbc/homeDB]. Wait-time expired
    It has been happening a couple times a week where the connection pool on a server becomes unusable and a restart is needed. We just keep getting the error message (wait time expired) over and over again (we have a health check jsp that makes a database call that gets executed every minute or so) It usually happens in the middle of the night and it usually only affects one server, but every now and then it will occur on two around the same time. It has happened at least once on each server. There is nothing unusual from the database side except that a bunch of connections seem to get dropped around the time we see the initial error message. We are using SPRING (JdbcTemplate) to handle the connections and query, so we do not have any custom code to close connections/results/statements. The application only queries the database and does not do any inserts/updates/deletes. We also get the following error message prior to the "Resource not available for pool" error messages.
    uncategorized SQLException for SQL [SELECT due_date_max_item FROM epubdb.epubadmin.glob_page_vars]; SQL state [JZ006]; error code [0]; JZ006: Caught IOException: com.sybase.jdbc3.jdbc.SybConnectionDeadException: JZ0C0: Connection is already closed.; nested exception is java.sql.SQLException: JZ006: Caught IOException: com.sybase.jdbc3.jdbc.SybConnectionDeadException: JZ0C0: Connection is already closed.
    Below is the jdbc-resources from server.xml
    <jdbc-resource>
    <jndi-name>jdbc/homeDB</jndi-name>
    <datasource-class>com.sybase.jdbc3.jdbc.SybDataSource</datasource-class>
    <min-connections>2</min-connections>
    <max-connections>10</max-connections>
    <connection-validation>auto-commit</connection-validation>
    <fail-all-connections>true</fail-all-connections>
    <property>
    <name>PortNumber</name>
    <value>5000</value>
    </property>
    <property>
    <name>DatabaseName</name>
    <value>wwwdb</value>
    </property>
    <property>
    <name>User</name>
    <value></value>
    </property>
    <property>
    <name>ServerName</name>
    <value></value>
    <description/>
    </property>
    <property>
    <name>Password</name>
    <value></value>
    <description/>
    </property>
    </jdbc-resource>
    Edited by: boesch on Oct 10, 2008 10:28 AM
    Edited by: boesch on Oct 10, 2008 10:42 AM

  • Apache HTTP proxying for load balancing only to a group of non-clustered WL servers

              Hi,
              We're running WL Server 6.1 SP 2 on Solaris 2.8.
              For the Apache HTTP proxy plugin, if you use the WebLogicCluster http.conf option,
              do the WL servers you want to load balance across have to be part of a WebLogic
              cluster (if you are prepared to do without failover, as I know it would need to be
              a proper WL cluster to replicate session info for failover). Can you load balance
              across a group of non-clustered WL servers, and maintain the user session to the
              one WL server so that it doesn't switch between servers on alternate requests for
              the same user session, or must the servers be configured as a WebLogic cluster?
              Paul
              We find that if you have a collection of WL servers that are not configured as a
              cluster, that it will load balance alternate requests to each server, but it will
              not pin a user to a single machine according to their session so for 2 servers, 2
              differetn sessions get created, one on each machine.
              Is this because it doesn't normally do this, but sends the user alternately to a
              primary then secondary which works in a cluster because the session is replicated.
              I thought the secondary was only used when the primary failed.
              

    We're running WL Server 6.1 SP 2 on Solaris 2.8.          >
              > For the Apache HTTP proxy plugin, if you use the WebLogicCluster http.conf
              option,
              > do the WL servers you want to load balance across have to be part of a
              WebLogic
              > cluster (if you are prepared to do without failover, as I know it would
              need to be
              > a proper WL cluster to replicate session info for failover). Can you load
              balance
              > across a group of non-clustered WL servers, and maintain the user session
              to the
              > one WL server so that it doesn't switch between servers on alternate
              requests for
              > the same user session, or must the servers be configured as a WebLogic
              cluster?
              You don't have to use the clustering option. To get failover, you'll have to
              use the JDBC persistence option of WL.
              > We find that if you have a collection of WL servers that are not
              configured as a
              > cluster, that it will load balance alternate requests to each server, but
              it will
              > not pin a user to a single machine according to their session so for 2
              servers, 2
              > differetn sessions get created, one on each machine.
              >
              > Is this because it doesn't normally do this, but sends the user
              alternately to a
              > primary then secondary which works in a cluster because the session is
              replicated.
              > I thought the secondary was only used when the primary failed.
              The primary/secondary stuff requires clustering. If Apache continues to
              "load balance" after the first request, you need to either use JDBC session
              persistence or use a different load balancer (like mod_jk for Apache or a
              h/w load balancer with support for sticky).
              Peace,
              Cameron Purdy
              Tangosol, Inc.
              http://www.tangosol.com/coherence.jsp
              Tangosol Coherence: Clustered Replicated Cache for Weblogic
              "Paul Hammond" <[email protected]> wrote in message
              news:[email protected]...
              >
              

  • Clustering on one server

    Hallo,
              we have one server with Windows 2003 server Enterprise edition, 10GB of RAM.
              There is Bea Weblogic Express 8.1 SP5.
              My idea is: On this server will be run 5 services in cluster. Because one service can use about 1 GB of memory...
              How can I configure this one (if it si possible of course)?
              I'm not Bea expert :-)

    Hi Oscar,
    Please find the answers below.
    Question 1.- Always On "HAS" to be configured on a WSFC node? How about in a Single SQL Server. (NO Clustering)?.
                    - Yes . Each replica must be on a different node of a WSFC cluster. Without WSFC Cluster you cannot create always on as it relies on the failover capabilities of the
    cluster.
    Question 2.- What about our mirroring processes configured and running in single servers, do we have to have WSFC installed before we can upgrade them to Always On?.
                     - You cannot really upgrade a Database mirroring configuration to Always on , both are different and works differently. Again for Always on each participating
    replica must be on a WSFC cluster
    Question 3.- In a case I have WSFC, and configure Always On, can my second or third replica reside in a single SQL Server? (No WSFC). What if I can not have Clustering in a DR Data Center? or I do have only VM's on the DR Center?
                   - NO all replicas have to be in single nodes of WSFC cluster.
    Note: SQL Server doesnt have to be clustered.
    Consider the following scenario. YOu need to create Always on with a 3 node topology ie 1 Primary, I secondary and 1 readonly secondary.
    YOu need to have all these three nodes a part of Windows Server Failover Cluster. The clustering needs to be done only in the windows level. YOu can install standalone SQL Servers on all these 3 nodes and then condigure them as replica's in ALways on.
    Read these links to clear your questions -
    http://technet.microsoft.com/en-gb/sqlserver/gg490638.aspx
    http://technet.microsoft.com/en-us/library/hh510230(v=SQL.110).aspx
    http://technet.microsoft.com/en-us/library/ff878487(v=sql.110).aspx#ServerInstance
    Note: When I said Always ON I was reffering to Availability Groups.
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • Error in Accessing Clustered Essbase Application from one server to another

    We had installed the Foundation services, Essbase and Planning of version 11.1.2.1 on one server and Foundation services and Essbase on another server. Then we created a clustered Application on the first server and configured the second server with the first server's Essbase Cluster. But when we try to connect with the application created within the cluster it throws the following error:
    Error: 1042032: Network Error: Unable to detect ESSBASE server listening on IPv4 or IPv6 network protocols on hostname - [EssbaseCluster-1]

    What Robert is saying is that you need to map your production server in order to see it.
    In your Dev EAS console,
    right-click on Essbase Servers
    select Add Essbase Server
    enter in the connection information
    press OK.
    Please be sure to mark the correct and/or any helpful answers.

  • Load Balancing only working on one server!

    Hi All,
    I have configured 3 servers as follows:
    Server 1 = WebCache only server (Windows 2003)
    Server 2 = 10g Forms and Reports server (Solaris)
    Server 3 = 10g Forms and Reports server (Solaris)
    Servers 2 and 3 work perfectly using the direct addresses on the following ports
    server2.domain.com:7778/formsurl?config=WEBTEST
    server3.domain.com:7777/formsurl?config=WEBTEST
    I have added the Origin servers, the site definitions, and the one site-to-server mapping which is as follows:
    server1.domain.com:7777
    --> server2.domain.com:7778/formsurl?config=WEBTEST
    --> server3.domain.com:7777/formsurl?config=WEBTEST
    When connecting using the WebCache server's URL I get a FRM-92101 error, cannot communicate... I am using the URL below to connect:
    --> server1.domain.com:7777/formsurl?config=WEBTEST
    However, if I remove one of either server2 or server3 from the site-to-server mapping (effectively meaning that WebCache is only 'load-balancing' on one server), the application loads up fine.
    It is only when enabling both servers that it fails?!?!
    Does anyone have any ideas as to what could be happening to cause this problem??
    Many thanks,
    Paul

    Thanks for all the replies ;)
    I have now fixed the problem...Dont ask me how because it would take too long to explain!
    Thanks,
    Paul

  • Installing Leopard server on the servers that only come with Snow Leopard

    Has anyone ever "downgrade" - installing Leopard server on the servers that only come with Snow Leopard installer disc??? Is there anything special involved?? Or can I just pop in a Leopard Server installation disc from previous generation servers and procede?? These servers are going to be a part of Xsan. And with my previous horrible experience with Snow Leopard and Xsan, I am really trying to avoid going through that again... Thank you!

    The general answer is yes. But the conditional answer is that you must have the original installation media from the Xserve model before it started shipping Snow Leopard exclusively. This means you would need to have bought an Xserve as recently as December to have the combo OS pack as I believe Apple stopped shipping Leopard around early January (although that might be on BTO models so if you got one from the channel it may still have the original media kit). You need to be mindful of the machine's Boot ROM version. The change of one digit can cause some issues with older installation media.
    If you don't have recent media kits, you "should" be able to construct a functional OS by building on other hardware and patching up to 10.5.8. Then cloning it to the new unit.
    And, you've peaked my interest. What specific issue have you had with 10.6 and Xsan?
    Hope this helps

  • E-Mail Issues: Retrieved E-Mails deleting off server but only on one of two accounts

    I am the proud owner of a Z10 as of 4 days ago. So far, it's a great device, but I've got one problem. I want the e-mail messages retrieved on my phone to stay on the server, and this is working, but only for one account.
    I setup my two e-mail accounts, Comcast and GMail, both as POP accounts. I did not setup GMail as IMAP. I tested the connections to see that the messages were properly retrieved on the phone, then I logged into each account to see that the messages were staying on the server. It appeared as though they were, but apparently I didn't wait long enough on the GMail account because the messages were being deleted from the server and I didn't notice this for 3 days. Again, my phone is NOT doing this for my Comcast account and I don't know why.
    I have about 10 e-mails now on my phone in my GMail account that I can't seem to get back on the GMail server. I need to do this so I can download the messages to my home server where all my mail is stored.
    I thought maybe I could create a second IMAP GMail account in the hub and copy the messages from one account to the other, but I can't.
    If I continue to let the phone get those messages, they'll continue to be removed from the server.
    If I forward them to myself, then they just show up as having come from me and that's not what I need either.
    If I delete the account entirely, I lose my messages and that's definitely not what I want.
    I thought I could tell the phone to stop logging into the GMail account by updating the password on the device, but it has to authenticate to the server to confirm that the password is correct, and if it isn't, it won't take the password and returns an error.
    So far, the only thing I've been able to do to get the phone to stop retrieving the messages is to change my GMail password and not update it on the phone. That way, the phone can't sign in to GMail at all and get any new mail. However, I still have these 10 messages on my device that I need to export somehow.
    Is there a way to export mail on this device? Is there a way to copy messages from account to account? What directory is the mail stored in and what file format is it stored in? Can I convert the messages to .csv and do it that way? And why did this happen only for my GMail POP account and not Comcast?

    This is a wi-fi network connection problem - not a problem with an email account.
    Do you have cellular reception at home? If so, you should be able to receive email with both email accounts as long as you have an internet connection with the cellular network.
    On your iPhone go to Settings > General > Reset and select Reset Network Settings.
    This will delete all wi-fi network settings from your iPhone for every wi-fi network you have successfully connected your iPhone with.
    After doing so check if your wi-fi network is available again to re-join.

  • Search is working fine on one server but not giving results from other servers. moss 2007?

    hi,
    we have multi server or wfe architecture. configured search service on one server 01, central admin is 02, and query as 03, now crawled content with hostname:port of 01. everything is fine.
    but now when we trying to search results its giving results on server 01 which is index and query role. but didnt return any results in other servers.
    help is really appreciated.
    Thanks,
    SJ

    I thought you are posting question in wrong forum. Please move the question to
    https://social.technet.microsoft.com/Forums/en-US/home?forum=sharepointsearch. There some one will help
    Ravin Singh D

  • How to install and config multi server certificates for hardware servers within one server instance(using different IP addresses?

     

    Hi,
    I hope your questions is like this.
    one instance is there, and want to install multiple server certs.
    Ans:-
    I don't think you can install individual certs for all of them. which is not possible, but you can install server certs for particular classes.
    In one instance,you can have multiple h/w virtual servers each binded to one ip.
    This is possible in iws 6.0,you can install different certs for different virtual classes.
    Thanks,
    Daks.

  • Unable to install SSL Certificate - ADMIN4118: Only one server certificate can be installed at a time

    Hi,
    We are trying to install SSL certificate (Verisign Class 3) on iPlanet Web Server (version 7). However, at the final step we are getting the error "ADMIN4118: Only one server certificate can be installed at a time"
    We are following the below steps,
    Under "Server Certificates" tab,
         -> Click on "Install" button.
         -> On "Select Configuration" click on "Next" button.
         -> On "Select Tokens and Passwords", select default token as "internal" and click on "Next" button.
         -> On "Enter Certificate Data", select option as "Certficate File" and give path to the certificate file which is having .p7b extension
         -> On "Certificate Details" we are getting warning as "Duplicate Server Details Found" and it's by default using the existing certificate's nickname.
         -> On "Review" page after clicking "Finish" button, an error is displayed saying "ADMIN4118: Only one certificate server can be installed at a time"
    There are multiple sub-domains availble and the new certificate we want to install contains one more sub-domain.
    So, say currently the subdomains present are,
    1.abc.com
    2.abc.com
    so on...
    and now we are trying to install a SSL certificate having one more subdomain say 10.abc.com.
    Please let us know if you have solution to this problem.
    Thanks,
    Rajesh

    Hi Rajesh,
    That error is most commonly seen when you are trying to install a certificate chain into the Web Server.
    The chain should be installed using the "Certificate Authorities" tab per the following steps:
    1) Login to the Admin Console.
    2) Click Edit Configuration from Common Tasks > Configuration Tasks.
    3) Click the Certificates > Certificate Authorities tab from the Configurations page.
    4) Click the Install... tab from the Certificate Authorities (CAs) page.
    An Install CA Certificate Wizard opens. The wizard guides you through the settings available for installing a Certificate Chain. Select Certificate Chain when prompted for Certificate Type.
    You should then see the CA and intermediate certificate(s) listed in the security database.
    If you have access to MOS, more details can be found in the MOS KM Note:
       Oracle iPlanet Web Server - 'ADMIN4118: Only one server certificate can be installed at a time' When Installing Certificate Chain (Doc ID 1925025.1)
    regards
    Tracey

  • I can send to only one server (NG) at at time? How can I fix this!

    Frequently, there are messages to my News Group from multiple NGs. I wish to respond,
    but I get the message that I can send messages to only one server at the time

    Only when i go to a different browser (like IE) after i clear it , then all that shows up is the pages i visited in IE , that is what bugs me , why is IE browsing history sowing up in Firefox ??
    Basically , i can clear the history in Firefox , and then for a example , go to Craigslist , using IE7 (launching it from a complete different Icon , in other words at that time i never open Firefox) , then after closing out , or even leaving open as it does not seem to matter , i go into Firefox , and hit History , and there is every place i visited in IE7 , on my History in Firefox

  • Verity and Clustered Coldfusion Servers

    Hi All,
    I am currently looking at using Verity with our clustered
    coldfusion servers but seem to have an issue. We currently have
    three coldfusion servers but the version of verity included with
    coldfusion only allows a connection from one server.
    Has anyone else been in the same situation where they need
    more than one coldfusion server talking to the same verity server?
    If so how did you solve this issue? ( We have looked at purchasing
    the full version of verity but it is to expensive.)
    Thanks
    Paul

    I'll restate this in simpler fashion.
    Can you retrieve MX 7 verity search results on a MX 6.1
    server?
    Can this be done via CFHTTP or any other similar method?
    Thanks

Maybe you are looking for