Snmp configuration on weblogic 10 has no effect

SNMP in MMC(Mobile Management Center, A HP Product), use joesnmp.jar internal to send snmp trap generated by mmc app. This part works well in weblogic 10;
snmp in weblogic , configured by weblogic console. In weblogic 8, we configure such items:
Weblogic Subsystem
Purpose
Level
Deployer
Monitor all war/ear deploy/undeploy/redeploy
INFO
JDBC
Monitor all warnings/errors in jdbc operation
WARN
Current tests shows that the snmp configuration on weblogic 10 has no effect.
Due to MMC4.6 gets the Weblogic updated from 8.16 to 10.3, we didn’t find the configuration about “Enable JDBC Logging”. Below is the former config page about Weblogic 8.16.
But in Weblogic 10.3 we cannot find this configuration. We have followed the guide http://e-docs.bea.com/wls/docs100/jdbc_admin/monitor.html#wp1048793
And tried to set the appropriate properties on the command line like this,
-Dweblogic.debug.DebugJDBCSQL=true -Dweblogic.log.StdoutSeverity="Info"
Actually we can get the DM, Core, SMTP, Bulk, Adaptor Class, and connection fail error messages in weblogic backend log, but seems Weblogic cannot send SNMP trap messages to SNMP monitoring tool like Openview.
PS. Weblogic can send out the SNMP trap messages when the server starts and stops.
So till now the SNMP cannot monitor the DM, Core, SMTP, Bulk, Adaptor Class, and connection fail for MMC4.6.

Hi, I am on 12.1 weblogic, and I am stuck on where you set the SNMP Servername and port number.
We are on windows 2008, I see there is a services, SNMP .
Is there something I need to do on the weblogic side before i get into the SNMP agenets and traps, this part I understand, I am just unsure where to add the SNMP Servername and the user I wish the emails to go to.
I see in the security realms the user i can add to the group monitors.
-->, I am running WL 10.3 and SNMP works fine. The cluster generates traps based on particular mbeans, such as when a server's health state is not "OK", or when there are JDBC connection issues. You have to create a new SNMP agent within the admin server then build the individual traps ( String, Gauge, Counter, etc. ) and make sure you have a Trap Destination.

Similar Messages

  • How can I list all the domains configured for Weblogic Servers?

    How can I list all the domains configured for Weblogic Servers?
    I saw a note, which says the following:
    "WebLogic Server does not support multi-domain interaction using either the Administration Console, the weblogic.Admin utility, or WebLogic Ant tasks. This restriction does not, however, explicitly preclude a user written Java application from accessing multiple domains simultaneously."
    In my case, I just want to list all the domains, is that possible by using any scripts?
    Thanks
    AJ

    If you use WLS Node Manager and the Config Wizard was used to create the domains, then the list of domains should be in a location like this:
    <MIDDLEWARE_HOME>\wlserver_10.3\common\nodemanager\nodemanager.domains
    Enterprise Manager Grid Control also has support for multi-domain management of WLS in a console.

  • DHCP_TIMEOUT in /etc/conf.d/netcfg has no effect

    I want to set DHCP_TIMEOUT to 30 for all netcfg profiles. On  this page in wiki it is suggested to set the variable in /etc/conf.d/netcfg. But this has no effect. I tried 'NETCFG_DEBUG="yes" netcfg <arguments>' and the timeout was still 10.
    How can I set DHCP_TIMEOUT for all profiles without editing every profile?

    opt1mus wrote:Could you paste into this thread your /etc/conf.d/netcfg and the debug output. It's easier for people to help with troubleshooting when actual output is to hand.
    Here it is (network names changed):
    # cat /etc/conf.d/netcfg
    # Enable these netcfg profiles at boot time.
    #   - prefix an entry with a '@' to background its startup
    #   - set to 'last' to restore the profiles running at the last shutdown
    #   - set to 'menu' to present a menu (requires the dialog package)
    # Network profiles are found in /etc/network.d
    NETWORKS=(network1 network2)
    # Specify the name of your wired interface for net-auto-wired
    WIRED_INTERFACE="eth0"
    # Specify the name of your wireless interface for net-auto-wireless
    WIRELESS_INTERFACE="wlan0"
    # Array of profiles that may be started by net-auto-wireless.
    # When not specified, all wireless profiles are considered.
    #AUTO_PROFILES=("profile1" "profile2")
    DHCP_TIMEOUT=30
    # NETCFG_DEBUG="yes" netcfg network1
    DEBUG: Loading profile network1
    DEBUG: Configuring interface wlan0
    :: network1 up                                                                                                                                                                          [ BUSY ] DEBUG: status reported to profile_up as:
    DEBUG: Loading profile network1
    DEBUG: Configuring interface wlan0
    DEBUG: wireless_up start_wpa wlan0 /run/network/wpa.wlan0/wpa.conf nl80211,wext
    Successfully initialized wpa_supplicant
    DEBUG: wireless_up Configuration generated at /run/network/wpa.wlan0/wpa.conf
    DEBUG: wireless_up wpa_reconfigure wlan0
    DEBUG: wpa_cli -i wlan0 -p /run/wpa_supplicant reconfigure
    DEBUG: wireless_up ifup
    DEBUG: wireless_up wpa_check
    DEBUG: Loading profile network1
    DEBUG: Configuring interface wlan0
    DEBUG: ethernet_up bring_interface up wlan0
    DEBUG: ethernet_up dhcpcd -qL -t 10 wlan0
    DEBUG:
    > DHCP IP lease attempt failed.
    DEBUG: Loading profile network1
    DEBUG: Configuring interface wlan0
    DEBUG: Loading profile network1
    DEBUG: Configuring interface wlan0
    DEBUG: ethernet_down bring_interface flush wlan0
    DEBUG: wireless_down stop_wpa wlan0
    DEBUG: wpa_cli -i wlan0 -p /run/wpa_supplicant terminate
    DEBUG: profile_up connect failed

  • Custom ClassLoader - trying to use different version of SNMP library than WebLogic Server 8.1 uses

    Problem: my J2EE ear file uses the AdventNet third-party library to do
    SNMP work. WebLogic Server 8.1 also uses this AdventNet third-party
    library to do its own SNMP work. The problem is the version used by
    WebLogic 8.1 is older than the version I use, so my code tries to run
    and finds the wrong version of the library that WebLogic 8.1 has supplied.
    Possible solution: I plan to have a custom classloader (derived from
    java.lang.ClassLoader) that gets hooked in to my threads using
    Thread.setContextClassLoader(). This custom classloader would look for
    the AdventNet library jars in a spot I specify so it would find the
    correct ones. Since I want to change the usual classloader behavior of
    "look in parent classloaders first, then child classloader" to "look in
    child classloader first, then in parent classloaders" I can't just
    override ClassLoader.findClass(). I, at a minimum, have to override
    ClassLoader.loadClass() to look in my classloader first. I have
    questions about this:
    1. What other methods do I have to override? For example, which of the
    resource-related methods do I need to override so that resources are
    searched for first in my classloader then in parent classloaders?
    2. I was thinking of using a URLClassLoader as a helper to my
    classloader, invoking its method(s) from my custom classloader's
    method(s) to actually load the classes from URLs that are not on the
    standard classpath. I was planning to set it up with a custom parent
    classloader that can't find anything, so that the helper URLClassLoader
    would only ever find classes/resources in the URLs I provide to it. Does
    this approach make sense? Have you seen anything like this done before?
    3. Is there any way around this problem besides a custom ClassLoader? A
    buggy custom ClassLoader would have problems which AFAIK would be
    difficult to track down as ClassLoader problems.
    Thanks in advance for any help you can provide.

    Alvin wrote:
    Hi,
    I am experiencing the same problme and
    even I tried to put the AdventNet jar files
    before weblogic.jar I still cannot get it
    to work
    Would you help me out here.
    Thanks,
    -AlvinI finally figured out a way to do it using a custom classloader that
    looked in the directory where I kept the version of AdventNet I wanted
    before looking in the normal places classloaders look.
    How it works is I hook two classloaders at the bottom of the chain of
    classloaders. My custom BlockingClassLoader is hooked as a child of the
    normal chain of classloaders, then a URLClassLoader is hooked under
    that. The BlockingClassLoader's findClass method checks if the class
    starts with a package prefix I want to control (like "com.adventnet.").
    If it does, then it acts like it can't find the class. This makes its
    child, the URLClassLoader, try to find the class. The URLClassLoader
    is given the URL of places to look for classes that match the directory
    I keep the version of AdventNet I want in. When I load a class, I
    directly tell the URLClassLoader to load it so that it is loaded as I want.
    There's more to it than this. I had to override some other methods in
    my BlockingClassLoader and do some other stuff. I'm not sure if I can
    share the source code, as it was developed on company time and thus is
    owned by the company. Feel free to ask questions though.
    I haven't tried this solution very long (basically just unit tested it)
    but it looks promising.

  • SNMP Configuration on solaris10

    Please can anybody put some light on SNMP configuration on Solaris 10.I am newbie on this.I read SMA Agaent on solaris 10 is NET-SNMP compliant.I need to monitor disk usage,CPU load ..So I configured snmpd.conf (inside /etc/sma/snmp) for this.The traps I am getting are of series 1.3.6.1.4.1.8072.3.2.3.But I am not able to figure the MIB s which contains the description of these kind of traps.
    Please help me.

    Hi, I am on 12.1 weblogic, and I am stuck on where you set the SNMP Servername and port number.
    We are on windows 2008, I see there is a services, SNMP .
    Is there something I need to do on the weblogic side before i get into the SNMP agenets and traps, this part I understand, I am just unsure where to add the SNMP Servername and the user I wish the emails to go to.
    I see in the security realms the user i can add to the group monitors.
    -->, I am running WL 10.3 and SNMP works fine. The cluster generates traps based on particular mbeans, such as when a server's health state is not "OK", or when there are JDBC connection issues. You have to create a new SNMP agent within the admin server then build the individual traps ( String, Gauge, Counter, etc. ) and make sure you have a Trap Destination.

  • Issuing snmp alarms in weblogic

    Hi,
    I think there is a way for WebLogic (or EM FMC Control) to be configured to generate an SNMP alarm when there are app or managed server problems ?
    Regards,
    Harsha

    To communicate with the WebLogic SNMP agent, you need to load the WebLogic Server management information base (MIB)
    data into the MIB Browser. Using the MIB Browser application's File menu, select the Load MIB menu item, browse to the
    ${WL_HOME}/server/lib directory, and select the BEA-WEBLOGIC-MIB.asn1 file. After expanding the BEA-WEBLOGIC-MIB folder
    on the left, you should see a list of WebLogic SNMP MIB tables.
    This is interesting, but the main reason to use SNMP is to send unsolicited messages to the SNMP manager whenever something
    happens. These unsolicited messages are called SNMP traps. WebLogic SNMP can generate traps to notify the SNMP manager
    of certain types of events. WebLogic Server comes with a set of predefined traps for server startup, server shutdown, cold start
    (admin server startup), and authentication failure. You can also set up three other types of traps: attribute change traps,
    log message traps, and monitor traps.
    The first step is to configure the Trap Viewer to listen for traps. Using the MIB Browser's View menu, select the Trap Viewer
    menu item. Use the Trap Viewer's Start button to tell it to start listening for traps on its default port, port 162, with a Community
    of public. Now, you need to configure the WebLogic Server side. For each SNMP agent, use the agent's Trap Destinations Configuration
    tab to create a new trap destination. Set the Name to WebNMSTrapViewer, the Community to public, the Host to the IP address or
    hostname of the machine where Trap Viewer is running (for example, localhost), and the Port to 162. If you are using SNMP v1.0
    style traps, you do not need to specify the Security Name or Security Level attributes, which only apply to SNMP v3 style traps.
    Do not forget to target the SNMP agent to the admin server.
    Monitor traps are used to monitor an attribute value of an MBean; they come in three types: counter, string, and gauge.
    A counter trap simply generates a trap when a particular attribute value meets or exceeds the threshold value. For example,
    you might want to define a counter monitor trap to let you know when a server is using all of the connections in the
    connection pool. To do this, you need to use the ActiveConnectionsHighCount attribute of the JDBCConnectionPoolRuntimeMBean
    with the Monitored MBean Name of MyDataSourceName on ServerName.
    A string monitor trap compares the attribute value against a string and can raise a trap when the string matches or when it differs.
    A gauge monitor trap will alert you whenever the attribute value meets or exceeds the Threshold High value and when it reaches
    or falls below the Threshold Low. If you have a JDBC connection pool where the Initial Capacity and Maximum Capacity attributes
    are different, you might want to create a gauge monitor to monitor the maximum and minimum number of connections. By setting
    the Threshold Low value to be one less than the Initial Capacity, your gauge monitor trap could monitor the
    ActiveConnectionsCurrentCount attribute of the JDBCDataSourceRuntime MBean and alert you whenever the number of active
    connections are less than the Initial Capacity (which might indicate database connectivity problems).

  • Widescreen setting in video - tv out has no effect

    after a couple of hours of experimentation, i have concluded that the widescreen setting (on/off) in the tv out section of the video settings has no effect. i believe what it SHOULD do is adjust the signal to display properly on a widescreen (16x9) tv. i believe it does nothing. video displays stretched and squashed (photos too btw). this is after experimenting with the same itunes-purchased and non-itunes purchased videos on both my ipad and my iphone 3gs, using the same tv and the apple component av cable. the iphone works fine. the only way to get a semi-acceptable display on the tv with the ipad is to the set to tv to normal 4x3 display. (late model sony lcd hdtv). then you get thick black bars around the picture. with the iphone i can leave the tv display setting at it's regular "full" option and the picture fills the screen properly. i tried both sd and hd videos on the ipad. (sd only on the iphone obviously). does anyone else have this issue? is there a bug in the ipad software? is there a problem with MY ipad? will a software restore help?
    Message was edited by: Michael Rosenberg

    i tried a fair amount of stuff. here's 2 examples:
    1) itunes store copy of an episode of the office in both hd and sd.
    2) digital copy of the new star trek movie
    so the first is 16x9 and the second is a widescreen movie 2.35-1.
    both look fine when playing back off the iphone 3gs (sd copy of the office). both looked stretched horizontally and squashed vertically when playing off the ipad. note that everything looks fine on the ipad itself. it just messed up when connecting
    the ipad to my tv. in all cases, the widescreen setting in the tv out section of the video panel on the ipad has NO effect.
    i can change the screen settings ON THE TV to fix the distortion but then i end up with thick black bars on all 4 sides. and i don't need to do this with the iphone 3gs. i continue to believe something is wrong with the ipad (or MY ipad).

  • I recently updated my macbook, i don't know if that has any effect to my recent problem, but when i try to download and save .mp3 files from the internet, like i have done in the past, it downloads but not as an mp3 file, its "blank"

    i recently updated my macbook, i don't know if that has any effect to my recent problem, but when i try to download and save .mp3 files from the internet, like i have done in the past, it downloads but not as an mp3 file, its "blank" and when i try to open it, i can't? I NEED HELP !

    Here is the download page

  • How can i display a dialog view centerly?set_window_position has no effect

    hi ,all
    i try to open a dialog which is a normal view,
    here is the code i use,
    CALL METHOD cl_wdr_runtime_services=>display_view_in_popup
            EXPORTING
              component             = component
              target_view_name      = 'V_BP_MAIN'
              target_window_name = 'W_BP_MAIN'
         MODAL                 = ABAP_TRUE
               window_title          = ''
               close_button          = abap_true
            IMPORTING
               popup_window          = popup_window
    the first time the window i opened displayed is centered ,but if i open it twice or more
    the window is in the left corner of screen,i tried to use popup_window->set_window_position( position = if_wd_window=>CO_CENTER  ).but it has no effect at all
    can anyone help me out?
    thanks in advance.

    thanks for your answer.
    I did set  the height  and width of rootuielementcontainer of the dialog view .i,e,width:1200,height 700,
    It display pretty well the first time,but when i open it the second time,the dialog view is not centered,so i can't see the whole dialog view,i have to drag it,

  • Font weight has no effect in legend in flex 4

    Font weight,Font size has no effect in legend in line chart. Also i have trouble with date time axis.What should i do about it

    Good question. That is the funny thing! With echo %classpath% everything seems to be o.k. But not one of my java editors will recognize this package. When I use this package on my other computer (XP Home) everything will be recognize correctly.
    The only way for me was to kill alle entries in all classes which are defining the package name. But this solves my main problem only temoprarry.
    P.S. Sorry , English is not my native language ;-).

  • Remote content bar does not appear for some emails with images specifically daily Twitter updates. Changing options to allow all remote content has no effect

    The broken image symbol appears in place of the images but associated web links do work ok.
    Changing options to allow all remote content has no effect. Senders' addresses are in my address book and on the exceptions list.
    Some emails (from other sources) load perfectly. Using Kaspersky Internet Security 2015 on Windows 8.1. Thunderbird 31.4.0
    Any help appreciated.

    You only need to post a URL to your web site. We can see your code in Browser.
    So, your page looks OK to me in Firefox, but when I tried to check it in IE, it choked my browser and closed it.
    You have quite a few code validation errors - no document type declaration, etc... Start by fixing these reported errors.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fntp.neuroscience.wisc.edu%2F
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • JFX 2.0 -fx-highlight-text-fill style has no effect

    When I try to set the highlight-text-fill style for a TextBox, it has no effect. The highlight-fill style, however, works as expected.
    public void start(Stage primaryStage) {
        final TextBox tb = new TextBox(100);
        tb.setStyle("-fx-font-size: 3em; -fx-text-fill: #0000ff; -fx-highlight-fill: #00ff00; -fx-highlight-text-fill: #ffffff;");
        final BorderPane root = new BorderPane();
        root.setStyle("-fx-padding: 20;");
        root.setCenter(tb);
        final Scene scene = new Scene(root, 600, 200, Color.BLACK);
        primaryStage.setTitle("JavaFX");
        primaryStage.setScene(scene);
        primaryStage.setVisible(true);
    }But this doesn't seem to be a problem of my custom styles because the default doesn't work either.
    The caspian.css in jfxrt.jar defines a white highlight-text-fill but when selecting the contents of a TextBox, the text color is black.
    Is this an error in caspian.css (maybe the style name is just misspelled) or a current limitation of the beta version?
    Regards,
    Kai

    Thanks David.
    In the meantime I noticed that -fx-prompt-text-fill seems to have the same problem. The prompt text is always gray, no matter which color I set in the style.
    Regards,
    Kai

  • Change of Min Pool Size has no effect?

    Hi, we are still using odp 9.2.0.4 on windows server 2003 webserver and oracle database 9i on Sun solaris. Recently we discovered a problem using Min Pool Size = 1, it seems that if new connections are required we sometimes get a connection timeout. So we decided to set Min Pool Size = 30, and on the testserver this works fine. In the odp tracefile (tracelevel=2) you see the 30 connections building up immediately. But on the production server we see no difference, it looks like the (new installed, application pool reset) application still uses the Min Pool Size = 1 setting.
    The connection string is build up in application code. On the testserver it was sufficient to stop and start the website and its application pool, on the production server this has no effect.
    Does anyone have an idea what the problem is??? We also tried restarting the IIS server, that did not help either. In production there are more applications using ODP.
    Regards, Paul.

    What problem are you trying to solve at this point? Simply "why is odp not tracing?" The only suggestions I really have there are
    1) make sure you restart the app after enabling tracing parameters
    2) make sure the directory you've set tracing to is open as far as permissions
    3) make sure you've set tracing in the right registry setting if you have multiple versions of ODP installed
    4) if you're trying to write to c:\ root, try creating and pointing to a different (c:\odptrace for example) directory instead.
    Hope it helps,
    Greg

  • Lidwake Set to 0 Has No Effect - Why?

    I prefer to set the lidwake setting (via terminal pmset command) to zero so that my Apple portables don't wake up when the lid is raised. In the past, that was just an extra measure of security to keep Powerbooks and MacBooks from accidentally waking when stowed inside a carrying case.
    However, doing this seems to make no difference on my MacBook Air. It wakes up when the lid is raised. Following is a list of pmset variables (pmset -g):
    Battery Power -1
    AC Power -1*
    Currently in use:
    womp 0
    deepsleepdelay 4200
    halfdim 0
    hibernatefile /var/vm/sleepimage
    disksleep 10
    sleep 30
    hibernatemode 0
    displaysleep 10
    ttyskeepawake 1
    deepsleep 1
    acwake 0
    lidwake 0
    You may notice that the hibernate mode is set to zero. That is intentional. I never leave my computer asleep more than a few hours. I don't want it to go into deep sleep where the RAM contents are written to the SSD because it's unnecessary and having 4 gigs of RAM written to SSD with every hibernation can't help the longevity of the SSD. I know that some people feel otherwise, but that's what I do. It also means I really do have instant wake from sleep because the RAM contents have been preserved at the expense of just a bit of the battery.
    But back to the lidwake problem. With a lidwake setting of zero, why does my MBA wake up when the lid is raised? I reset the SMC and PRAM.
    Thanks.

    I'll chime in that I don't know why lidwake has no effect, but also, if you leave your computer sleeping for over 70 minutes, it will still write RAM contents to disk and shut down because deepsleep is still on. On the Air, I don't believe it ever actually "hibernates" or does "safe sleep" because of the deepsleep functionality.

  • ADF Faces 10.1.3.0.4 - two-digit-year-start has no effect?

    Hi all,
    I have problem with entering date with an af:selectInputDate control:
    the user enters the date and on an onblur event, the adf field
    automatically reformats it:
    10.10.10 ->10.10.2010
    10.10.60 ->10.10.1960
    The user (customer) wants 2 things to change:
    1. if the given two digit year <= actual year (06):
    10.10.06 ->10.10.2006
    otherwise
    10.10.07 ->10.10.1907
    2. by entering a date, adf have to be accept the date without dots too:
    101006 ->10.10.2006
    1.: I tried to set theconfig param: <two-digit-year-start>2006</two-digit-year-start> (or with an EL expression) in the adf-faces-config.xml but it has no effect.
    Is it a totally wrong idea or is it a bug?
    Any other idea?
    2.: Is it possible to solve this problem with a built in control or converter? Or do i have to write my own converter?
    Thanks for any help!

    The exception is gone - I must have had something wrong in my classpath. However, I still see the warnings. Are those warnings expected when using ADF in conjunction with myfaces?

Maybe you are looking for

  • XP 64 bit constant crashes on Nehalem Mac Pro 8 core

    We have recently purchased 4 additional Mac Pros to add to our existing render farm of older 8 core Mac Pros. We run both Mac OS and XP 64 bit on all of our Mac Pros so that each machine can be used for our Motion Graphics artists running After Effec

  • Time Capsule promts for sparse bundle password when trying to restore backup to clean MacBook

    Hi, My five month old MacBook Pro 15" suffered from a "smart" HD failure. I got it serviced and it came back with a new HD, a fresh OS and a new, clean user. When trying to restore my backup from my Time Capsule, I get asked to provide the password f

  • Jarsigner errors

    I am trying to create and sign a certificate to run an applet. This is all done through command line, and the certificate is created by: keytool -genkey -keyalg rsa -alias signFiles keytool -export -alias signFiles -file tapestry then the jar is crea

  • Renaming a text file

    I need to rename a text file in a java application.Can somebody give me a sample code or some ideas on how to do that. thanks

  • MSS Iview Problem -Any  Experts help please

    I've configured ESS BP in my Portal successfully and it's running perfectly fine. Now i've imported MSS also without any problems. Now the issue is when i'm launching the My Staff iViews it gives me a message "Could not connect to the R/3 System" . T