Diagnostic Configuration

Hi ,
While doing Configure Diagnostic  , I am getting the following error:
A failure occured while importing Java SSO ticket certificate in ABAP stack
Step SSO Details
Found SID for SSO ACL entry : SM1
Found login.ticket_client for SSO ACL entry : 000
The Read entry permission on TicketKeystore/SAPLogonTicketKeypair-cert was given to sap.com/tcwebadministratorsolmandiag/servlet_jsp/smd/root/WEB-INF/lib/SetupLib.jar
The TicketKeystore/SAPLogonTicketKeypair-cert was succesfully read (620 bytes)
ABAP Certificate was successfully retrieved (589 bytes)
A failure occured while importing ABAP SSO ticket certificate in ABAP stack
!! Exception : Operating system cannot close file /usr/sap/SQ1/DVEBMGS00/sec/TEMP_4E48030AFF784340E1008000C0A80137.pse
A failure occured while importing Java SSO ticket certificate in ABAP stack
I am doing configurations in Solution manager 7.0 Ehp1.
Kindly help.
Regards,
Architha

Many a thanks Sri for your help.
I have resolved the error. I restarted my host agent and SMD agent . After this I did the Diagnostic configuration again. This worked.
Thanks and Regards,
Architha

Similar Messages

  • Problem in "Diagnostic configuration" in Solution Manager 7      ehp1

    Hi All
    I try to execute "Diagnostic configuration" step in my solution manager 7.0 ehp1.
    I have executed all the basic configuration in my SM.
    I executed transaction solman_setup -> select step "Automatic
    Configuration" -> "Diagnostic configuration" and appear this error
    message:
    Service cannot be reached
    What has happened?
    URL
    http://<hostname>:8000/webdynpro/dispatcher/sap.com/tcsmdnavigation/StandaloneApp call was terminated because the corresponding
    service is not available.
    Must I activate any service from transaction sicf? if yes, which service must I activate?
    Thanks in advance for collaboration.
    best regards
    giovanni

    Hi!
    We are facing the same problem.
    http://xxxxxxxxxxxxx::8000/webdynpro/dispatcher/sap.com/tcsmdnavigation/StandaloneApp?APP_ID=ADMIN_INTROSCOPE_AGENT
    500   Internal Server Error
    SAP NetWeaver Application Server 7.00/Java AS 7.00 
    Failed to process request. Please contact your system administrator.
    Did you find any solution to the issue? The note 1276263 is not availible.
    /Anton Renberg

  • SMSY-Diagnostic Configuration for SAP SRM 5.0

    Hi!
    I would like to set up the Diagnostics for SAP SRM 5.0.
    SAP SRM 5.0 has ABAP and J2EE stack as well (and TREX).
    When I define the system as SAP SRM 5.0 in tcode SMSY and assign the Java system component of type SAP NetWeaver/SAP NetWeaver 04/Application Server Java:
    Unfortunately when I start SMD Setup wizard no java relevant components are visible.
    Furthermore I do not get any data under Workload Analysis and receive:
    The solution / systems you selected do not contain any software components currently supported by E2E Workload Analysis
    My question is:
    What is the right definition of SAP SRM 5.0 for Solution Manager Diagnostics?
    Thank you very much
    regards
    Thom

    Before you can move forward with SMD, you need to make sure the following components are working....
    1. SLD is running on Solution Manager and SMSY is able to read from it.
    2. The SCM system is registered with the SLD
    3. You created a landscape which has a leading role that correlates to the role for your SCM system in SMSY.
    4. You've installed the SMD agent on the CM system
    Please confirm that you have completed the above.

  • Unable to configure Azure Diagnostic

    Hello,
    Does anyone know how to configure Azure Diagnostic, I found a link (http://msdn.microsoft.com/library/azure/dn186185.aspx) but it seems the "Edit" button on Custom Plan is disabled. There's a hint there, that I have to select "Add Diagnostic
    Configuration" from the property of Role. However I still cannot find this menu (see picture below)
    Thanks

    hi Fendy,
    You need add the Diagnostic Configuration file into your project. Please try those steps:
    1.Right click and select the "Open folder in File explore"
    2.Please check this folder "WebRoleContent". If it is not  existed,  please create the "WebRoleContent" folder.
    3.Create the file "diagnostics.wadcfg" into "WebRoleContent" folder. You could use xml structure like this :
    <?xml version="1.0" encoding="utf-8"?>
    <DiagnosticMonitorConfiguration configurationChangePollInterval="PT1M" overallQuotaInMB="4096" xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration">
    <DiagnosticInfrastructureLogs />
    <Directories>
    <IISLogs container="wad-iis-logfiles" directoryQuotaInMB="1024" />
    <CrashDumps container="wad-crash-dumps" />
    </Directories>
    <Logs bufferQuotaInMB="1024" scheduledTransferPeriod="PT1M" scheduledTransferLogLevelFilter="Error" />
    <PerformanceCounters bufferQuotaInMB="512">
    < <PerformanceCounterConfiguration counterSpecifier="\.NET CLR Remoting(_Global_)\Remote Calls/sec" sampleRate="PT1S" />
    </PerformanceCounters>
    <WindowsEventLog bufferQuotaInMB="1024" scheduledTransferPeriod="PT1M" scheduledTransferLogLevelFilter="Error">
    <DataSource name="Application!*" />
    </WindowsEventLog>
    </DiagnosticMonitorConfiguration>
    And then save file.
    4.You could refresh your solution. and try to edit the performance counter again.
    By the way, I also suggest you make sure your Azure SDK was installed right.
    Please try it!
    Any questions, please let me know free.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to revert to diagnostics.wadcfg configuration from wad-control-container blob.

    Hello all,
    In our project at some point in the past we have enabled Diagnostics module for getting our log entries in Azure Storage. We added <Import moduleName="Diagnostics" /> to ServiceDefinition.csdef file and then enabled logs transfering and performance
    counters gathering in WebRole.OnStart method via DiagnosticMonitor.Start():
    DiagnosticMonitorConfiguration cfg = DiagnosticMonitor.GetDefaultInitialConfiguration();
    cfg.OverallQuotaInMB = 8192;
    cfg.Logs.ScheduledTransferLogLevelFilter = LogLevel.Verbose;
    cfg.Logs.ScheduledTransferPeriod = TimeSpan.FromSeconds(30);
    cfg.Logs.BufferQuotaInMB = 1000;
    // Define performance counter configuration.
    foreach (var counterName in PERFORMANCE_COUNTERS_NAMES)
    PerformanceCounterConfiguration perfCounterConfiguration = new PerformanceCounterConfiguration();
    perfCounterConfiguration.CounterSpecifier = counterName;
    perfCounterConfiguration.SampleRate = TimeSpan.FromSeconds(5);
    cfg.PerformanceCounters.DataSources.Add(perfCounterConfiguration);
    cfg.PerformanceCounters.BufferQuotaInMB = 1024;
    cfg.PerformanceCounters.ScheduledTransferPeriod = TimeSpan.FromMinutes(1);
    DiagnosticMonitor.Start("Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString", cfg);
    Then using Windows Azure Management Portal we activated Verbose monitoring mode and added several additional performance counters there in order to try the feature. I assume that doing that through the portal we actually modified wad-control-container blob
    so we got new performace counters configuration.
    Later we've realized that it would be better to manage all diagnostic configuration in diagnostics.wadcfg. We removed the code from role start and added diagnostics.wadcfg file to the project that declares the same we did before via code. When we redeployed
    we saw that the configuration remained as it was before - it didn't change at all. It still included new performance counters we added through the portal. It is because the order of precedence, where wad-control-container blob has the highest priority. So
    we deleted all the blobs from wad-control-container in order to revert back to diagnostics.wadcfg and redeployed the service. New blob was created in wad-control-container. It included everything from diagnostics.wadcfg as we expected and
    again we saw these custom performance counters we added via portal time ago. See below the blob content:
    <?xml version="1.0"?>
    <ConfigRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <DataSources>
    <OverallQuotaInMB>8192</OverallQuotaInMB>
    <Logs>
    <BufferQuotaInMB>1024</BufferQuotaInMB>
    <ScheduledTransferPeriodInMinutes>1</ScheduledTransferPeriodInMinutes>
    <ScheduledTransferLogLevelFilter>Verbose</ScheduledTransferLogLevelFilter>
    </Logs>
    <DiagnosticInfrastructureLogs>
    <BufferQuotaInMB>1024</BufferQuotaInMB>
    <ScheduledTransferPeriodInMinutes>5</ScheduledTransferPeriodInMinutes>
    <ScheduledTransferLogLevelFilter>Warning</ScheduledTransferLogLevelFilter>
    </DiagnosticInfrastructureLogs>
    <PerformanceCounters>
    <BufferQuotaInMB>4096</BufferQuotaInMB>
    <ScheduledTransferPeriodInMinutes>5</ScheduledTransferPeriodInMinutes>
    <Subscriptions>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\Memory\Available Mbytes</CounterSpecifier>
    <SampleRateInSeconds>10</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\Processor(_Total)\% Processor Time</CounterSpecifier>
    <SampleRateInSeconds>10</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Requests/Sec</CounterSpecifier>
    <SampleRateInSeconds>5</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Requests Executing</CounterSpecifier>
    <SampleRateInSeconds>5</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Requests In Application Queue</CounterSpecifier>
    <SampleRateInSeconds>5</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Requests Failed</CounterSpecifier>
    <SampleRateInSeconds>30</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Requests Timed Out</CounterSpecifier>
    <SampleRateInSeconds>30</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET\Requests Rejected</CounterSpecifier>
    <SampleRateInSeconds>30</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET\Worker Process Restarts</CounterSpecifier>
    <SampleRateInSeconds>600</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <!-- OLD unnecessary counters that were added manually through the portal START-->
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\Memory\Available MBytes</CounterSpecifier>
    <SampleRateInSeconds>180</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\Web Service(_Total)\ISAPI Extension Requests/sec</CounterSpecifier>
    <SampleRateInSeconds>180</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\Web Service(_Total)\Bytes Total/Sec</CounterSpecifier>
    <SampleRateInSeconds>180</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET Applications(__Total__)\Errors Total/Sec</CounterSpecifier>
    <SampleRateInSeconds>180</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <PerformanceCounterConfiguration>
    <CounterSpecifier>\ASP.NET\Requests Queued</CounterSpecifier>
    <SampleRateInSeconds>180</SampleRateInSeconds>
    </PerformanceCounterConfiguration>
    <!-- OLD unnecessary counters that were added manually through the portal END-->
    </Subscriptions>
    </PerformanceCounters>
    <WindowsEventLog>
    <BufferQuotaInMB>0</BufferQuotaInMB>
    <ScheduledTransferPeriodInMinutes>0</ScheduledTransferPeriodInMinutes>
    <Subscriptions />
    <ScheduledTransferLogLevelFilter>Undefined</ScheduledTransferLogLevelFilter>
    </WindowsEventLog>
    <Directories>
    <BufferQuotaInMB>256</BufferQuotaInMB>
    <ScheduledTransferPeriodInMinutes>5</ScheduledTransferPeriodInMinutes>
    <Subscriptions>
    <DirectoryConfiguration>
    <Path>C:\Resources\directory\ac17d63416cf41c8acfebbbcb3d90052.Mbo.Services.Web.DiagnosticStore\CrashDumps</Path>
    <Container>wad-crash-dumps</Container>
    <DirectoryQuotaInMB>256</DirectoryQuotaInMB>
    </DirectoryConfiguration>
    </Subscriptions>
    </Directories>
    </DataSources>
    <IsDefault>false</IsDefault> <!-- DEFAULT IS SET TO FALSE AGAIN -->
    </ConfigRequest>
    We tried to directly edit this XML. We removed redundant counters and changed IsDefault to "true" value in the XML and updated the blob in the wad-control-container using Azure Management Studio. Next time we redeployed the service - the counters
    again appeared in the configuration and IsDefault reverted to false again.
    Does anyone know how to permanently revert to managing diagnostics configuration only via diagnostics.wadcfg file and force the Azure to forget about manual edits we did via the portal?
    We use Azure SDK 1.4. 
    Thanks in advance for any insights!
    Vitaly

    Hi Vitaly,
    Did you try to change diagnostics configuration in VS? Like this:
    I suggest you could click the "Edit", and select your diagnostics metrics. Also, I want you double check your  re-deployment  project whether is right. Please try it.
    By the way, I suggest you could upgrade your SDK version and refer to this sample:
    http://www.windowsazure.com/en-us/develop/net/common-tasks/performance-profiling/
    http://msdn.microsoft.com/en-us/library/windowsazure/hh411542.aspx
    Any question or result, please let me know.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Diagnostic doesn't work properly

    Hi all,
    we have a problem with the diagnostic. Both locally and remotely the diagnostic tool seems to write the diagnostic information only when "it wants" (sometime it does it, sometimes doesn't).
    Here our configuration file:
    ServiceDefinition.csdef
    <ServiceDefinition name="Cryptobrand_compress" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition" schemaVersion="2014-01.2.3">
      <WebRole name="Compression" vmsize="ExtraSmall">
        <Sites>
          <Site name="Web">
            <Bindings>
              <Binding name="Endpoint1" endpointName="Endpoint1" />
            </Bindings>
          </Site>
        </Sites>
        <Endpoints>
          <InputEndpoint name="Endpoint1" protocol="http" port="80" />
        </Endpoints>
        <Imports>
          <Import moduleName="Diagnostics" />
        </Imports>
        <LocalResources>
          <LocalStorage name="Compression.svclog" sizeInMB="1000" cleanOnRoleRecycle="false" />
        </LocalResources>
      </WebRole>
    </ServiceDefinition>
    ServiceConfiguration.Local.cscfg
    <ServiceConfiguration serviceName="Cryptobrand_compress" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration" osFamily="4" osVersion="*" schemaVersion="2014-01.2.3">
      <Role name="Compression">
        <Instances count="1" />
        <ConfigurationSettings>
          <Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value="UseDevelopmentStorage=true" />
        </ConfigurationSettings>
      </Role>
    </ServiceConfiguration>
    ServiceConfiguration.Cloud.cscfg
    <ServiceConfiguration serviceName="Cryptobrand_compress" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration" osFamily="4" osVersion="*" schemaVersion="2014-01.2.3">
      <Role name="Compression">
        <Instances count="1" />
        <ConfigurationSettings>
          <Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value="DefaultEndpointsProtocol=https;AccountName=betatwo;AccountKey=OUR_ACCOUNT_KEY==" />
        </ConfigurationSettings>
      </Role>
    </ServiceConfiguration>
    Web.config
    <configuration>
      <!--  To collect diagnostic traces, uncomment the section below or merge with existing system.diagnostics section.
            To persist the traces to storage, update the DiagnosticsConnectionString setting with your storage credentials.
            To avoid performance degradation, remember to disable tracing on production deployments.  -->
      <system.diagnostics>     
        <sharedListeners>
          <add name="AzureLocalStorage" type="Compression.AzureLocalStorageTraceListener, Compression"/>
        </sharedListeners>
        <sources>
          <source name="System.ServiceModel" switchValue="Verbose, ActivityTracing">
            <listeners>
              <add name="AzureLocalStorage"/>
            </listeners>
          </source>
          <source name="System.ServiceModel.MessageLogging" switchValue="Verbose">
            <listeners>
              <add name="AzureLocalStorage"/>
            </listeners>
          </source>
        </sources> 
        <trace>
          <listeners>
            <add type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
              name="AzureDiagnostics">
              <filter type="" />
            </add>
          </listeners>
        </trace>
      </system.diagnostics>
      <system.web>
        <compilation debug="true" targetFramework="4.5.1" />
      </system.web>
      <system.serviceModel>
        <behaviors>
          <serviceBehaviors>
            <behavior>
              <!-- To avoid disclosing metadata information, set the value below to false before deployment -->
              <serviceMetadata httpGetEnabled="true"/>
              <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
              <serviceDebug includeExceptionDetailInFaults="false"/>
            </behavior>
          </serviceBehaviors>
        </behaviors>
        <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
      </system.serviceModel>
      <system.webServer>
        <modules runAllManagedModulesForAllRequests="true"/>
        <!--
            To browse web app root directory during debugging, set the value below to true.
            Set to false before deployment to avoid disclosing web app folder information.
        -->
        <directoryBrowse enabled="true"/>
      </system.webServer>
    </configuration>
    Note: if we try to "View/Update Diagnostic Data" from Server Explorer, we receive the following exception:
    Could not retrieve the current diagnostic configuration or this role instance.
    Thank you for your support.
    Attilio Gelosa

    Hi Attilio,
    Thanks for posting!
    From your description, I suggest you could try those approaches:
    1.enable and configure the setting:
    then, your projects could auto create a new file: diagnostics.wadcfg.
    2. you could add this configuration setting into your code, like this:
    var config = DiagnosticMonitor.GetDefaultInitialConfiguration();
    CloudStorageAccount cloudStorageAccount =
    CloudStorageAccount.Parse(
    RoleEnvironment.GetConfigurationSettingValue(
    "Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString"));
    // Get the perf counters
    config.PerformanceCounters.ScheduledTransferPeriod = TimeSpan.FromMinutes(1);
    // Add the perf counters
    config.PerformanceCounters.DataSources.Add(
    new PerformanceCounterConfiguration
    CounterSpecifier = @"\Processor(_Total)\% Processor Time",
    SampleRate = TimeSpan.FromSeconds(30)
    config.PerformanceCounters.DataSources.Add(
    new PerformanceCounterConfiguration
    CounterSpecifier = @"\Memory\Available MBytes",
    SampleRate = TimeSpan.FromSeconds(30)
    DiagnosticMonitor diagMonitor = DiagnosticMonitor.Start("Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString", config);
    You could add those code into your onstart() method.
    Please see this tutorials:
    http://msdn.microsoft.com/en-us/library/azure/dn186185.aspx
    http://channel9.msdn.com/Events/windowsazure/Windows-AzureConf-2013/Debugging-and-Monitoring-Windows-Azure-Cloud-Services
    http://msdn.microsoft.com/en-us/magazine/ff714589.aspx
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Diagnostic Monitoring Best Practices

    Are there any general best practices for Azure Diagnostics?
    Does enabling all diagnostic monitoring and performance counters have an impact on the performance of the application?
    Does the sample rate on the performance counter have an impact on the performance?
    Does the transfer period have an impact on performance?
    Does the buffer size have an impact on performance, or is it just a matter of how much data you want to retain and store?
    I am looking for a good trade off where diagnostic monitoring does not impact performance while also logging as much information as possible.

    Hi,
    Please have a check on the below link which talks about Commonly reported issues while leveraging Windows Azure Diagnostic configurations and Best Practices.
    http://blogs.msdn.com/b/cie/archive/2013/04/16/commonly-reported-issues-while-leveraging-windows-azure-diagnostic-configurations-and-best-practices.aspx
    More information :
    http://msdn.microsoft.com/en-us/library/azure/hh771389.aspx
    http://blogs.msdn.com/b/davidhardin/archive/2011/02/26/windows-azure-diagnostics-series.aspx
    Hope this helps.
    Regards,
    Mekh.

  • How to ignore diagnostic files when publishing cloud service

    Hello.
    when i am publishing a webRole,
    process is failed because the values in the diagnostic configuration file do not match the Production profile.
    the diagnostic file is for our dev env only.
    is there a flag/attribute that can be used to ignore the diagnostic files when publishing with a specific profile ?  
    Thanks.

    Hi,
    According to your description, you question is related to Web role. I recommend you to ask in the forum below for professional assistance as the members in the Web role would be more familiar with publishing web roles:
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=windowsazuredevelopment
    Best regards,
    Susie
    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]

  • Version 03.03.00.XO - MLS QOS not supported

    Hi All,
    Anyone face the same problem with the following IOS Version?
    MLS QOS is not supported in global command.
    Switch#sh ver
    Cisco IOS Software, IOS-XE Software, Catalyst 4500 L3 Switch Software (cat4500es8-UNIVERSALK9-M), Version 03.03.00.XO RELEASE SOFTWARE (fc2)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2013 by Cisco Systems, Inc.
    Compiled Wed 14-Aug-13 07:26 by prod_rel_team
    Cisco IOS-XE software, Copyright (c) 2005-2013 by cisco Systems, Inc.
    All rights reserved.  Certain components of Cisco IOS-XE software are
    licensed under the GNU General Public License ("GPL") Version 2.0.  The
    software code licensed under GPL Version 2.0 is free software that comes
    with ABSOLUTELY NO WARRANTY.  You can redistribute and/or modify such
    GPL code under the terms of GPL Version 2.0.  For more details, see the
    documentation or "License Notice" file accompanying the IOS-XE software,
    or the applicable URL provided on the flyer accompanying the IOS-XE
    software.
    ROM: 15.1(1r)SG2
    Switch uptime is 6 minutes
    System returned to ROM by power-on
    Running default software
    Jawa Revision 3, RadTrooper Revision 0x0.0x41, Conan Revision 0x1449
    Last reload reason: power-on
    This product contains cryptographic features and is subject to United
    States and local country laws governing import, export, transfer and
    use. Delivery of Cisco cryptographic products does not imply
    third-party authority to import, export, distribute or use encryption.
    Importers, exporters, distributors and users are responsible for
    compliance with U.S. and local country laws. By using this product you
    agree to comply with applicable laws and regulations. If you are unable
    to comply with U.S. and local laws, return this product immediately.
    A summary of U.S. laws governing Cisco cryptographic products may be found at:
    http://www.cisco.com/wwl/export/crypto/tool/stqrg.html
    If you require further assistance please contact us by sending email to
    [email protected].
    License Information for 'WS-X45-SUP8-E'
        License Level: entservices   Type: Permanent
        Next reboot license Level: entservices
    cisco WS-C4506-E (P5040) processor (revision 2) with 4194304K bytes of physical memory.
    Processor board ID FXS1812Q346
    P5040 CPU at 2.2GHz, Supervisor 8-E
    Last reset from PowerUp
    1 Virtual Ethernet interface
    20 Ten Gigabit Ethernet interfaces
    511K bytes of non-volatile configuration memory.
    Configuration register is 0x2101
    SWITCH(config)#mls qos
                         ^
    % Invalid input detected at '^' marker.
    SWITCH(config)#
    SWITCH(config)#?
    Configure commands:
      aaa                         Authentication, Authorization and Accounting.
      access-list                 Add an access list entry
      access-session              Access Sesion Global Configuration Commands
      agent-server                Modify DNS server properties
      alias                       Create command alias
      ancp                        Configure ANCP
      archive                     Archive the configuration
      arp                         Set a static ARP entry
      async-bootp                 Modify system bootp parameters
      audit                       Router Audit
      authentication              Auth Manager Global Configuration Commands
      auto                        Configure Automation
      banner                      Define a login banner
      beep                        Configure BEEP (Blocks Extensible Exchange
                                  Protocol)
      bfd                         BFD configuration commands
      bfd-template                BFD template configuration
      boot                        Modify system boot parameters
      bridge                      Bridge Group.
      buffers                     Adjust system buffer pool parameters
      bulkstat                    Bulkstat Application
      call-home                   Enter call-home configuration mode
      cdp                         Global CDP configuration subcommands
      cef                         Cisco Express Forwarding
      cisp                        Set CISP parameters
      class-map                   Configure CPL Class Map
      clns                        Global CLNS configuration subcommands
      clock                       Configure time-of-day clock
      cluster                     Cluster configuration commands
      cns                         CNS agents
      comet-server                Configure comet-server properties
      config-register             Define the configuration register
      configuration               Configuration access
      control-plane               Configure control plane services
      crypto                      Encryption module
      cts                         Cisco Trusted Security commands
      default                     Set a command to its defaults
      default-value               Default character-bits values
      define                      interface range macro definition
      device-sensor               IOS Sensor Commands
      diagnostic                  Configure diagnostic information
      dns-server                  Modify DNS server properties
      dnsix-dmdp                  Provide DMDP service for DNSIX
      dnsix-nat                   Provide DNSIX service for audit trails
      do-exec                     To run exec commands in config mode
      dot1x                       IEEE 802.1X Global Configuration Commands
      downward-compatible-config  Generate a configuration compatible with older
                                  software
      eap                         EAP Global Configuration Commands
      emm                         Specify pre-loading of MDF
      enable                      Modify enable password parameters
      end                         Exit from configure mode
      energywise                  EnergyWise Global Configuration Commands
      epm                         EPM Global Configuration Commands
      errdisable                  Error disable
      ethernet                    Ethernet configuration
      event                       Event related configuration commands
      exception                   Exception handling
      exit                        Exit from configure mode
      fallback                    Fallback configuration commands
      fhrp                        Configure First Hop Redundancy Protocols
      file                        Adjust file system parameters
      fips                        FIPS mode after next reload
      flow                        Global Flow configuration subcommands
      format                      Format the output
      global-address-family       Enter address-family base routing topology mode
      help                        Description of the interactive help system
      hostname                    Set system's network name
      hw-module                   Apply command (e.g. shutdown) to specified
                                  hardware target
      hw-module                   Control of individual components in the system
      hw-switch                   Control of individual components in the switch
      id-manager                  ID Pool Manager
      identity                    Identity Configuration Commands
      infra-test                  Configure end2end properties
      interface                   Select an interface to configure
      ip                          Global IP configuration subcommands
      ipc                         Configure IPC system
      ipv6                        Global IPv6 configuration commands
      isis                        Global ISIS configuration subcommands
      issu                        no description
      key                         Key management
      kron                        Kron interval Facility
      l2                          Layer 2
      l2protocol-tunnel           Tunnel Layer2 protocols
      lacp                        LACP configuration
      li-view                     LI View
      license                     Configure License
      line                        Configure a terminal line
      link                        Enable Link State Tracking feature
      lldp                        Global LLDP configuration subcommands
      location                    Global location configuration commands
      logging                     Modify message logging facilities
      login                       Enable secure login checking
      mab                         MAC Authentication Bypass Global Configuration
                                  Commands
      mac                         Global MAC configuration subcommands
      macro                       Macro configuration
      media-proxy                 Global media proxy configuration
      mediatrace                  Mediatrace Application
      memory                      Configure memory management
      metadata                    Metadata Application
      mka                         MACsec Key Agreement (MKA) configuration
      module                      Module
      monitor                     Monitoring different system events
      mvr                         Enable/Disable MVR on the switch
      netconf                     Configure NETCONF
    Thank you.

    Hi,
    QOS implementation has radically changed since the advent of
    sup-7 & later
    You no longer set mls qos as qos is on the engine by default.
    Please see the following links
    http://www.cisco.com/c/en/us/products/collateral/switches/catalyst-4500-series-switches/white_paper_c11-539588.html
    "Ingress QoS: Default Actions
    First and foremost, QoS does not need to be enabled on the Supervisor Engine, it is on by default in compliance with the MQC construct.
    When a packet arrives at an interface, there are two options to take into consideration: is there a policy attached or not? If the packet arrives with or without a marking and there is not a policy attached to the interface, packets will flow through the switch untouched. There are no questions as to where the packet came from or if it has a valid marking. If the packet arrives with or without a marking, and a policy is attached to the interface, the packet will only then be subject to the policy classification."
    And the config guide
    http://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst4500/15-1/XE_330SG/configuration/guide/config/qos_mrg.html#wp1461453
    Hope this helps
    Regards
    Alex

  • Self-Monitoring solman SP16 error

    Hi gurus,
    I need your help with Solution Manager Diagnostic configuration. I installed Solution Mananger 7.0 SP16 with Willy Introscope 7.2 and SMD in solution Manager.
    When I run the wizard for Diagnostics Setup --> Managed Systems --> Managed Systems for Self-Monitoring (solman) I've this error and I understand this problem.
    Wilyhost Agent configuration finished without errors, but on Enterprise Manager (host01:6000) no Wilyhost Agent was detected from host host01. Please check the log file jvm_smdagent.out whether the Wilyhost Agent could connect to the Enterprise Manager. If the Enterprise Manager configuration has been changed recently please restart the SMD Agent on OS level.
    Step Wilyhost Agent Details
    Created destination SM1_DVEBMGS00_server0
    Created destination SM1|host01_SM1_00
    Created action SAP GC|SM1_DVEBMGS00_server0 - SAP GC|SM1_DVEBMGS00_server0
    Created action SM1 - SM1 AbapSystem
    Created action SM1|host01_SM1_00 - SM1|host01_SM1_00 AbapInstance
    Created 3 action(s).
    0 Wilyhost Agent(s) and 0 EP Agent(s) from host host01 are connected to the EM.
    Wilyhost Agent configuration finished without errors, but on Enterprise Manager (host01:6000) no Wilyhost Agent was detected from host host01. Please check the log file jvm_smdagent.out whether the Wilyhost Agent could connect to the Enterprise Manager. If the Enterprise Manager configuration has been changed recently please restart the SMD Agent on OS level.
    Please, can someone helpme for this error. Any suggest is welcome.
    Regards,
    Sergio.

    Hi:
    Try to walk through this configuration guide, it may help you.
    /people/federico.babelis2/blog/2006/04/25/system-monitoring-configuration-guide-for-dummies
    Regards,
    Federico

  • Wadlogs not logging the traces for Worker role in Azure

    Hi Everyone,
    I have issue in logging the workerroles logs in Azure Wadlogs table for past 4 days to till. Actually before it was logging the trace logs for the worker role in same azure wadlogs table only. I have checked the space availability of the wadlogs table,
    it is showing enough space only. I don't y it is behaving like this for past 4 days to till. And I have the same environment setup for UAT also but it is working properly. Please suggest me to get out of from this issue.
    jeganna

    Hi,
      Make sure OverallQuotaInMB, should be at least 500MB less than the value specified in the sizeInMB attribute.
      Refer the Following article on troubleshooting common issues with WAD
    http://blogs.msdn.com/b/cie/archive/2013/04/16/commonly-reported-issues-while-leveraging-windows-azure-diagnostic-configurations-and-best-practices.aspx
      If the above link does not help, i would suggest you get a
    Support Ticket created since access to the instance and code may be required.
    Regards,
    Nithin Rathnakar

  • No Hosts Found - Technical system not well defined

    We are performing Diagnostic configuration for managed system.We are trying to configure solution manager has managed system with ABAP and Java stack.
    Though we have defined the Java instances in the following format,system is throwing an error saying No hosts found,Technical system is not well defined - for solution managed Java.
    Instance                                                  server role                         server
    J2EESERVER_KRESSAPCRM_00     DISPATCHER Dispatcher     kressapcrm
    J2EESERVER_KRESSAPCRM_01     SERVER J2EE-Server     kressapcrm
    What might me the issue?
    Regards
    Shailaja

    Hi,
    All these details are entered in SMSY
    Abap stack header data:
    Message server : KRESSAPCRM
    System Number : 00
    Database : SOL
    Abap stack Instances data:
    Instance : KRESSAPCRM_SOL_00
    Server : KRESSAPCRM
    Java stack header data:
    Message server : KRESSAPCRM
    Installation Number : 0020190937
    Dispatcher : 2062900
    Database : SOL
    Java stack Instances data:
    Instance : J2EESERVER_KRESSAPCRM_00
    Server Role : J2EE server
    Server : KRESSAPCRM
    Regards
    Shailaja

  • IMac G5 Sleep/Wake Issues

    Good afternoon. I am trying to diagnose an issue for a friend who has an iMac G5 1.6GHz 17-inch PowerPC running Tiger purchased in September of 2004.
    When the iMac falls into sleep mode for a period of time (usually 30 minutes or longer), when attempting to wake it, the pulsating light disappears and the CPU seems to just shut down. The only way for the system to start again is to pull the power plug and put it back in. He had an iSight camera attached to it via firewire and the housing of the camera was very hot along with the back of the system. I tried removing all peripherals and the sleep process worked fine. I tried process of elimination to see if any peripherals were causing the wake issues. I had suspected the iSight camera but now, the system is doing it again without the camera being attached. I've also tried resetting the PRAM, SMC and repaired all disk permissions to no avail. I have not yet had the ability to check the LED diagnostic configuration.
    Has anyone dealt with a similar issue before? Much obliged if I could get some ideas from here so I can know what to expect. Does it seem like a logic board issue?
    Thank you for your time.

    It sounds like a power supply problem, but run Disk Utility to check the drive:
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk.
    See what result that produces, and please check back,

  • Configuring Soution Manager Diagnostic

    Hi All,
    We have Sol Man 4.0 with ECC 6.0....can anyone guide on configuring Solution Manager Diagnostic in our landscape? Please give info in details.
    with regards,
    Amit

    Hi,
    Have a look at this document https://websmp104.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700002909272006E i gues this will help
    Lando

  • Configure diagnostic logging

    when i select configure diagnostic logging in central admin i get the following error
    error file not found
    in uls logs i see the following
    07/01/2014 13:25:12.93 w3wp.exe (0x1998) 0x0844 SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (GET:http://vsrsp10qaapp:9999/_admin/metrics.aspx) 6c6d233a-fb35-491e-87c2-ba4ab41afeb1
    07/01/2014 13:25:12.93 w3wp.exe (0x1998) 0x0844 SharePoint Foundation Logging Correlation Data xmnv Medium Site=/ 6c6d233a-fb35-491e-87c2-ba4ab41afeb1
    07/01/2014 13:25:12.95 w3wp.exe (0x1998) 0x0844 SharePoint Foundation Runtime tkau Unexpected System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.Practices.ServiceLocation, Version=1.0.0.0, Culture=neutral,
    PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.    at Microsoft.Opex.Rkm.Common.Logging.DiagnosticsService.ProvideAreas()     at Microsoft.SharePoint.Administration.SPDiagnosticsServiceBase.EnsureAreas()    
    at Microsoft.SharePoint.Administration.SPDiagnosticsServiceBase.get_Areas()     at Microsoft.SharePoint.ApplicationPages.MetricsPage.OnLoad(EventArgs e)     at System.Web.UI.Control.LoadRecursive()    
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 6c6d233a-fb35-491e-87c2-ba4ab41afeb1
    07/01/2014 13:25:12.96 w3wp.exe (0x1998) 0x0844 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (GET:http://vsrsp10qaapp:9999/_admin/metrics.aspx)). Execution Time=29.7579720327584 6c6d233a-fb35-491e-87c2-ba4ab41afeb1
    07/01/2014 13:25:14.94 w3wp.exe (0x1998) 0x0814 SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://vsrsp10qaapp:32843/9283a893bbd8454982688fd214f2cf85/MetadataWebService.svc' Channel: 'Microsoft.SharePoint.Taxonomy.IMetadataWebServiceApplication'
    Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges' MessageId: 'urn:uuid:6657c8c4-fd07-4545-984a-5d9121ad29f5' 
    07/01/2014 13:25:14.94 w3wp.exe (0x0C18) 0x1450 SharePoint Foundation Topology e5mb Medium WcfReceiveRequest: LocalAddress: 'http://vsrsp10qaapp.southerntrust.local:32843/9283a893bbd8454982688fd214f2cf85/MetadataWebService.svc'
    Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges' MessageId: 'urn:uuid:6657c8c4-fd07-4545-984a-5d9121ad29f5' b1d3864d-60a0-4625-bb4c-7644b54846b4
    07/01/2014 13:25:14.94 w3wp.exe (0x0C18) 0x1450 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteWcfServerOperation) b1d3864d-60a0-4625-bb4c-7644b54846b4
    i have carried out an iisreset and restart of the server problem still exists.
    health analyser is report an error
    Could not load file or assembly 'Microsoft.Practices.ServiceLocation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.

    If you still have the WSP for that solution, use 7-Zip to open it. See if it had Microsoft.Practices.ServiceLocation.dll
    in it, or if you have the developers on staff, ask.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Maybe you are looking for