Monitor opmn services

is there a way (without buying the BI management pack for EM) to monitor the opmn services and get an email if one is down..
possibly through weblogic 10.3 on BI 11g..

Hi Laura
Yes, Monitor mode APs are mostly for enhanced rogue detection.
They do not support the feature you are mentioning (act as a client to connect to AP to validate radio)
This has been proposed in the past, and it is something we are tracking.  I would suggest to get in contact with your account team, so they are aware of your needs, and this can help that the feature gets higher priority.
Thanks!

Similar Messages

  • OPMN service still running but Essbase is not

    I have had a few cases of recursion causing Essbase to crash, but the OPMN service still says it's running in the services monitor. Any clues why? Reason I ask is that we have taken the trouble to monitor (and be notified of failures) all Hyperion services. I do know I can address the recursion issue by changing essbase.cfg, but I actually prefer to address each issue as it arises.
    Thanks in advance,
    Kris Calabro

    Thanks for the quick reply John. My issue is not getting it back up and running, but more so not being aware that the service isn't running. I know that's a bit anal, but we've gone through the trouble of setting up "watches" on all Hyperion services to be a bit proactive and would like to see tangible results for those efforts. As it stands now we are made aware when stuff stops working, sometimes through communications from our users.
    Regards,
    Kris Calabro

  • Error while configuring OBIEE 11G OPMN Service during Installtion

    Hello,
    i tried installing 11G with simple install on Vista and didnot work, I think 11g does not work on Any Vista and not sure of W7
    second, i tried installing the same on Windows XP and the installtion worked fine till the end and while configuring OPMN Services,
    the OBIPS Services and OBICCS services failed, i retried to configure this services with "retry" option but never worked, so i skipped this part thinking that
    i can configure this manually. finally i was not able
    weblogic's Admin server, Managed server, Node manager and Analytics.war deployments are all healthy in EM Console and Weblogic console
    the Fusion Middleware control in EM Console shows the BI Components are not started and i tried restarting it and but never started.
    so i think there is something wrong with OPMN configuration at the end of installtion
    is there a way to trouble shoot this.
    i tried searching of SAWSERVER service so i can start the manaully, but it did not start
    i did a softwareonly install on top this single instance installtion thinking if that can help me, but it didnt
    so please anyone help me
    Thanks
    Kumar

    Hi Kumar,
    I believe OBICCS is the Oracle BI Cluster Controller Service. That particular service requires a static IP address. A lot of people use the loopback adaptor to accomplish.
    Here's a quick rundown of some things you should check before installing OBIEE 11g.
    1. Make sure you have a static IP (use a loopback adaptor if you have to).
    2. Make sure your static IP adaptor is the first adaptor in your connections list. You can do this by going to Control Panel -> Network and Internet -> Network Connections -> Advanced. Use the up and down arrows to ensure that the static IP is the top of the list.
    3. Make sure you hosts file (c:\Windows\system32\drivers\etc\hosts) has the proper entry for the static IP address. For example, if your computer is called MyComputer and your static IP is 192.168.0.1, then the first entry should be: 192.168.0.1 MyComputer. Note: You may need to have your domain on your entry. ie. 192.168.0.1 MyComputer.mydomain.com.
    I recommend you check those things. If you missed one of them, fix it and then back out the 11g install and re-install.
    Good luck and if you found this helpful, please award points!
    -Joe

  • How to remove opmn services from services.msc on windows 7 64 bit ?

    Hi
    while doing OBIEE11g (11.1.1.5.0) uninstallation, i can able able to remove opmn services from services.msc - windows server 2008, but i could not able to delete it on services.msc-
    windows 7 64 bit OS. i am getting the below error
    http://imageshare.web.id/images/ynug3ris6lde96pfeyou.jpg
    also delete the services registry entry using regedit
    HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services
    i have removed opmn - obiee thinks but still it's not removing.
    FYI,
    I have refer below link only
    http://www.howtogeek.com/howto/windows-vista/how-to-delete-a-windows-service-in-vista-or-xp/
    THanks
    Deva

    Deva,
    also delete the services registry entry using regedit
    HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services What happened after you deleted from regedit? You have to reboot the machine to completely remove the service.
    Rgds,
    Dpka

  • Opmn service does not start when try to start Oracle BI Services

    Hi ,
    I was able to install OBIEE 11g on my laptop and it worked fine for two days. Today when I try to login to rpd and type my user name and password I get the error that my user name and password is not correct. I tried to restart the machine and now I am not able to start opmn service.
    When I do Start>Oracle Business Intelligence (1)>Start BI Services, the script run and two command line windows open and about 10 minutes later get the last line that server started in RUNNING mode, but some how Oracle Process Manager (instance) service does not start. It started two days ago when I was able to login to OBIEE 11g.
    If I try to go to OBIEE 11g Home page I get this error "Error 500- Internal server error from RFC 2068 Hypertext Transfer Protocol- HTTP/1.1: 10.5.1 500 Internal server error
    Any Idea how to fix this one.
    Thanks

    Maybe you need to tick the "use fully qualified names" check box and make sure that you have the schema object created (as a "folder" between the database and the tables in the physical layer).

  • Monitor all services on all servers?

    Hi all
    I'm looking for the easiest way of monitoring all services with startupmode=auto and alerts when state!=running. I found this thread:
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/dbb175c4-8ec0-4427-9d10-9382044144e7/monitor-all-windows-services-on-multiple-servers-and-recover?forum=operationsmanagerauthoring
    So I took this code
    Dim oAPI, oBag
    Set oAPI = CreateObject("MOM.ScriptAPI")
    Set oBag = oAPI.CreatePropertyBag()
    strComputer = "."
    Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
    Set colListOfServices = objWMIService.ExecQuery _
    ("SELECT * FROM Win32_Service WHERE StartMode = 'Auto' AND Started = false")
    If colListOfServices.Count > 0 Then
    For Each objService in colListOfServices
    If strDesc = "" Then
    strDesc = objService.Caption
    Else
    StrDesc = StrDesc & ", " & objService.Caption
    End if
    Next
    Call oBag.AddValue("Description", strDesc)
    Call oBag.AddValue("State", "BAD")
    Else
    Call oBag.AddValue("State", "OK")
    End if
    Call oAPI.Return(oBag)
    I used this in a two state monitor I created in our SCOM 2012 environment. For starters it runs every 2 minutes, it's enabled, monitor target is Windows Server 2008 Operating System, it's set to generate alerts on warning, the Unhealthy expression is:
    Property[@Name='State'] Equals BAD
    And the Healthy Expression is:
    Property[@Name='State'] Equals GOOD
    Unfortunately I'm getting no alerts at all. And I dont think I have any way of seeing if it's actually discovering all the services? AND I have no previous experience with vb scripting, but do have some powershell experience.
    Any suggestions on how to get this up and running please?
    Update: I just got alerts from all servers:
    Workflow Runtime: Failed to run a process or script
    The process started at 11:25:%1 failed to create System.PropertyBagData, no errors detected in the output. The process exited with 1.
    Command executed "C:\Windows\System32\cscript.exe" /nologo "Company.ServiceMonitoring"

    At the first point make sure that you are creating the service monitor in Authoring --> Management Pack Templates --> Windows Service.
    The place where we change is within the discovery part and not monitor. Search for the text what you entered as Service Name while creating the service monitor. You should see something similar to this,
    <Discovery ID="ServiceStateProbePage_5409ab4012384fb28dea99f892e28fec.DiscoveryRule" Enabled="false" Target="Windows!Microsoft.Windows.Computer" ConfirmDelivery="false" Remotable="true" Priority="Normal">
            <Category>Discovery</Category>
            <DiscoveryTypes>
              <DiscoveryClass TypeID="ServiceStateProbePage_5409ab4012384fb28dea99f892e28fec" />
            </DiscoveryTypes>
            <DataSource ID="DS" TypeID="Windows!Microsoft.Windows.Win32ServiceInformationProviderWithClassSnapshotDataMapper">
              <ComputerName>$Target/Property[Type="Windows!Microsoft.Windows.Computer"]/NetworkName$</ComputerName>
              <ServiceName>------------ServiceName>
              <Frequency>60</Frequency>
              <ClassId>$MPElement[Name="ServiceStateProbePage_5409ab4012384fb28dea99f892e28fec"]$</ClassId>
              <InstanceSettings>
                <Settings>
                  <Setting>
                    <Name>$MPElement[Name="Windows!Microsoft.Windows.Computer"]/PrincipalName$</Name>
                    <Value>$Target/Property[Type="Windows!Microsoft.Windows.Computer"]/PrincipalName$</Value>
                  </Setting>
                  <Setting>
                    <Name>$MPElement[Name="MicrosoftSystemCenterNTServiceLibrary!Microsoft.SystemCenter.NTService"]/ServiceName$</Name>
                    <Value>$Data/Property[@Name='Name']$</Value>
                  </Setting>
                  <Setting>
                    <Name>$MPElement[Name="MicrosoftSystemCenterNTServiceLibrary!Microsoft.SystemCenter.NTService"]/ServiceProcessName$</Name>
                    <Value>$Data/Property[@Name='BinaryPathName']$</Value>
                  </Setting>
                  <Setting>
                    <Name>$MPElement[Name="MicrosoftSystemCenterNTServiceLibrary!Microsoft.SystemCenter.NTService"]/DisplayName$</Name>
                    <Value>$Data/Property[@Name='DisplayName']$</Value>
                  </Setting>
                  <Setting>
                    <Name>$MPElement[Name="MicrosoftSystemCenterNTServiceLibrary!Microsoft.SystemCenter.NTService"]/Description$</Name>
                    <Value>$Data/Property[@Name='Description']$</Value>
                  </Setting>
                  <Setting>
                    <Name>$MPElement[Name="System!System.Entity"]/DisplayName$</Name>
                    <Value> </Value>
                  </Setting>
                </Settings>
              </InstanceSettings>
            </DataSource>
          </Discovery>

  • CSS 11501 7.40 Monitoring the services on real servers?

    Hi,
    Just want to ask some basic questions, How can i monitor the services (ie 80 and 443) of the real servers. So that when the CSS11501 detects that one of the services of one of the real servers is down, it will not forward the traffic to that server. Or is the CSS is configured to monitor the services by default?
    Because we are planning to upgrade one of the webservers (web01) while web02 is running, if we shutdown the service 80 and 443, does it affect the end-user, will CSS automatically redirect it to web02?
    Regards,
    Marlon

    Here is my sample configuration
    !************************** SERVICE **************************
    service WEB01-79-HTTP
    ip address 172.20.13.4
    keepalive type tcp
    keepalive port 80
    active
    service WEB01-79-HTTPS
    ip address 172.20.13.4
    keepalive type tcp
    keepalive port 443
    active
    service WEB01-80-HTTP
    ip address 172.20.13.5
    keepalive type tcp
    keepalive port 80
    active
    service WEB01-80-HTTPS
    ip address 172.20.13.5
    keepalive type tcp
    keepalive port 443
    active
    service WEB01-82-HTTP
    ip address 172.20.13.6
    keepalive type tcp
    keepalive port 80
    active
    service WEB01-82-HTTPS
    ip address 172.20.13.6
    keepalive type tcp
    keepalive port 443
    active
    service WEB01-83-HTTP
    ip address 172.20.13.7
    keepalive type tcp
    keepalive port 80
    active
    service WEB01-83-HTTPS
    ip address 172.20.13.7
    keepalive type tcp
    keepalive port 443
    active
    service WEB01-79
    ip address 172.20.13.4
    active
    service WEB01-80
    ip address 172.20.13.5
    active
    service WEB02-82
    ip address 172.20.13.6
    active
    service WEB02-83
    ip address 172.20.13.7
    active
    !*************************** OWNER ***************************
    owner VRL
    content VIP
    redundancy-l4-stateless
    content WEB-HTTP1
    vip address 172.20.10.85
    protocol tcp
    port 80
    advanced-balance sticky-srcip
    add service WEB01-79-HTTP
    add service WEB01-82-HTTP
    redundancy-l4-stateless
    active
    content WEB-HTTP2
    vip address 172.20.10.86
    port 80
    protocol tcp
    advanced-balance sticky-srcip
    add service WEB01-80-HTTP
    add service WEB01-83-HTTP
    redundancy-l4-stateless
    active
    content WEB-HTTPS1
    advanced-balance sticky-srcip
    vip address 172.20.10.85
    protocol tcp
    port 443
    add service WEB01-79-HTTPS
    add service WEB01-82-HTTPS
    redundancy-l4-stateless
    application ssl
    sticky-inact-timeout 20
    active
    content WEB-HTTPS2
    advanced-balance sticky-srcip
    vip address 172.20.10.86
    protocol tcp
    port 443
    add service WEB01-80-HTTPS
    add service WEB01-83-HTTPS
    redundancy-l4-stateless
    application ssl
    sticky-inact-timeout 20
    active
    content WEB01-79
    add service WEB01-79
    vip address 172.20.10.79
    redundancy-l4-stateless
    active
    content WEB01-80
    add service WEB01-80
    vip address 172.20.10.80
    redundancy-l4-stateless
    active
    content WEB02-82
    add service WEB02-82
    vip address 172.20.10.82
    redundancy-l4-stateless
    active
    content WEB02-83
    add service WEB02-83
    vip address 172.20.10.83
    redundancy-l4-stateless
    active
    !*************************** GROUP ***************************
    group WEB01-79
    add service WEB01-79
    vip address 172.20.10.79
    redundancy-l4-stateless
    active
    group WEB01-80
    add service WEB01-80
    vip address 172.20.10.80
    redundancy-l4-stateless
    active
    group WEB02-82
    add service WEB02-82
    vip address 172.20.10.82
    redundancy-l4-stateless
    active
    group WEB02-83
    add service WEB02-83
    vip address 172.20.10.83
    redundancy-l4-stateless
    active

  • Monitor all service Start with the word "SAP"

    Hallo
    i have sccm 2012 
    Can monitor services start with the word "SAP"
    Instead of monitoring all service set separately .
    thanks 

    Hi,
    Did some research and came to the following solution
    Open the System Center Operations Manager Console. 
    Go to Authoring and expand Management Pack Templates
    Right Click Windows Service and click Add Monitoring Wizard
    On the Monitoring Type page select Windows Service and click Next
    Give the Service and store the it in a New Created Management Pack and click Next
    On the Service Name Type SAP* on the Target group Select Windows Server Computer Group and click Next
    On the Performance Data page click Next
    On the Summary page click Create
    Export the Management Pack pack you created
    In the Management pack replace the following code:
    <DataSource ID="DS" TypeID="Windows!Microsoft.Windows.Win32ServiceInformationProviderWithClassSnapshotDataMapper">
    <ComputerName>$Target/Property[Type="Windows!Microsoft.Windows.Computer"]/NetworkName$</ComputerName>
    <ServiceName>sap*</ServiceName>
    <Frequency>60</Frequency>
    With the following code
    <DataSource ID="DS" TypeID="Windows!Microsoft.Windows.WmiProviderWithClassSnapshotDataMapper">
    <NameSpace>root\cimv2</NameSpace>
    <Query>select * from win32_service where name like 'sap%'</Query>
    <Frequency>60</Frequency>
    Second replace
    <Value>$Data/Property[@Name='BinaryPathName']$</Value>
    With
    <Value>$Data/Property[@Name='PathName']$</Value>
    Save the management pack and upload it to System Center Operations Manager.
    In the Operations Console Click Monitoring
    Click Discoverd Inventory and change the target type to the target you created. Then the view should look something like this:
    I created the management pack You can download it from here: http://www.ms-opsmgr.eu/wp-content/uploads/Download/2015/SAP/SAP.Services.xml
    GReetings Roel Knippen
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • How to monitor RAC services and nodeapps in Grid Control

    Hi,
    I have created a number of RAC service names such as GL on a 2-node RAC and would like to use Grid control 10.2.0.2 to monitor the availability of those services and nodeapps. I was not able to find anything in Grid Control that would allow me to configure that. What are being monitored now are the listeners, database instances and nodes. Would it be possible to monitor more than just the RAC listeners, instances and nodes?
    thanks.

    I don&acute;t think that there is an out-of-the-box metric. However, CRS monitors your services and Grid Control monitors CRS errors. If you need more granular monitoring, I have 2 suggestions:
    1) user callouts:
    [http://download.oracle.com/docs/cd/B28359_01/rac.111/b28254/hafeats.htm#RACAD7133]
    2) extending oracle enterprise manager
    I have written a paper on how to extend oem at [http://www.ora-solutions.net/web/papers/]
    "Extending Oracle Enterprise Manager to collect HP-UX glance data"
    You can follow the instructions to build a new target type called "RAC_SERVICE" and add your serivces as targets, e.g. S_BATCH, S_ONLINE, S_HR.
    Best regards,
    Martin Decker
    www.ora-solutions.net
    Edited by: mdecker on Jan 2, 2009 10:57 AM
    Edited by: mdecker on Jan 2, 2009 10:59 AM

  • Transaction Monitor u2013 Services Processes into BI

    Hello Experts,
    I'm wondering if it is possible to get tickets information from Solution Manager and have some statistics in BI.
    For instance the average time of ticket resolution, number of tickets per team/person/month, etc, etc
    At this moment Iu2019m using the ZNTP transaction in solution manager to access Transaction Monitor u2013 Services Processes.
    I would like to install BI Content to have some summary queries about the activity within ZNTP.
    I already connected BI to SMP and also replicated metadata, however the data sources available just by the name donu2019t help me much.
    Perhaps I should check the content version within solution manager and BI but I don't know how to performe such verifications.
    Thanks

    using rsa3 in the source system I'm getting the follow error:
    The extraction program does not support object 0CRM_SRV_PROCESS_H
    Message no. R3009
    Diagnosis
    The application program for the extraction of data was called up using the invalid InfoSource/invalid InfoObject 0CRM_SRV_PROCESS_H.
    System Response
    The data extraction is terminated.
    Procedure
    Check the SAP Support Portal for the appropriate Notes and create a customer message if necessary.
    Can you help me?

  • How to monitor Radius services on ACS 5.4

    Hi All,
    I want to monitor  Radius services of ACS 5.4,  In case of failure any radius service on ACS.
    ACS should send alert to Syslogs  or email notification
    Is there any way to monitor Radius services ? Anyone have any idea how to monitor.
    Regards.

    Hi Narinder,
       I dont think so there is any particular way you can do that, Because ACS 5.x doesnt have any particluar Radius service.
    The services which are available and can be viewed through CLI and GUI are following:
    Database
    Management (ACS management subsystem)
    Ntpd
    Runtime (ACS runtime subsystem)
    View-alertmanager
    View-collector
    View-database
    View-jobmanager
    View-logprocessor
    htt    https://www.cisco.com/c/en/us/td/docs/net_mgmt/cisco_secure_access_control_system/5-ususer/guide/acsuserguide/viewer_sys_ops.html#pgfId-1052845
    Cheers 
    Minakshi

  • Microsoft Monitoring Agent Service on Management Servers - 2012R2

    Hi,
    Is the Microsoft Monitoring Agent Service supposed to be running on Management Servers?
    I can't remember if I have added an agent by accident, or if this is part of the install.
    Thx,
    John Bradshaw

    When you install Management server, SCOM will automatic install Microsoft Monitoring Agent service. However, Microsoft Monitoring Agent service default installation path in Management server, c:\program files\Microsoft system Center 2012 R2\Operations
    Manager\Server\health Service state, is different to ordinary agent machine which installation path is c:\program Files\Microsoft Monitoring Agent\Agent. Moreover, SCOM 2012 R2 uses Microsoft Monitoring Agent to collect and monitor server status and performance
    whether they are SCOM agent or Management server.
    Roger

  • Monitor Wireless services

    Hi,
    I would like to monitor Wireless services and I wonder if I could to this with an AP.
    In one of our customer sites there are many problems with the wireless connections; we can monitor the RADIUS service, if the firewall is working correctly as well and any issue regards the wired network, also if the radio's AP are up/down by the WCS, but there is no garanty that the user with his laptop could associate to the AP in the correct SSID and have the wireless service unless we went to the site and verified it.
    I read about the AP monitor mode, but, if I didn't misunderstand it, it only detects rogue AP, doesn't it? Is there any way in order to monito this service? Could an AP join to another AP as a client, in some similiar way an user could do it?
    Many thanks in advanced!
    Laura

    Hi Laura
    Yes, Monitor mode APs are mostly for enhanced rogue detection.
    They do not support the feature you are mentioning (act as a client to connect to AP to validate radio)
    This has been proposed in the past, and it is something we are tracking.  I would suggest to get in contact with your account team, so they are aware of your needs, and this can help that the feature gets higher priority.
    Thanks!

  • Performance monitoring by service operation

    Hi,
    We are using PI 7.1 I am drafting naming conventions for our company's PI development and using PI Best Practices : Naming Conventions as a starting point.
    Now one issue I have , and I beleive it is quite a big one, is that the best practice recommends that service interfaces group service operations on the same object.
    The problem I have is where do we actually get performance statistics by service operation ? Early watch does not have these statistics but only response time by service interface. SXMB_MONi either.
    Do you know if we can get statistics by service operation ?
    Is this comming in future enhencement pack for PI or solution manager ?
    Thanks.

    Thanks for the document.
    However, I don't see where we can monitor web service performance by "service operation" ... it seems that PI 7.1 added service operation concept but no way to actually monitor their performance...
    By monitor , I mean, get a performance report. For example, I would like the average response time of a specific service operation.
    All I see now are statistics for services . These statistics are too "vague" or rather smoothed out if you have many service operations in one service interface.
    Is the strategy to use the service call statistics from the caller system... this is unfortunately not always possible since the calling system could be at outside company... (which is often the case).
    Ideas or recommendations anyone... ! I would expect SAP could respond to this. Perhaps I will also open a customer message.
    Thanks.

  • Monitoring RAC services in Windows

    I have a 2 node RAC database installed on Win 2003. I've had the Database service go down a few times kind of "magically". I'm looking into the kind of magic that caused this (suspect it was a storage issue), but in the mean-time I need to send out an alert to someone if this goes down. Does anyone have a good way/tool to monitor OS services and send out an e-mail when one goes down?

    Aren't you using grid control?
    http://download.oracle.com/docs/cd/B19306_01/server.102/b25159/monitor.htm#i1006661

Maybe you are looking for