Intelligent IP monitoring

hey everyone
i'm going to create a Intelligent IP monitoring with netbeans and i dont know how to start is there anyone can give me some source i can refer to?
or if anyone can help me out here that would be great.
its a router/Switch monitoring system that monitor the them and if they dont function well or they go off it will try to send sms to administrator and inform him. if anyone can help me let me know thanks

soudshoja wrote:
yeh i have good neighbors that they help and share their information and if you need their help they would help unlike some ppl.who are "some ppl"?
did you actually mean "people" when you wrote "ppl"?
get a clue, look around
this forum is all about helping people
what i want to know if this is any of your business?! i have gone throw most of the posts in this sun forums and i see so many useful thing thats why i sent a post to get better ideas and gather more information to create something better but i see some ppl that seems dont have anything better to do than sending post coming here and saying stuff which its not their businesswhat are you talking about?
when you post here, to the community, you make it the community's business
well you might want to know something else, seems to me you don't know what google is for too because if you search on it you would know what forums are for and you wouldn't post this.and just what are your perceived rules of a forum?
how do i not "know what forums are for"?
i'd love to hear you explain that
if you know anything that might help me would be glad to hear it and thankful as i am so far from other ppl that sent useful information here but if you don't please let others post some useful message and don't wast your time and specially mine.Umm, I think I mentioned JMX and SNMP. That was a pretty frickin good head start I gave you. But I don't expect you to thank me, as you're obviously upset nobody will write "teh codez" for you.
no one can say " i know everything " even thou you know what u want to make and how u want to make they are ppl out their that might give you more and better idea to improve what you going to make so i'm here to get more information and make my final project better.You "being here" won't make your final project better. Show some effort if you want help!

Similar Messages

  • Using URL in Java to send sms ( Intelligent IP Monitoring )

    hi all
    i have created a IP monitoring where in case of faulty it will send sms based on the error that has been caused in they system, i used this code before but did not responded
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileReader;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.net.InetAddress;
    import java.net.URL;
    import java.net.URLConnection;
    import java.net.UnknownHostException;
    import java.util.Vector;
    import java.util.concurrent.TimeUnit;
    import java.util.logging.Level;
    import java.util.logging.Logger;
      public void run() {
        try {
          while (go) {
            str = logs.getText();
            logs.setText(str + System.getProperty("line.separator") + name + " Start Pinging .... ");
            boolean reachable=false;
            try {
                InetAddress address = InetAddress.getByName(name);
                reachable =address.isReachable(3000);
                if (address.isReachable(3000) == false) {
                    str = logs.getText();
                    logs.setText(str + System.getProperty("line.separator") + name + " : Time Out ... ");
                    for(int i = 0 ; i < phonenumbers.size() ; i++){
                        try {
                            URL u = new URL("https://myaccount.dialnow.com/clx/sendsms.php?username= xxxxxxx&#8203; &#8203;&" +
                                    "password= xxxxxxx&#8203;&from= xxxxxxx&#8203;&to=" +
                                    phonenumbers.get(i) + "&text="
                                    + name + ":TimeOut...");
                            URLConnection uc = u.openConnection();
                        } catch (IOException ex) {
                            Logger.getLogger(menu.class.getName()).log(Level.SEVERE, null, ex);
            } catch (UnknownHostException e){
                str = logs.getText();
                logs.setText(str + System.getProperty("line.separator") + name + " : Unable to Lookup ... ");
                for(int i = 0 ; i < phonenumbers.size() ; i++){
                    try {
                        URL u = new URL("https://myaccount.dialnow.com/clx/sendsms.php?username= xxxxxxx&#8203; &#8203;&" +
                                "password= xxxxxxx&#8203;&from= xxxxxxx&#8203;&to=" +
                                phonenumbers.get(i) + "&text="
                                + name + ":Unable to Lookup...");
                        URLConnection uc = u.openConnection();
                    } catch (IOException ex) {
                        Logger.getLogger(menu.class.getName()).log(Level.SEVERE, null, ex);
            } catch (IOException e){
                str = logs.getText();
                logs.setText(str + System.getProperty("line.separator") + name + " : Unable to Reach ... ");
                for(int i = 0 ; i < phonenumbers.size() ; i++){
                    try {
                        URL u = new URL("https://myaccount.dialnow.com/clx/sendsms.php?username= xxxxxxx&#8203; &#8203;&" +
                                "password= xxxxxxx&#8203;&from= xxxxxxx&#8203;&to=" +
                                phonenumbers.get(i) + "&text="
                                + name + ":Unable to Reach...");
                        URLConnection uc = u.openConnection();
                    } catch (IOException ex) {
                        Logger.getLogger(menu.class.getName()).log(Level.SEVERE, null, ex);
            } catch(Exception e1){
                str = logs.getText();
                logs.setText(str + System.getProperty("line.separator") + name + " : Exception Error ... ");
                for(int i = 0 ; i < phonenumbers.size() ; i++){
                    try {
                        URL u = new URL("https://myaccount.dialnow.com/clx/sendsms.php?username=xxxxxxx&#8203;&" +
                                "password= xxxxxxx&#8203;&from= xxxxxxx&#8203;&to=" +
                                phonenumbers.get(i) + "&text="
                                + name + ":Exception Error...");
                        URLConnection uc = u.openConnection();
                    } catch (IOException ex) {
                        Logger.getLogger(menu.class.getName()).log(Level.SEVERE, null, ex);
            TimeUnit.SECONDS.sleep(10);
        } catch (InterruptedException e) {
          System.out.println(name + "Interrupted");
        System.out.println(name + " exiting.");
    }the system dose not give error but it dose not send sms either i found out that it was cus of the url and the gateway that iw as using so i found a new gatway which is in malaysia ( thats where im implementing my system) and this is how the new source code looks like for the URL
      URL u = new URL("http://www.bulksms2u.com/websmsapi/ISendSMS.aspx?username=xxxxx" +
                                 "&password=xxxxx&message" + name + ":Unable to Lookup..." + "&mobile="
                                 + phonenumbers.get(i) + "&sender=IP-Admin&type=1");
                        URLConnection uc = u.openConnection();i have replaced it with the old one which it was
    URL u = new URL("https://myaccount.dialnow.com/clx/sendsms.php?username= xxxxxxx&#8203; &#8203;&" +
                                    "password= xxxxxxx&#8203;&from= xxxxxxx&#8203;&to=" +
                                    phonenumbers.get(i) + "&text="
                                    + name + ":TimeOut...");this new url works i have tried it using direct url into a explorer and the sms has been sent but this way it dose not work
    dose any one have any clue what should i do to get respond for sending this sms?

    soudshoja wrote:
    i tried applying it directly into browser did not work, I thought you said it did work. The reason is that browser a lot of the time will apply URL encoding on things manually entered.
    and about ( URL encode the parameter values before concatenating them into the URL. ) i dont get what u mean can you be specific?Check java.net.URLEncoder Only specific characters are allowed in a URL, other characters need to be encoded/escaped using a process called URL encoding

  • October 1, 2008: New Early Access IPM Client Released

    All,
    We have just released to production a new EA client. This includes support for a few additional platforms, a more consistent and standardized installation method, and a few critical bug fixes that should make deployment more routine.
    Please review the client bundle README for details, including how to download/install, and a listing of supported platforms.
    Regards,
    Michael Sims, PM
    Network Services Engineering
    ******************** IPM 0.5 (Early Access) README ********************
    Intelligent Power Monitoring Service is a Smart Energy solution for the
    data center that makes it possible for customers to determine how to
    improve power efficiencies by assessing energy consumption, cooling and
    load utilization of server and storage devices.
    How to Get Started
    STEP 1: Download the IPM Software bundle
    In order to enable IPM service in your data center, you have to
    download the IPM Software bundle. You can download the bundle from the
    link - http://power.sun.com/. You will be prompted to login using your
    Sun Online Account and accept the "Evaluation License" agreement. You
    will just have to install this on the management host/system and not on
    every system.
    The IPM bundle will contains the SASM and IPM packages.
    STEP 2: Install, Configure and Activate the IPM service on your systems.
    Please follow the instructions provided in the SUNWipmdc-INSTALL.txt
    that are part of the package that you have downloaded to
    complete this step.
    STEP 3: View Reports on the Portal
    Once you are done activating the service, you will be able to monitor
    power consumption for your systems in the Portal. Please login to the
    Sun Network Services Portal - http://power.sun.com/, with your Sun
    Online account. Here you will be able to view Power consumption reports
    for the systems you have enabled the service.
    YOUR FEEDBACK
    We would like to get your feedback on problems you find with this IPM
    Software for the Solaris release. Your feedback will help us as we put
    together a higher quality release to be made available from www.sun.com
    in the near future.
    A special forum has been setup for this purpose:
    http://forums.sun.com/forum.jspa?forumID=929
    Please post your comments/questions there.
    SYSTEM REQUIREMENTS
    IPM EA software runs on Solaris 10 for SPARC(TM) and Intel platforms.
    Sun Platforms Supported for Data Collection
    Sun Fire 6800
    Sun Fire v445
    Sun Fire X4100
    Sun Fire X4500
    Sun Fire X4600
    Sun Fire T1000
    Sun Fire T2000
    Sun Fire T5440
    System Performance Recommendations
    For Example:
    Sun Fire 2100 or Sun Fire T1000 for class 1 (up to 500 systems) with 1 GB RAM
    Sun Fire 4100 or Sun Fire X4150 for class 2 (500 to 2000 systems) with 1 GB RAM
    Disk space : 50 MB
    OS : Solaris 10
    Java : JDK 1.5 or higher
    INSTALLATION INSTRUCTIONS
    Please refer to the SUNWipmdc-INSTALL.txt
    DOCUMENTATION
    The following IPM EA documents are available online:
    * http://power.sun.com
    ================================================================================
    Copyright 2008 Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto,
    California 94303 U.S.A. All rights reserved.
    Sun, Sun Microsystems, Java, SunOS, OpenWindows, and Solaris are trademarks,
    registered trademarks, or service marks of Sun Microsystems, Inc. in the U.S.A.
    and other countries. All SPARC trademarks are used under license and are
    trademarks or registered trademarks of SPARC International, Inc. in the U.S.A.
    and other countries. Products bearing SPARC trademarks are based upon an
    architecture developed by Sun Microsystems, Inc. Netscape is a trademark of
    Netscape Communications Corporation. PostScript is a trademark of Adobe
    Systems, Incorporated, which may be registered in certain jurisdictions.
    Edited by: [email protected] on Oct 1, 2008 12:02 PM

    Only a suggestion, see if it reproduces with JDK 1.5.0_08 or later.
    E.G. http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6411717

  • Feature Request - Better Multiple Monitor Support

    Lightroom's support for a second display has definitely helped my  workflow. I hope the team will consider adding more flexible multiple  monitor support in version 4. Here's why.
    I've recently  experimented with running one of my three screens in portrait mode. When  this screen hosts Lightroom's secondary display window in Loupe view,  my verticals finally get equal real estate for editing. While I've not  done hard statistics on my library, I know more than 50% of my imagery  is in portrait orientation.
    I'd like to see LR V4 support three or more screens so I could set up as follow:
    Screen 1 - main lightroom interface, would not need to be calibrated, for controls and navigation
    Screen  2 - Portrait orientation, loupe view - this would be a calibrated  display, all develop changes to verticals would be judged on this screen
    Screen  3 - Landscape orientation, loupe view - another calibrated display, all  develop changes to horizontals would be judged on this screen
    If  Adobe could make the app intelligent enough to route the image to the  correct screen based on orientation (recognizing and respecting cropping  that could change orientation) my edit sessions would certainly speed  up and I could maximize the productivity of multiple screens.
    I'd  be happy with this, but I'm also stymied by the need to switch back to  Library mode to tag images when my primary workflow has me in develop.  Ultimately everything depends on the quality of the image. Before I  invest in image-specific meta data, I have to process or at least  "test-process" an image. IMO the Quick Develop panel is useless, once  you become accustomed to the granular control of the develop sliders, it  just doesn't cut it.
    In the three monitor setup I described  above I'd love to be able to configure screen 1, with a combination of  panels from Library and Develop, so I could stay "develop centric" with  immediate access to keywording and meta. The two additional screens  would intelligently handle image display.
    I think this might  speed my workflow by 33% and having just returned from a Tour de France  project that generated 23,000 images I need all the productivity help I can  get.

    VeloDramatic wrote:
    Thanks for all those votes Rob. Now we just need to get the other 999,999 on board.
    Actually, this topic has come up a lot on this forum. At this point, I think we just need to get Adobe on board.
    VeloDramatic wrote:
     There may be another thread for this one additional thought. If Adobe does improve multiple monitor support, we should be able to optimize our previews for those screens. Even after prerendering 1:1 previews there are issues with DEVELOP doing its own thing (I believe) each time a new image is loaded. I make extensive use of the PREVIOUS button moving through my shoots and there's always a lag of one or two seconds while the develop preview loads before the button is active. In a desktop environment where multiple screens allow landscape and portrait images to be displayed full screen I'd argue that 100% of the host screen resolution would be the ideal preview. Hope that made sense.
    Yes, faster switching would be nice. I'm not sure what that would take. As it stands, there's like "9" previews generated when you do 1:1s - 100% down to tiny thumbnails. Still, one at exact monitor size that does not need to be resized at all does seem like it would be the fastest - I'm a bit on a limb though at this point.
    Rob

  • Feature Request: Consistently Intelligent Font Lists across all CS Program

    Current Problems/Inconsistencies in Font Lists + Suggested Solutions:
    NUMBER OF FONTS SIMULTANEOUSLY DISPLAYED:
    Premiere Pro (PP): 16 (too few!)
    AE: 19 (too few!)
    Photoshop: 40 (adequate)
    Illustrator: auto-maximizing (displays as many fonts as screen supports, 50 on a 1920x1080 monitor)
    *SOLUTION: Make all font lists auto-maximizing like Illustrator!
    FONT PREVIEWS:
    PP: Yes (6 user-defined characters previewed next to font names)
    AE: No previews
    Photoshop: Yes ('Sample' displayed in each font, but too small for comfortable viewing)
    Illustrator: Yes (Each font name is displayed in actual font, but this makes it inconvenient to know the name of 'Dingbat' fonts.)
    *SOLUTION: Make all font lists display font names in left column, with 'Sample' displayed in the actual fonts to the right.  When users select any text, replace 'Sample' with the first 1-30 selected characters for instant previewing in all available fonts (e.g. selecting the '&' character would display '&' in all available fonts for instant comparison). Also make font lists resizable with a horizontal zoom bar at top of list to ensure comfortable viewing for everyone.
    SCROLL BAR:
    PP & AE: Yes
    Photoshop: Yes (perfect size and color scheme for best visibility)
    Illustrator: No (current scrolling method is frustratingly slow!)
    *SOLUTION: Add a Photoshop style scroll bar to each font list for best visibility/usability.
    FONT SELECTING WITH ARROW KEYS:
    PP & AE: Yes, by arrow-keying up/down in both the font fields and font lists
    Photoshop & Illustrator: Only from the font fields. Highlighting fonts with the arrow keys in the font lists doesn't result in font visualizing.
    *SOLUTION: Allow PREVIEWING of fonts by arrow-keying up/down in font fields and font lists in all CS programs.  I emphasize 'previewing' instead of 'selecting', since previewing fonts avoids the problem of unnecessary undos being created for each font visualized with the arrow keys. (Note: Arrow-scrolling through the font field in Photoshop's Options bar works as I suggest, by 'previewing' each font without creating unnecessary undos.  Unfortunately, arrow-scrolling through the font field in Photoshop's Character panel does create useless "Set Character Style" History states for every visualized font.  This kind of inconsistency even within a single program is crazy!)
    CONCLUSION:
    CS programs are all part of the same family, and should therefore behave as such with consistently intelligent tools.  This includes font lists with a consistently intelligent design.
    Please comment and share!  Let's get these glaring font list inconsistencies finally fixed!

    If you want to do this correctly you need to file a request for each feature.
    Ripple Sequence and Chapter Markers is already implemented. Sequence markers are the same as chapter markers, yes? (Ripple Sequence Markers, select Marker > Ripple Sequence Markers.)
    Ability to print the Keyboard Shortcuts, or save all of them as a text file. also available. (hold ctrl+shift while opening. A button with clipboard appears)
    Keyboard shortcuts to scale image zoom in Source and Program tabs. available
    Keyboard shortcuts to increase or decrease playback resolution. available
    Make Export and Title windows return to the previously adjusted size and placement. They do.
    Some feature you posted are great. How about a eyedropper tool for the Color Matte?
    I find the Magnet for Snap quite visible. There is also this feature in the Pref to make the playhead snap.

  • Oracle Intelligent Agent Exe encountered a problem and needed to close

    Whenever the server is rebooted I get the error "Oracle Intelligent Agent Executable encountered a problem and needed to close". The agent won't start, and I found a work around that included deleting files from the network/agent and admin folders, then restarting the agent. This works, however the next time the server reboots I have to go through all of this again. Any ideas why this keeps occurring?
    Also, what does this agent do? I've read through some documentation and can't quite tell if I actually need it started. Do you use this agent to only remotely monitor/administer through OEM? I'm really confused and could use some insight. All my process appear to be working fine.

    Because of the error message I guess you are on Windows and database version is lower than 10g (by the way it's always a good idea to tell the environment, because Oracle runs on different platforms in different versions).
    ... 'encountered a problem and needed to close' is generic Windows error message with millions of possible reasons. So it's not possible to find remotely a solution. You are right, Intelligent Agent is a counterpart of OEM, but outside production environments rarely needed. I recommend you change the service properties from 'automatic' to 'manual' in control panel. So it does not start at reboot time.
    Werner

  • Email Server Monitoring Methods

    I am about to develop an Email Server monitoring project. I have several questions about it:
    1. Whats the best method to do it ? (in term of accuracy and work load)
    2. I've been reading on some round-robin method which expect a reply from an email server to determine the status of the server. Whats the difference between this method and the conventional way (which sends email to server and doesnt expect for a reply), Isn't the latter method sufficient and accurate enough ?
    Thats what I'd like to know. Any other suggestions are also welcome. Thanks.

    import java.io.*;
    import java.net.Socket;
    * Simple SMTP Client that allows your Java App send emails.
    * Uses Java Sockets to connect directly to an SMTP server.
    * It supports sending of plain text or HTML emails.
    * Bonus: Unlike many other Java SMTP Sockets examples, this one actually works.
    * @author Olly Oechsle, www.intelligent-web.co.uk
    public class Emailer {
        public static void main(String[] args) throws Exception {
            String results = send("localhost",
                    25,
                    "[email protected]",
                    "[email protected]",
                    "Test Email",
                    "<b>You got mail!</b>");
            System.out.println(results);
         * Sends an email.
         * @return The full SMTP conversation as a string.
        public static String send(
                String host,
                int port,
                String to,
                String from,
                String subject,
                String message) throws Exception {
            // Save the SMTP conversation into this buffer (for debugging if necessary)
            StringBuffer buffer = new StringBuffer();
            try {
                // Connect to the SMTP server running on the local machine. Usually this is SendMail
                Socket smtpSocket = new Socket(host, port);
                // We send commands TO the server with this
                DataOutputStream output = new DataOutputStream(smtpSocket.getOutputStream());
                // And recieve responses FROM the server with this
                BufferedReader input =
                        new BufferedReader(
                                new InputStreamReader(
                                        new DataInputStream(smtpSocket.getInputStream())));
                try {
                    // Read the server's hello message
                    read(input, buffer);
                    // Say hello to the server
                    send(output, "HELO localhost.localdomain\r\n", buffer);
                    read(input, buffer);
                    // Who is sending the email
                    send(output, "MAIL FROM: " + from + "\r\n", buffer);
                    read(input, buffer);
                    // Where the mail is going
                    send(output, "RCPT to: " + to + "\r\n", buffer);
                    read(input, buffer);
                    // Start the message
                    send(output, "DATA\r\n", buffer);
                    read(input, buffer);
                    // Set the subject
                    send(output, "Subject: " + subject + "\r\n", buffer);
                    // If we detect HTML in the message, set the content type so it displays
                    // properly in the recipient's email client.
                    if (message.indexOf("<") == -1) {
                        send(output, "Content-type: text/plain; charset=\"us-ascii\"\r\n", buffer);
                    } else {
                        send(output, "Content-type: text/html; charset=\"us-ascii\"\r\n", buffer);
                    // Send the message
                    send(output, message, buffer);
                    // Finish the message
                    send(output, "\r\n.\r\n", buffer);
                    read(input, buffer);
                    // Close the socket
                    smtpSocket.close();
                catch (IOException e) {
                    System.out.println("Cannot send email as an error occurred.");
            catch (Exception e) {
                System.out.println("Host unknown");
            return buffer.toString();
         * Sends a message to the server using the DataOutputStream's writeBytes() method.
         * Saves what was sent to the buffer so we can record the conversation.
        private static void send(DataOutputStream output,
                                 String data,
                                 StringBuffer buffer)
                throws IOException {
            output.writeBytes(data);
            buffer.append(data);
         * Reads a line from the server and adds it onto the conversation buffer.
        private static void read(BufferedReader br, StringBuffer buffer) throws IOException {
            int c;
            while ((c = br.read()) != -1) {
                buffer.append((char) c);
                if (c == '\n') {
                    break;
    }Is the above code considered as low level approach ?
    I tested it so far and it works only for some mail servers (https://inetmon.com and https://nav6.org). However when I tried to send an email to myself in gmail.com it doesnt work. It catches an expection and prints "Host Unknown". Any idea how to fix it ?

  • Camera LCD vs raw on pc monitor, color cast

    Dear all, I have this doubt about my 5D mk ii. The image displayed by the camera LCD is very different in comparison to the file dislapyed by DPP on my monitor. I did not a calibration , but I tried also a couple of other monitors just in case. The difference is not only in saturation and contrast, but also in a different cast: magenta in the LCD camera vs more Green in the pc monitor. Is the camera applying some kind of preset to the raw in the LCD? If yes, how to disable this function, at least for the color cast?  I use the faithfull preset in my picture style, so I don’t understand why this pretty big difference. Thanks in advance

    progster wrote:
    Dear all, I have this doubt about my 5D mk ii. The image displayed by the camera LCD is very different in comparison to the file dislapyed by DPP on my monitor. I did not a calibration , but I tried also a couple of other monitors just in case. The difference is not only in saturation and contrast, but also in a different cast: magenta in the LCD camera vs more Green in the pc monitor. Is the camera applying some kind of preset to the raw in the LCD? If yes, how to disable this function, at least for the color cast?  I use the faithfull preset in my picture style, so I don’t understand why this pretty big difference. Thanks in advanceThe camera's WB default is "Auto", and it will try to assess the ambient color temperature and make an intelligent guess. If it guesses wrong (and some models are much better at it than others, especially when tungsten or fluorescent light is present), you can always fix it in post processing. DPP gives you plenty of options - although, annoyingly, it doesn't keep track of the closest color temperature to the WB value it inferred, and the "color temperature" WB setting always starts at 5200 K (Canon's definition of "daylight").

  • Intelligent agent 10r2 on failsafe configuration

    Hi
    I'm going to install Intelligent agent 10GR2 on Oracle failsafe Environment.
    I refer to NOTE: 396659.1 .
    One Ressource group is available on each node ( 1 on node A -1 on node B
    question: should i deploy as many agent as group running .? port numbers should then be différents ?
    tks

    Tks for your reply
    For this moment i've deployed one agent agent OFF on each node .This part of configuration is ok ,
    i can monitor database from grid control.
    the goal is configuring agent for failsafe now and integrate agent OFS to ressource . ,
    I've got an error while step 'add ressource to group ' ( refer to NOTE:396659.1 paragraf 11)
    The added ressouce ( grid agent) hang online pending on the screen of failsafe manager.
    In the note it's notified to add Network name ,and IP address as dependencies, but i can find only Virtual IP adress in the scrolling box.
    any idea ??

  • Oracle 10g intelligent agent

    Hi,
    I can see the agenctl and dbsnmp in the $ORACLE_HOME/bin for 9i installations but I can't see any of that for the 10g install. Can someone please point me to where the agent executables and control scripts reside on a 10g install?
    Or the agent does not come with the 10g database software?
    Thanks

    wait,
    there is no Intelligent Agent in 10g.
    There is new kind of agent, the Enterprise Manager 10g agent. You deploy only one 10g agent per host, and it will monitor not only all your databases, but also your file systems and operating system.
    You can have both agents running, the Intelligent Agent (8i/9i) and the Grid Control Agent (10g).
    There is no way, as far as I know, to upgrade your 9i agent to 10g. You have to configure your Grid. The agents are not at all compatible, they do not use the same port and they do not use the same protocol (the 10g agent use HTTP).
    HTH
    Laurent

  • Background Intelligent Transfer stopping - windows 8

    Installing anumber of critical updates recently has messed up my laptop. At first internet explorer wouldn't load, but kept asking to reset connection. I ran system restore and a registry clea-up, which was set to run automatically by Norton Utilities. Now
    I can't install the Windows Updates anymore - even though it is set to run automatically. Emails, sent via theWindows 8 App are returned with delivery failiure, Internet explorer isn't working but other browsers do. running the troubleshooters, I found out
    that that Windows Update depens on a BIT Service, Background Intelligent Transfer, currently in the state of 'stopping'. I can't, with the administrative tools neither start or stop and restart this service. Please give me some suggestions,  my computer
    will be rendered unuseable soon as it won't install any updates for any programmes, it seems, also the Norton antivirus database. My next step to solve this would be the' Refresh your system' option, but to be honest, I have no idea if it will help, as system
    restore didn't work and also won't create any restore points now and neither does the backup utility . I suppose, I would loose all the Windows updates and installed software on my laptop.

    Hello,
    The Windows Desktop Perfmon and Diagnostic tools forum is to discuss performance monitor (perfmon), resource monitor (resmon), and task manager, focusing on HOW-TO, Errors/Problems, and usage scenarios.
    As the question is off topic here, I am moving it to the
    Where is the Forum... forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Need recommendation on new monitor for CS6 and lightroom 5 -

    I would like to upgrade my monitor for photo editing using CS6 and lightroom 5.  I have spent a lot of time reviewing several monitors and just as confused as when I started.  I am looking for a monitor in the $500 to $900 range but want to make an intelligent decision.  HELP!
    JAG-EVV

    If you have a subscription there should be no problem.  You should be able to install on two machines. If you try to activate a third machine I believe the activation server will deactivate all your activations.  Then activate the current machine. You can then re-activate one of you other machines.
    If you have a perpetual licence and have two activation you will need Adobe Customer Support to assist you.

  • Thermal event with intelligent throttling disabled

    Hi all
    We have one Oracle unbreakable Linux installed on a HP DL380 G5. Since the install we've been getting error message Tmid Thermal event with intelligent throttling disabled.
    We logged it with HP thinking it could be the memory, HP replaced the motherboard. Yet the message has not cleared. The server has 32GB memory. We removed a pair of memory en tested the server again. still the message appear. We repeated the process with all the modules. We then replaced it with new spare 2GB memory and still the message came back. Then we did a memtest still no luck.
    I am now starting to wonder if the problem does not lay with the Kernel. (it seems to happen when our Oracle DBA are importing migrated tables and data)
    Any ideas or steps to do more test or fix this issue. Not sure if we want to disable the message of showing.
    Here is some info of the server, memory, processors, kernel version and the error message:
    Linux version 2.6.18-92.1.22.0.1.el5 ([email protected]) (gcc version 4.1.2 20071124 (Red Hat 4.1.2-42)) #1 SMP Tue Dec 16 16:54:25 EST 2008
    arch
    x86_64
    meminfo
    MemTotal: 32831032 kB
    MemFree: 325276 kB
    Buffers: 699700 kB
    Cached: 30022748 kB
    SwapCached: 90040 kB
    Active: 17000236 kB
    Inactive: 14887732 kB
    HighTotal: 0 kB
    HighFree: 0 kB
    LowTotal: 32831032 kB
    LowFree: 325276 kB
    SwapTotal: 8385920 kB
    SwapFree: 8295880 kB
    Dirty: 600 kB
    Writeback: 0 kB
    AnonPages: 1075372 kB
    Mapped: 3769940 kB
    Slab: 401696 kB
    PageTables: 174980 kB
    NFS_Unstable: 0 kB
    Bounce: 0 kB
    CommitLimit: 24801436 kB
    Committed_AS: 7798452 kB
    VmallocTotal: 34359738367 kB
    VmallocUsed: 267100 kB
    VmallocChunk: 34359470055 kB
    HugePages_Total: 0
    HugePages_Free: 0
    HugePages_Rsvd: 0
    Hugepagesize: 2048 kB
    free -m
    total used free shared buffers cached
    Mem: 32061 31738 323 0 684 29326
    -/+ buffers/cache: 1727 30333
    Swap: 8189 87 8101
    cat /proc/cpuinfo
    processor : 0
    vendor_id : GenuineIntel
    cpu family : 6
    model : 23
    model name : Intel(R) Xeon(R) CPU X5260 @ 3.33GHz
    stepping : 6
    cpu MHz : 3333.342
    cache size : 6144 KB
    physical id : 0
    siblings : 2
    core id : 0
    cpu cores : 2
    fpu : yes
    fpu_exception : yes
    cpuid level : 10
    wp : yes
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall lm constant_tsc pni monitor ds_cpl vmx est tm2 cx16 xtpr lahf_lm
    bogomips : 6671.14
    clflush size : 64
    cache_alignment : 64
    address sizes : 38 bits physical, 48 bits virtual
    power management:
    processor : 1
    vendor_id : GenuineIntel
    cpu family : 6
    model : 23
    model name : Intel(R) Xeon(R) CPU X5260 @ 3.33GHz
    stepping : 6
    cpu MHz : 3333.342
    cache size : 6144 KB
    physical id : 0
    siblings : 2
    core id : 1
    cpu cores : 2
    fpu : yes
    fpu_exception : yes
    cpuid level : 10
    wp : yes
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall lm constant_tsc pni monitor ds_cpl vmx est tm2 cx16 xtpr lahf_lm
    bogomips : 6666.59
    clflush size : 64
    cache_alignment : 64
    address sizes : 38 bits physical, 48 bits virtual
    power management:
    [cat /var/log/messages | grep -i thermal
    Apr 22 13:46:28 kernel: EDAC i5000 MC0: >Tmid Thermal event with intelligent throttling disabled
    Apr 22 13:46:29 kernel: EDAC i5000 MC0: >Tmid Thermal event with intelligent throttling disabled
    Apr 22 13:46:31 kernel: EDAC i5000 MC0: >Tmid Thermal event with intelligent throttling disabled
    Apr 22 13:46:32 kernel: EDAC i5000 MC0: >Tmid Thermal event with intelligent throttling disabled
    Apr 22 13:46:38 kernel: EDAC i5000 MC0: >Tmid Thermal event with intelligent throttling disabled
    Apr 22 13:46:41 kernel: EDAC i5000 MC0: >Tmid Thermal event with intelligent throttling disabled
    Apr 22 13:46:42 kernel: EDAC i5000 MC0: >Tmid Thermal event with intelligent throttling disabled
    Apr 22 13:46:43 kernel: EDAC i5000 MC0: >Tmid Thermal event with intelligent throttling disabled                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Subject:
    kernel: EDAC i5000 MC0: >Tmid Thermal event with intelligent throttling disabled
    Findings:
    I spend nearly the whole day yesterday investigating this error. This is a bug in the current Kernel Version.
    (Linux version 2.6.18-92.1.22.0.1.el5 ([email protected]) (gcc version 4.1.2 20071124 (Red Hat 4.1.2-42)) #1 SMP Tue Dec 16 16:54:25 EST 2008)
    This bug is currently under investigation by Red hat Bugzilla.
    Breakdown of Error:
    error code is EDAC i5000 MC0
    Edac is a memory stat tool in the kernel monitoring the RAM Memory for ECC memory
    i5000 is the chipset memory controller for Intel
    This error seems to happen the majority of the time on HP DL380 G5 and some servers of the Dell range.
    Bios has its own memory stat tool. At the moment the EDAC stat tool is conflicting with the Bios monitor.
    What we done:*
    We done a memtest over 6 hr and it was successful
    we tested the memory modules by removing pairs at a time
    Then we put the original memory back in. (Spare memory)
    HP replace motherboard
    Still the message appear
    Solution:
    As the EDAC is only a memory Stat tool for the kernel and it does not have any impact on the OS or the server(none critical). We can blacklist (stop the error message for popping up) it until the next kernel release when this bug should be fixed.
    Bios are already monitoring the memory via Bios Any memory failure or thermal event will be reported
    The workaround for this problem is to prevent the i5000_edac module from loading. To do this, add the following line to the /etc/modprobe.d/blacklist file then reboot server boot.
    Thanks for both you guys for pointing me in the right direction.
    Edited by: user10737360 on 24-Apr-2009 02:13

  • OEM 9i Supporting 10g Intelligent Agents

    Hello.
    We currently use OEM 9.2.0.1 for monitoring and tracking of our 9i database instances. I want to add in our application server when we go live with iAS 9.0.4.1. We're currently running 1.0.2.2, which of course is well behind the times. Will the 10g iAS Intelligent Agent communicate with a 9i EM? If so, are there any limitations, or special considerations I need to take into account? Thanks.

    Nope. Totally different architectures.

  • Monitor solutions?

    We're using windows machines here at work and I recently requested a larger monitor due to the size of some projects I've been working on lately.
    The former monitor was 1600x1200 max.  It worked OK once I moved the properties and filmstrip windows to my 2nd monitor.  I asked for a larger one with more height and I was brought a 24" 1920x1200, which didn't solve the problem, but it did allow me to move the filmstrip back to my main monitor.
    I might try turning the 24" to portrait and see if that helps.
    So that I can have an intelligent discussion with my manager and the IT manager, I'm wondering what pixel size monitors others are using?  Especially if you're building large size simulations?
    Thanks,
    Andy

    I'm using dual monitors 22 inch running at 1920 x 1080. I have Captivate on one of the screens and storyboards / windows explorer views / graphical assets etc on the other screen.
    This setup seems to work well for me and if I need more space on my main Captivate screen I move the properties panel over on the other monitor. I always keep the timeline on the same monitor as my main Captivate window. I tried moving it as well and that was just not productive at all ;o)
    /Michael
    www.cpguru.com - Adobe Captivate Widgets, Tutorials, Tips & Tricks and much more..

Maybe you are looking for

  • Goods Issue of more than 500 items

    Is it possible to post for than 500 items? The following error is hit when doing 261 posting in MB1A. There are many items in the production order to backflush. Maximum number of items in FI reached Message no. F5727 Diagnosis The maximum number of i

  • How to fetch the data & display the data if fields got the same name in alv

    hi frnds, i need ur help. how to fetch the data & display the data if fields got the same name in alv grid format. thanks in advance, Regards, mahesh 9321043028

  • How to download a file to a predefined directory...

    Hi, I would like to download a file to a predefined directory, ie, instead of the prompt of asking the user, the directory to which he should download the file I would like to the temp folder of windows or any other directory... Can anyone please tel

  • Where Can I find the download for the ColdFusion Builder 2.0.1 updgrade

    Please indicate the URL for the ColdFusion Builder 2.0 to Coldfusion Builder 2.0.1 upgrade.  All I can find is the CFB trial download site wich does not indicate if it is the upgrade or the version.

  • Putting Macbook Pro to Sleep

    Recently, I have noticed that when I put my mac to sleep there is an extreme latency in terms of the time it takes for the computer's screen to go blank and for the actual unit to go into sleep mode. I do not seem to be able to account for the occurr