Sticky resource not available - ACE Module

hi,
I am getting the below error on defining stickiness. Please assist.
switch/Admin(config)# sticky ip-netmask 255.255.255.255 address both ACE-CKH-STICKY
Error: sticky resource not available
Thanks.

Note The syslog message statistics do not include the syslogs generated from the dataplane when you enable the logging of connection setup and teardown syslog messages through the logging fastpath command.
•regexp-Limits the amount of regular expression memory.
•sticky-Limits the number of entries in the sticky table. You must configure a minimum value for sticky to allocate resources for sticky entries, because the sticky software receives no resources under the unlimited setting.
•xlates-Limits the number of network and port address translations entries.
•minimum number-Specifies the lowest acceptable value. Enter an integer from 0.00 to 100.00 percent (two-decimal places of granularity). The number argument specifies a percentage value for all contexts that are members of the class. When used with the rate keyword, the number argument specifies a value per second.
•maximum {equal-to-min | unlimited}-Specifies the maximum resource value: either the same as the minimum value or no limit.
Note The limit that you set for individual resources when you use the limit-resource command overrides the limit that you set for all resources when you use the limit-resource all command.
If you lower the limits for one context (context A) in order to increase the limits of another context (context B), you may experience a delay in the configuration change because the ACE will not lower the limits of context A until the resources are no longer being used by the context.
For example, to allocate 20 percent of all resources (minimum and maximum) to all member contexts of the resource class, enter:
(config-resource)# limit-resource all minimum 20% maximum equal-to-min
System Resource Maximum Values
Resource Maximum Value
Application Acceleration Connections
10000 connections
ACL Memory
34123184 bytes
Buffer Memory (Syslog)
1048576 bytes
Concurrent Connections
1,000,000 connections (Layer 4),
100,000 connections (SSL)
HTTP Compression
100 megabits per second (Mbps). You can upgrade the ACE maximum HTTP compression rate to 1 Gbps by purchasing a separate license from Cisco Systems. For more information, see the Cisco 4700 Series Application Control Engine Appliance Administration Guide.
Management Connections
5000 connections
Proxy Connections (Layer 7)
256,000 connections
Rate
Bandwidth
1 gigabits per second (Gbps). You can upgrade the ACE maximum bandwidth to 2 Gbps by purchasing a separate license from Cisco Systems. For more information, see the Cisco 4700 Series Application Control Engine Appliance Administration Guide.
Connections (any kind)
120,000 connections per second (Layer 4), 40, 000 connections per second (Layer 7)
MAC miss
2000 packets per second
Management traffic
125,000,000 bits per second
SSL connections
1000 transactions per second (TPS). You can upgrade the SSL bandwidth to a maximum of 7500 TPS with a separate license. For more information, see the Cisco 4700 Series Application Control Engine Appliance Administration Guide.
syslog
For traffic going to the ACE (control plane), 3000 messages per second
For traffic going through the ACE (data plane), 120,000 messages per second
Regular Expression Memory
1,048,576 bytes
Sticky Entries
800,000 table entries
Xlates (network and port address translation entries)
64,000 Xlates (network entries),
1,000,000 Xlates (port address translation entries)
Kind Regards,
Sachin Garg
Senior Specialist Security
HCL Comnet Ltd.
http://www.hclcomnet.co.in
A-10, Sector 3, Noida- 201301
INDIA
Mob: +91-9911757733
Email: [email protected]

Similar Messages

  • Sticky Resource Not Available when setting up sticky http-cookie

    When I try to configure the sticky:
    (config)# sticky http-cookie ACE-COOKIE COOKIE-STICKY
    I get the error:
    sticky resource not available
    An L7 policy has not yet been set up… could that be the reason for this error? Or, is it because I have not setup a class resource for the sticky cookie?

    Syed,
    I thought it resolved it, but it really didn't.
    Added the resource-class in the Admin context:
    resource-class any-available
    limit-resource all minimum 0.00 maximum unlimited
    limit-resource sticky minimum 35.00 maximum equal-to-min
    no difference.

  • Sticky resource not available ?

    I get the following error message then i try to configure sticky on an ACE:
    Error: sticky resource not available
    What is the problem ?
    I have release "c6ace-t1k9-mz.A2_1_2.bin" and sticky should be supported.
    ace-10/RGW_Front_servers(config)# sticky ip-netmask 255.255.255.255 address source RGW-FRONT
    Error: sticky resource not available
    Regards,
    Ola Haglund

    Hi Ola,
    By default sticky resources are not available. You need to go to the Admin context and define a new resource class with some stickiness. See Server LoadBalancing Guide Chapter 5 p8. For example:
    resource-class RC1
    limit-resource all minimum 0.00 maximum unlimited
    limit-resource sticky minimum 10.00 maximum equal-to-min
    Obviously the amount of sticky resource to allocate will depend on your application.
    And then you need to make the context that needs stickiness a member of that resource class.
    For example:
    context Test
    allocate-interface vlan 292-293
    member RC1
    HTH
    Cathy

  • Error message "iTunes Helper Resources not available" and saving to wrong Drive

    I am trying to upgrade iTunes to 10.7 on my PC but I keep getting the error message "iTunes Helper Resources not available". Diagnostics take me a support page which talks about not being able to see the device in iTunes - but I can see the device without problems.
    I thought I would try reinstalling iTunes from the webpage and it downloaded to my PC fine but when I went to setup, it showed me it is saving to a DVD drive - not my Hard drive. It also won't let me change the location for the file. I have no idea how that's happened as I obviously don't use the DVD drive as a USB (although the PC see's it as one) and I've never chosen it as the location for iTunes in the 7-8 years that I've been using it.
    I then thought I'd try uninstalling it and reinstalling it (to the correct drive) but again, it comes up that the DVD drive is invalid and won't uninstall iTunes.
    So I'm stuck and haven't been able to find anything helpful on the support pages or in iTunes Help.
    Please someone help ...
    Thanks.

    Try the following user tip. (Probably, the section on clearing the installation database might be best given that you've currently got a drive on the problematic letter at the moment.)
    "Invalid drive X:\" install errors

  • Database Error: RSR0009: Resource not available for pool. Wait-time expired

    i am occassionally receiving the following error during database connections in my servlet:
    Database Error: RSR0009: Resource not available for pool [webAdvisorTestPool]. Wait-time expired
    i understand that this is a result of a connection leak from improper closure of my Connection object, but i thought that i was properly closing my connection.
    i can get the error if i do the following steps:
    1) access my login page and enter login credentials.
    2) submit the login which then hits the Authentication servlet.
    3) Authentication servlet authenticates and takes me to home page.
    4) hit the back button to get back to the login page.
    5) repeat this process until i hit the Max Pool Size (from web server).
    6) then i get the error message
    here are some details:
    i have an Authentication servlet; here is the pertinent code from that servlet:
    try {     // retrieve the user and add the User object to the session     DAO dao = new DAO();     Person authenticUser = dao.getPerson(userID, password);     session.setAttribute("validUser", authenticUser);     redirectPage = mapping.findForward("success"); }
    i also have a DAO object that handles all of my DB transactions (and you can see from my code above that the Authentication servlet is using that object); here is the pertinant code from that servlet:
    public DAO() {     datasource = "java:comp/env/jdbc/webAdvisorTest"; } public Person getPerson(String userID, String password)     throws ObjectNotFoundException {     // JDBC variables     DataSource ds = null;     Connection conn = null;     PreparedStatement stmt = null;     ResultSet results = null;     // User variables     Person validUser = null;     try     {         // Retrieve the DataSource from JNDI         InitialContext ctx = new InitialContext();         // if this statement fails, NamingException is thrown         ds = (DataSource)ctx.lookup(datasource);         // get DB connection and perform SQL operations         conn = ds.getConnection();         // User variables         String validUserID = null;         String validFName = null;         String validLName = null;         String validEmail = null;         // get DB connection and perform SQL operations         conn = ds.getConnection();         stmt = conn.prepareStatement(PERSON_QUERY);         stmt.setString(1, userID);         stmt.setString(2, password);         results = stmt.executeQuery();         // iterate through the results         if (results.next())         {             validUserID = results.getString("id");             validFName = results.getString("first_name");             validLName = results.getString("last_name");             validUser = new Person(validUserID, validFName, validLName);         }     }     // handle SQL errors     catch(SQLException e)     {         e.printStackTrace(System.err);         throw new RuntimeException("Database Error: " + e.getMessage());     }     // handle JNDI errors     catch(NamingException e)     {         throw new RuntimeException("JNDI Error: " + e.getMessage());     }     // clean up resources     finally     {         doClosure(results, stmt, conn);     }     // if the user was not found, throw ObjectNotFoundException     if(validUser == null)     {         throw new ObjectNotFoundException();     }     return validUser; } protected void doClosure(ResultSet results, PreparedStatement stmt,     Connection conn) {     if (results != null)     {         try { results.close(); }         catch (SQLException e) { e.printStackTrace(System.err); }     }     if (stmt != null)     {         try { stmt.close(); }         catch (SQLException e) { e.printStackTrace(System.err); }     }     if (conn != null)     {         try         {             System.out.println("R18Resources.conn before close: " + conn);             conn.close();             System.out.println("R18Resources.conn after close: " + conn);             System.out.println("R18Resources.conn is closed? " +                 conn.isClosed());         }         catch (SQLException e)         {             System.out.println("R18Resource conn close error: " +                 e.getMessage());         }     } }
    as you can see, i've added some print statements in my connection closure block. based on my output log, each connection is being properly closed and i am not encountering any errors during that closing block.
    any ideas???
    Message was edited by:
    millerand

    Please try the following code in your doClosure method. Replace your code with the following code.
    public void doClosure(ResultSet pResultSet, Statement pStmt, Connection pConn) throws Exception {
    try {
                   if (pResultSet != null) {
                        pResultSet.close();
                        pResultSet = null;
              } catch (SQLException se) {
              logger.error( se );
              } finally {
                   try {
                        if (pStmt != null) {
                             pStmt.close();
                             pStmt = null;
                   } catch (SQLException se) {
                   logger.error(se);
                   } finally {
                        try {
                             if (pConn != null) {
                                  pConn.close();
                                  pConn = null;
                        } catch (SQLException se) {
                        logger.error(se);
    And let me know if you still face this issue. What is the application server you are using?

  • Requested resource not available - can not find servlet

    I have an application in tomcat that uses jsp and servlets. The JSP works fine, but I keep getting a "requested resource not available" erroe when i try to access a servlet. My jsp is in a directory called ProjectManager, and my servlet classes are in WEB-INF/classes inside ProjectManager and are in a package called pmt.
    I can access my jsp using localhost:8080/ProjectManager/index.jsp, but I cannot seem to access the servlets, regardless of the URL I try. I've tried adding a servlet-name and a servlet-mapping in the web.xml file but I'm still stuck.
    Does anybody have any ideas?
    Thanks in advance.

    What jar files should be in the library? I have the following:
    commons-lang-2.4(2).jar
    mysqlconnector-java-5.1.6.bin.jar
    webserviceutils.jar
    Here is my web.xml as I too am getting "the request resource....cannot be found:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
         <display-name>
         classBlog</display-name>
         <servlet>
              <description>
              </description>
              <display-name>
              DriverServlet</display-name>
              <servlet-name>DriverServlet</servlet-name>
              <servlet-class>
              edu.ec.web.classBlog.DriverServlet</servlet-class>
         </servlet>
         <servlet>
              <description>
              </description>
              <display-name>
              AddEntityServlet</display-name>
              <servlet-name>AddEntityServlet</servlet-name>
              <servlet-class>
              com.ec.blog.web.AddEntityServlet</servlet-class>
         </servlet>
         <servlet>
              <description>
              </description>
              <display-name>
              DeleteEntityServlet</display-name>
              <servlet-name>DeleteEntityServlet</servlet-name>
              <servlet-class>
              com.ec.blog.web.DeleteEntityServlet</servlet-class>
         </servlet>
         <servlet>
              <description>
              </description>
              <display-name>
              EditEntityServlet</display-name>
              <servlet-name>EditEntityServlet</servlet-name>
              <servlet-class>
              com.ec.blog.web.EditEntityServlet</servlet-class>
         </servlet>
         <servlet>
              <description>
              </description>
              <display-name>
              ViewBlogServlet</display-name>
              <servlet-name>ViewBlogServlet</servlet-name>
              <servlet-class>
              com.ec.blog.web.ViewBlogServlet</servlet-class>
         </servlet>
         <servlet>
              <description>
              </description>
              <display-name>
              ViewEntityServlet</display-name>
              <servlet-name>ViewEntityServlet</servlet-name>
              <servlet-class>
              com.ec.blog.web.ViewEntityServlet</servlet-class>
         </servlet>
         <servlet>
              <description>
              </description>
              <display-name>
              AddEntryServlet</display-name>
              <servlet-name>AddEntryServlet</servlet-name>
              <servlet-class>
              com.ec.blog.web.AddEntryServlet</servlet-class>
         </servlet>
         <servlet>
              <description>
              </description>
              <display-name>
              DeleteEntryServlet</display-name>
              <servlet-name>DeleteEntryServlet</servlet-name>
              <servlet-class>
              com.ec.blog.web.DeleteEntryServlet</servlet-class>
         </servlet>
         <servlet>
              <description>
              </description>
              <display-name>
              EditEntryServlet</display-name>
              <servlet-name>EditEntryServlet</servlet-name>
              <servlet-class>
              com.ec.blog.web.EditEntryServlet</servlet-class>
         </servlet>
         <servlet>
              <description>
              </description>
              <display-name>
              ViewEntryServlet</display-name>
              <servlet-name>ViewEntryServlet</servlet-name>
              <servlet-class>
              com.ec.blog.web.ViewEntryServlet</servlet-class>
         </servlet>
         <servlet-mapping>
              <servlet-name>DriverServlet</servlet-name>
              <url-pattern>/DriverServlet</url-pattern>
         </servlet-mapping>
         <servlet-mapping>
              <servlet-name>AddEntityServlet</servlet-name>
              <url-pattern>/AddEntityServlet</url-pattern>
         </servlet-mapping>
         <servlet-mapping>
              <servlet-name>DeleteEntityServlet</servlet-name>
              <url-pattern>/DeleteEntityServlet</url-pattern>
         </servlet-mapping>
         <servlet-mapping>
              <servlet-name>EditEntityServlet</servlet-name>
              <url-pattern>/EditEntityServlet</url-pattern>
         </servlet-mapping>
         <servlet-mapping>
              <servlet-name>ViewBlogServlet</servlet-name>
              <url-pattern>/ViewBlogServlet</url-pattern>
         </servlet-mapping>
         <servlet-mapping>
              <servlet-name>ViewEntityServlet</servlet-name>
              <url-pattern>/ViewEntityServlet</url-pattern>
         </servlet-mapping>
         <servlet-mapping>
              <servlet-name>AddEntryServlet</servlet-name>
              <url-pattern>/AddEntryServlet</url-pattern>
         </servlet-mapping>
         <servlet-mapping>
              <servlet-name>DeleteEntryServlet</servlet-name>
              <url-pattern>/DeleteEntryServlet</url-pattern>
         </servlet-mapping>
         <servlet-mapping>
              <servlet-name>EditEntryServlet</servlet-name>
              <url-pattern>/EditEntryServlet</url-pattern>
         </servlet-mapping>
         <servlet-mapping>
              <servlet-name>ViewEntryServlet</servlet-name>
              <url-pattern>/ViewEntryServlet</url-pattern>
         </servlet-mapping>
         <welcome-file-list>
              <welcome-file>index.html</welcome-file>
              <welcome-file>index.htm</welcome-file>
              <welcome-file>index.jsp</welcome-file>
              <welcome-file>default.html</welcome-file>
              <welcome-file>default.htm</welcome-file>
              <welcome-file>default.jsp</welcome-file>
         </welcome-file-list>
    </web-app>

  • Resource not available error for JSP application

    Hi
    i have developed J2EE - Web Module DC with JSP pages. I built the .WAR file of this application. Now I created J2ee - Enterprise application DC which references above WAR file and created EAR file. This EAR was then deployed on the server and RC was 0. but when i try to access the JSP page, it is giving me "The Requested Resource is not available".
    this error comes only when i deploy the DC thru NWDI. if I deploy it directly from NWDS, i can access the JSP.
    Please guide.
    Deepak

    The Deployment is not successful, the activity associated with the deployment is still in import queue.
    Check in http://<hostname>:<port>/TCS/Deployer and check in <namespace>_<trackname>_D and see if the activity is in import queue.
    Trigger the deployment manually.
    Hope this helps.
    Cheers-
    Pramod

  • Call Function STARTING NEW TASK ----- Resource not available

    Hi All,
    I am calling a Function Module in new task using STARTING NEW TASK.
    If the resources are not available for the Dialog Process to start, for how long will SAP keep on trying to acquire the resources and in case if it fails to acquire resource, then what will happen
    Regards,
    Abhishek

    Hi,
    From memory (as it is a long time since I've done this) you can call another function module or SAP command that will tell you how many work processes are currently available before you actually then start the new task.  This can help you to avoid this issue and also stop you from eating up all available work processes on a system which will annoy all other users!
    I think this is the FM
    CALL FUNCTION 'SPBT_INITIALIZE'
      EXPORTING
        group_name     = 'parallel_generators'
      IMPORTING
        free_pbt_wps   = w_free_processes
      EXCEPTIONS
        OTHERS         = 1.
    Gareth.

  • Resource not available error with tomcat 5.5.26

    hi
    to all forum members,i am a new member of this forum.
    i have a problem with running my servlet on apache tomcat/5.5.26 in window xp enviorenment.
    when i am running my servlet as typing URL http://localhost:8080/mukesh_test/mks , i am gettig error "
    the requested resource(/mukesh_trst/mks) is not available
    my servlet path is webapps/mukesh_test/WEB-INF/classes/mks.class
    my web.xml is this
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    version="2.4">
    <display-name>Welcome to Tomcat</display-name>
    <description>
    Welcome to Tomcat
    </description>
    <!-- JSPC servlet mappings start -->
    <servlet>
    <servlet-name>org.apache.jsp.index_jsp</servlet-name>
    <servlet-class>org.apache.jsp.index_jsp</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>org.apache.jsp.index_jsp</servlet-name>
    <url-pattern>/index.jsp</url-pattern>
    </servlet-mapping>
    <!-- JSPC servlet mappings end -->
    <servlet>
    <servlet-name>mks</servlet-name>
    <servlet-class>mukesh_test.WEB-INF.classes.mks</servlet-class>
    <init-param>
    <param-name>debug</param-name>
    <param-value>0</param-value>
    </init-param>
    <load-on-startup>2</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>mks</servlet-name>
    <url-pattern>/mukesh_test/mks</url-pattern>
    </servlet-mapping>
    </web-app>
    plz help me out guys...

    <servlet>
      <servlet-name>mks</servlet-name>
      <servlet-class>mukesh_test.WEB-INF.classes.mks</servlet-class>
    </servlet>
    <servlet-mapping>
      <servlet-name>mks</servlet-name>
      <url-pattern>/mukesh_test/mks</url-pattern>
    </servlet-mapping>1) To avoid confusion, I would not use mks for the <servlet-name>. It's a fake name internal to your web.xml file anyway, so be creative and use something like: Flying Tigers.
    2)
    <servlet>
      <servlet-name>Flying Tigers</servlet-name>
      <servlet-class>mukesh_test.WEB-INF.classes.mks</servlet-class>
    </servlet>
    <servlet-mapping>
      <servlet-name>Flying Tigers</servlet-name>
      <url-pattern>/mukesh_test/mks</url-pattern>
    </servlet-mapping>The stuff between the <servlet-class> tags is wrong. You need to put the "fully qualified class name of your class" between the <servlet-class> tags. For instance, if your file mks.java (why are you using lower case names for classes?) does not have a package statement at the top of the file, then the fully qualified name of your class is: mks. On the other hand, if mks.java has a package statement at the top of the file like this:
    package com.example;
    then the fully qualified name of your class would be: com.example.mks. In addition, if you had that package statement at the top of mks.java, your .class file would need to be placed in the directory: .../mukesh_test/WEB-INF/classes/com/example/.
    3)
    <servlet>
      <servlet-name>Flying Tigers</servlet-name>
      <servlet-class>mks</servlet-class>
    </servlet>
    <servlet-mapping>
      <servlet-name>Flying Tigers</servlet-name>
      <url-pattern>/mukesh_test/mks</url-pattern>
    </servlet-mapping>The url-pattern is also fake. The whole idea is to hide your actual directory structure from hackers, so specifying your real directory structure there means that the url will also appear on your web page. And if the url appears on your web page, anyone can see it by clicking on View/Source in their browser. Use a fake directory and a fake file name instead:
    <servlet>
      <servlet-name>Flying Tigers</servlet-name>
      <servlet-class>mks</servlet-class>
    </servlet>
    <servlet-mapping>
      <servlet-name>Flying Tigers</servlet-name>
      <url-pattern>/Animals.do</url-pattern>
    </servlet-mapping>That means your html page would call the servlet using the url: Animals.do. The extension .do is a common extension given to fake file names.
    4) There's a forum here specifically for servlets called: Java Servlets.

  • Resource not available error in servlet

    This is my directory structure C:\Program Files\Apache Software Foundation\Tomcat 4.1\webapps\VSG\WEB-INF and here i have in web-inf my web.xml which looks like this
    <web-app>
    <servlet servlet-name>Myservlet</servlet-name>
    <servlet-class>Myservlet<servlet-class>
    </servlet>
    <servlet-mapping >
    <servlet-name>Myservlet</servlet-name>
    <url-pattern>/myservlet</url-pattern>
    </servlet-mapping>
    </web-app>
    while my class file is at this position C:\Program Files\Apache Software Foundation\Tomcat 4.1\webapps\vsg\WEB-INF\classes
    Now i run my servlet in browser as
    http://localhost:8080/vsg/myservlet
    it gives me error that resource is not available.... any idea on this ???

    ganeshmb wrote:
    Package-less classes are no longer supported .. .. when you use Tomcat 4.1 with Java 1.4 or newer due to a security bugfix. Since Tomcat 5.0 it is been "fixed" by an internal workaround.
    Still, putting classes in a package is highly recommended. You can only access classes from another packages when you explicitly import it. As you cannot import from the default package, the classes in the default package remains unaccessible for classes in another packages (like the application server implementation classes).

  • Requested resource not available error

    I am using Apache Tomcat 4.1.31 and have JDK 1.4.
    The default JSP and servlet examples that come with Tomcat are running,
    but the problem is my own applications are not running. I have kept the application in the webapps directory but when I enter the URL for example for an application named 'myapp' saved in the webapps/myapp directory I get an error page displaying the following error message:
    HTTP Status 404 - myapp/filename type Status report
    message myapp/filename
    description The requested resource (myapp/filename) is not available.
    Apache Tomcat/4.1.27
    the examples folder and myapp folder is in the same directory..
    /usr/local/tomcat/webapps/
    please help me..thanks in advance for your help..

    do you error like this:
    HTTP Status 404 - /myapp
    type Status report
    message /myapp
    description The requested resource (/myapp) is not available.
    Apache Tomcat/5.5.15

  • SimpleRepositoryManager resource not available error

    Environment: Netweaver 2004, EP6.40 SP16
    I've deployed the sample SimpleRepositoryManager as is, only changing the OSRoot.  It is working partially - I can traverse folders and list files, but when I click on a document it gives me a 404 error: "The requested resource is not available".  I will appreciate any help
    Thanks

    Hi Leon,
    > EP6.40 SP16
    Have you installed KMC Patch 3 for SP16? If not, this would be the problem... See SAP Note 938124.
    Hope it helps
    Detlev

  • Can not import ACE module to ANM

    Hello,
    Good day.
    I recently facing an interesting problem.
    We are running ANM 5.1.0 to manage our LB contexts, those contexts are configured on ACE20-MOD-K9 module which installed in Catalyst6500 switch. Our installation is like this, two ACE20-MOD-K9 modules installed into same Catalyst6513 different slots. And  those two ACE modules serves different Data Halls, contexts configured on those modules are completely seperated, different VLAN, different subnet no relation at all.
    I'm able to import the catalyst chassis into ANM and under Config>Guided Setup>Import Device>Modules, I'm able to see both ACE modules but only one module able to be imported, another one I can not even choose it. There are slightly difference those two modules show themselves in that page. The one I'm able to import shows exactly it's module type and version number but another one is showing someting strange.
    Slot#      Model                     Type            Serial #      State                 Version                Description                                      #VC
    3            ACE20-MOD-K9      ACE v2.3      XXXXXX      up                     A2(3.5)                Application Control Engine Module      28
    9            ACE20-MOD-K9      Module         XXXXXX      Not Imported      ace2t_main_d      Application Control Engine Module      N/A  <---problem module
    Does any was facing samiliar problem?
    Thanks

    I think I found something related to my issue.
    In ANM operating Guidance,section"Importing ACE Modules after the Host Chassis has been Imported" mentioned some restriction. The module in slot 9 actually has samiliar situation, show module commands shows that Catalyst chassis doesn't really recognize the software version that might caused ANM not able to figure out if that module is supported or not so it makes a simple decision deny import. I will try to reboot that module see if we can fix this issue.
    "Guidelines and Restrictions
    ANM 3.0 and greater releases do not support the importing of an ACE module that contains an A1(6.x) software release or an ACE appliance that contains an A1(7.x) or A1(8.x) software release. If you attempt to import an ACE that supports one of these releases, ANM displays a message to instruct you that it failed to import the unrecognized ACE configuration and that device discovery failed.
    However, if you perform an ANM upgrade (for example, from ANM 2.2 to ANM 3.0), and the earlier ANM release contained an inventory with an ACE module that supported the A1(6x) software release or an ACE appliance that supported the A1(7.x) or A1(8.x) software release, ANM 3.0 (and greater) allows the A1(x) software release to reside in the ANM database and will support operations for the release. ANM prevents a new import of an ACE module or ACE appliance that contains the unsupported software version.
    We strongly recommend that you upgrade your ACE module or ACE appliance to a supported ACE software release, and that you instruct ANM to recognize the updated release. See the "Instructing ANM to Recognize an ACE Module Software Upgrade" section.
    See the Supported Device Tables for the Cisco Application Networking Manager for a complete list of supported ACE module and ACE appliance software releases."
    http://www.cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/application_networking_manager/5.2/user/guide/UG_manage_devices.html

  • Show commands not showing - ACE module.

    Hello
    After a few days of working fine the systems stopped answering SNMP and then the CLI began having problems with some commands. The easiest to see being "show running-config". At this point it shows nothing. It just waits and does nothing. I have to hit Ctrl-C to bring back the prompt.
    The applications being balanced are working fine but the management is not.
    The resources were allocated this way:
    resource-class ADMIN
    limit-resource all minimum 6.00 maximum equal-to-min
    resource-class CLA
    limit-resource all minimum 46.00 maximum unlimited
    resource-class MAS
    limit-resource all minimum 24.00 maximum equal-to-min
    resource-class OL
    limit-resource all minimum 24.00 maximum equal-to-min
    The version running is A2(1.3) and the same thing happened with an earlier release.
    It's a HA scenario and the problem appeared so far only in the CLA context which was active on different modules and did the same on both. That was just a test to discard hardware problems.
    One of the messages we saw was:
    ACE-CER/Admin# show resource usage summary
    Error: Called API timed out
    We are unable to show resources, running-config, etc. for the active context CLA.
    Do you have a suggestion? Is it healthy to allocate “unlimited” as the upper limit? Could this be the problem?
    Thanks a lot.
    Guido

    Gilles
    If you mean a “get” for a probe, in this context I only have one and it's not that big. It goes like this:
    request method get url http://www.3x.6x.com/diario/hoy/index.html
    On the other hand, in a different context I have nine of these:
    request method get url http://nap10.16x.int.6x.com/buscar/juguete
    3x, 6x and 16x mean that amount of letters.
    Are these long enough?
    To your knowledge, is this condition going to spread further and disrupt production traffic?
    So once you have reached this condition whether caused by "gets" or not, would you recommend opening a TAC case?
    Thanks a lot!
    Guido

  • Weblogic 6.1 sp1 jdbc connection to SQL Srv 7; receiving resources not available

    We've been running some load balancing testing on our website and at the high end
    of the number of concurrent users, we begin to receive "QLException: java.sql.SQLException:
    weblogic.common.ResourceException: No resources available" this is usually around
    the 40 concurrent user mark. I've set the max JDBC connections to around 50,
    initial connections to 20, capacity increment to 2 and the shrink period to 1
    minute (though we've had that at 10, 15, and 59 minutes)...looking for suggestions
    on problems. Currently using wblogic.jdbc.mssqlserver4.Driver and weblogicis
    running on Linux

    Will Darton wrote:
    We've been running some load balancing testing on our website and at the high end
    of the number of concurrent users, we begin to receive "QLException: java.sql.SQLException:
    weblogic.common.ResourceException: No resources available" this is usually around
    the 40 concurrent user mark. I've set the max JDBC connections to around 50,
    initial connections to 20, capacity increment to 2 and the shrink period to 1
    minute (though we've had that at 10, 15, and 59 minutes)...looking for suggestions
    on problems. Currently using wblogic.jdbc.mssqlserver4.Driver and weblogicis
    running on LinuxHi. I would like to see the code that uses connections from the pool. If you code correctly,
    to always close a pool connection regardless of any exception, by the end of every user
    request, then you should need only as many connections in the pool as there are execute
    threads in the server. Do you have more than 50 execute threads?
    Joe

Maybe you are looking for

  • Data is not being downloaded properly in EXCEL

    Hi, When i am tring to download any data from SAP , for example user list from Tcode SM04 to excel, its coming in one single row from prodction server , whereas its working fine from IDES Srver. please assist , Thanks, Irfan.

  • Problem with BAPI_ALM_ORDEROPER_GET_LIST DURATION_NORMAL_UNIT

    I am using this BAPI to return a list of PM work order operations from SAP using a JRA connector. I have had good success with the BAPI so far, but have noticed a problem with the DURATION_NORMAL_UNIT returned by the BAPI. If the duration unit is set

  • Can't find older mail from archived install

    I recently upgraded the OS on my iBook G4 to Tiger - and performed an archived install just to be safe. After installation was successful, most of my preferences transferred with the upgrade seamlessly (Calendar, Address Book items, bookmarks etc.) B

  • Convert avi to dvd r

    Guidane on converting avi to dvd r file format appreciated.

  • Looking Wm interview questions

    Hi all, Could any one plzz help me find WM interview questions.... Thank you, bye....