Airport process consuming 90-100% of cpu time

I have first gen Macbook Pro, 2Ghz. Just in the last day or so, I've noticed that the "airport" process is pretty well using up one of my CPU cores. I can kill it and I don't notice any problems.
I have read the article explaining that third party VPN software can cause this, but I have no such software installed.
edit: I've noticed that it does this when first booted. If I use airport status in the menu bar to turn off the airport card and then turn it back on, the cpu usage goes back down. Anyone know what might cause this?
Macbook Pro   Mac OS X (10.4.9)  

I have first gen Macbook Pro, 2Ghz. Just in the last day or so, I've noticed that the "airport" process is pretty well using up one of my CPU cores. I can kill it and I don't notice any problems.
I have read the article explaining that third party VPN software can cause this, but I have no such software installed.
edit: I've noticed that it does this when first booted. If I use airport status in the menu bar to turn off the airport card and then turn it back on, the cpu usage goes back down. Anyone know what might cause this?
Macbook Pro   Mac OS X (10.4.9)  

Similar Messages

  • Firefox does not open when clicking on the icon, the firefox.exe process consumes 99 % of the CPU and my computer runs slowly.

    I have been a happy user of Firefox for many years. Around last April first I opened Firefox and was offered an update to v 4.42.0.0 which I accepted. Installation seemingly went well. I forget now exactly what happened but the result has been that ever since April 1 I haven’t been able to open the Firefox browser when clicking on the Firefox icon. My computer now was running very slowly. I tried to uninstall Firefox, but a popup told me I couldn’t because Firefox was in use. This confused me because I couldn’t see it being used. Only now I have found that on Task Manager processes that “firefox.exe” was consuming 99 % of the CPU. After removing firefox.exe by clicking End Process my computer ran better. I uninstalled Firefox I had on my computer and installed Firefox 5.0. Unfortunately I have the same problems: Firefox does not open when clicking on the icon, the firefox.exe process consumes 99 % of the CPU and my computer runs slowly.

    Born2die! Brilliant. I am a desktop clicker and never knew Firefox had a safe mode.
    Thank You!
    I was unable to start in safe mode initially. The second time I disabled all of the Add-Ons and she started up just fine. I enabled them one by one hoping to track down the culprit but the problem seems to have gone away.
    BTW I am running ver. 3.6.8 (in response to cor-el's earlier post) and
    Firefox is in the process of downloading 3.6.10 (which I am starting to think may have been what caused this whole problem to begin with)
    Incidentally, whats up with all of the Java Console Add Ons?
    I have:
    Java Console 6.0.11, Java Console 6.0.13, Java Console 6.0.15
    Java Console 6.0.17, Java Console 6.0.20, and Java Console 6.0.21
    What are they? Do I need them? Can I uninstall them? Is this due to using Open Office?
    Also, .NET Framework 0.0.0 Should I uninstall it?

  • Standalone program utlising 100 percent CPU time

    We are struck with a problem, our standalone program is occupying most of cpu time and limiting existing processes access to cpu. We need to bring down cpu utilization of the process.
    Java program when run polls to MQ, gets the xml message from mq, stores in databse, spans a thread which converts the message to relevant sql statements, executes them on the database. There is a limitation on maximum threads can be allowed, if more messages than max count of threads arrive they are stored and when the threads are free this message would be passed to a newly created thread.
    Thread pooling is not implemented.

    Hi
    I think I found the cause to my problem and also solved it?
    When I investigated my "Console Log" the next message was repeated :
    ... mDNSResponder[202] Failed to obtain NAT port mapping from router 10.0.1.1 external address xxx.xxx.xxx.xxx internal port 9999
    This gave me an idea and pointed in the NAT configurations.
    What have I done (which solved my problem) :
    • opened "Airport Utility"
    • selected my Airport Base Station
    • choose "manual Setup"
    • choose "internet connection"
    • after that i selected the tab "NAT"
    • where I deactivated "Enable NAT port mapping protocol"
    • and then I updated my Airport Base station
    => since then, no more the problem and de message disappeared from the "Console Log"
    Greetings
    Peter

  • Process SERVER0 its taking High CPU Time in XI

    Hi,
    We installed XI 3.0 develpoment server ,Process <b>SERVER0</b> its taking more CPU time.
    We are using AS/400 OS & DB2 datbase.Can any one tell me the reason & Solution for this.
    Thanks & Regards,
    Gopinath.

    hi,
    Actually the user XIRWBUSER its an RFC user but its running on many dialog process.I think high CPU time due to this user only.
    using 5 work processes and 3/4 of the available CPU for an extended amount of time.
    Total Total DB
    Job or CPU Sync Async CPU
    Task User Number Thread Pty Util I/O I/O Util
    WP11 D6464 485368 00000010 20 54.0 25 37 27.8
    WP05 X4242 498642 00000098 20 49.6 5 0 36.7
    WP04 X4242 498641 00000014 20 48.8 1 0 39.1
    WP02 X4242 498639 0000025A 20 47.1 2 0 37.8
    WP06 X4242 498643 000001E6 20 43.7 0 0 38.3
    WP00 X4242 498637 00000014 20 11.1 502 194 2.9
    pls can any one help me
    Regards,
    Gopinath.

  • T420s: Conexant Audio Message Service consumes a lot of CPU time in Windows 8

    Hi,
    I have here two models of T420s running Windows 7 and Windows 8.
    The Windows 7  model is quiet and the Service Needs no cpu time during idle.
    The Windows 8 model is noisy (the fan is Spinning) and the Conexant Audio Message Service (Version 1.6.0.0) is consuming 30% of cpu during idle.
    Any suggestions?
    Solved!
    Go to Solution.

    Pretty sure you can just disable the service. I did on my W520 with no ill effects.
    W520: i7-2720QM, Q2000M at 1080/688/1376, 21GB RAM, 500GB + 750GB HDD, FHD screen
    X61T: L7500, 3GB RAM, 500GB HDD, XGA screen, Ultrabase
    Y3P: 5Y70, 8GB RAM, 256GB SSD, QHD+ screen

  • Timer instance grabs 100% of CPU time

    Hi Javapeople,
    I have a java process I want to run at regular time intervals, once a day when the code is actually deployed.
    I sort of have it working but the problem is that java.exe takes all of the CPU time on my NT 4 Workstation machine and everything else running is starved.
    My code for scheduling is:
    public class PacTimer {
    Timer timer;
    public PacTimer(int seconds) {
    timer = new Timer();
    timer.scheduleAtFixedRate(new PacTask(), seconds*1000, 20000);
    class PacTask extends TimerTask {
    public void run()
    new PacMailer();
    public static void main(String args[]) {
    System.out.println("About to schedule task.");
    new PacTimer(5);
    System.out.println("Task scheduled.");
    while(true);
    In this case, the process to schedule is 'new PacMailer();' and it runs every 20 seconds.
    What's the best way of scheduling something as a background process to run at regular intervals does anybody know? Thanks very much!

    I have a similar problem in an application, instead of waiting for a schedule time it listen to events. I think the solution must be multi-threading, we can use a low priority thread to hold the bucle, but I have to check it

  • DPS 6.3 takes 100% of CPU time

    I've 2 couple of DPS 6.3 proxy servers running upstream 2 couple of DS 6.3 on RHAS 4U6, JRE 1.5.0_16-b02
    located on 2 different sites.(6.3_KS_6661375_6670752_6654625_6513526_6653253_663073_6723858 B2008.0717.2043)
    I notice about once a week to every 2 weeks that a proxy server on each site starts to send
    to me warning messages about an LDAP data source not available on the remote site.
    The proactive monitor thread logs messages such as "exceeded maximum allowed timeout of 10000 ms" .
    The problem is that when it occurs, the proxy starts to take all the available CPU time so that there's
    no other solution than restarting it .
    Known problem ?

    The problem occured today, I had about 35 threads running among which the 5 below were taking all the CPU time,
    the others being under 2% CPU :
    PID USER PR NI %CPU TIME+ %MEM VIRT RES SHR S COMMAND
    15333 root 25 0 90 14:03.92 55.3 1003m 558m 11m R java
    15309 root 21 0 85 15:12.86 55.3 1003m 558m 11m R java
    15353 root 23 0 85 17:57.53 55.3 1003m 558m 11m R java
    15335 root 25 0 68 16:56.31 55.3 1003m 558m 11m R java
    15312 root 25 0 63 4175:46 55.3 1003m 558m 11m R java
    The jstack trace extract is as follows for the above threads:
    Thread 15309: (state = IN_VM)
    - java.lang.Throwable.getStackTraceElement(int) @bci=0 (Compiled frame; information may be imprecise)
    - java.lang.Throwable.getOurStackTrace() @bci=34, line=592 (Compiled frame)
    - java.lang.Throwable.getStackTrace() @bci=1, line=583 (Compiled frame)
    - com.sun.directory.proxy.util.StringBufferPool.getBuffer() @bci=130, line=109 (Compiled frame)
    - com.sun.directory.proxy.util.Log.exceptionToString(java.lang.Exception) @bci=3, line=892 (Compiled frame)
    - com.sun.directory.proxy.asn1.ASN1Reader.readElement() @bci=958, line=513 (Compiled frame)
    - com.sun.directory.proxy.asn1.ASN1Reader.readElement(int) @bci=36, line=226 (Compiled frame)
    - com.sun.directory.proxy.server.MultiplexedOpConnectionV2.readMessage(int, int) @bci=309, line=338 (Compiled frame)
    - com.sun.directory.proxy.server.OpConnection.readMessage(int) @bci=12, line=333 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPServer.getConnection(int, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest, int) @bci=449, line=1806 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPServer.getReadConnection(int, boolean, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest) @bci=284, line=1649 (Compiled frame)
    - com.sun.directory.proxy.extensions.ProportionalLoadBalancingAlgorithm.getSearchConnection(com.sun.directory.proxy.server.ClientOperation, int, boolean, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest) @bci=371, line=2132 (Compiled frame)
    - com.sun.directory.proxy.server.BackendSet.getSearchConnection(com.sun.directory.proxy.server.ClientOperation, com.sun.directory.proxy.server.ClientConnection, int, boolean, com.sun.directory.proxy.ldap.BindRequest) @bci=70, line=822 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPDataView.getSearchContext(com.sun.directory.proxy.server.ClientOperation, boolean, java.lang.StringBuffer, com.sun.directory.proxy.server.DataViewOpContext) @bci=152, line=220 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPDataView.getSearchContext(com.sun.directory.proxy.server.ClientOperation, java.lang.StringBuffer, com.sun.directory.proxy.server.DataViewOpContext) @bci=5, line=137 (Compiled frame)
    - com.sun.directory.proxy.server.WorkerThread.runThread() @bci=166, line=150 (Compiled frame)
    Error occurred during stack walking:
    Thread 15312: (state = IN_JAVA)
    Thread 15333: (state = IN_VM)
    - java.lang.Thread.yield() @bci=0 (Compiled frame; information may be imprecise)
    - com.sun.directory.proxy.server.MultiplexedOpConnectionV2.readFromNetwork(int, int) @bci=72, line=663 (Compiled frame)
    - com.sun.directory.proxy.server.MultiplexedOpConnectionV2.readMessage(int, int) @bci=309, line=338 (Compiled frame)
    - com.sun.directory.proxy.server.OpConnection.readMessage(int) @bci=12, line=333 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPDataView.processSearchRequest(com.sun.directory.proxy.server.LDAPDataViewOpContext, com.sun.directory.proxy.ldap.LDAPMessage, com.sun.directory.proxy.server.DataViewConsumer) @bci=66, line=3387 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPDataViewOpContext.processSearchRequest(com.sun.directory.proxy.ldap.LDAPMessage, com.sun.directory.proxy.server.DataViewConsumer) @bci=10, line=203 (Compiled frame)
    - com.sun.directory.proxy.server.WorkerThread.runThread() @bci=166, line=150 (Compiled frame)
    Error occurred during stack walking:
    Thread 15335: (state = IN_VM)
    - java.net.SocketInputStream.socketRead0(java.io.FileDescriptor, byte[], int, int, int) @bci=0 (Compiled frame; information may be imprecise)
    - java.net.SocketInputStream.read(byte[], int, int) @bci=84, line=129 (Compiled frame)
    - com.sun.directory.proxy.asn1.ASN1Reader.readElement(int) @bci=36, line=226 (Compiled frame)
    - com.sun.directory.proxy.server.MultiplexedOpConnectionV2.readMessage(int, int) @bci=309, line=338 (Compiled frame)
    - com.sun.directory.proxy.server.OpConnection.readMessage(int) @bci=12, line=333 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPServer.getConnection(int, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest, int) @bci=449, line=1806 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPServer.getReadConnection(int, boolean, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest) @bci=284, line=1649 (Compiled frame)
    - com.sun.directory.proxy.extensions.ProportionalLoadBalancingAlgorithm.getSearchConnection(com.sun.directory.proxy.server.ClientOperation, int, boolean, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest) @bci=371, line=2132 (Compiled frame)
    - com.sun.directory.proxy.server.BackendSet.getSearchConnection(com.sun.directory.proxy.server.ClientOperation, com.sun.directory.proxy.server.ClientConnection, int, boolean, com.sun.directory.proxy.ldap.BindRequest) @bci=70, line=822 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPDataView.getSearchContext(com.sun.directory.proxy.server.ClientOperation, boolean, java.lang.StringBuffer, com.sun.directory.proxy.server.DataViewOpContext) @bci=152, line=220 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPDataView.getSearchContext(com.sun.directory.proxy.server.ClientOperation, java.lang.StringBuffer, com.sun.directory.proxy.server.DataViewOpContext) @bci=5, line=137 (Compiled frame)
    - com.sun.directory.proxy.server.WorkerThread.runThread() @bci=166, line=150 (Compiled frame)
    Error occurred during stack walking:
    Thread 15353: (state = IN_VM)
    - java.lang.Throwable.fillInStackTrace() @bci=0 (Compiled frame; information may be imprecise)
    - java.lang.Throwable.<init>() @bci=10, line=181 (Compiled frame)
    - com.sun.directory.proxy.util.Log.exceptionToString(java.lang.Exception) @bci=3, line=892 (Compiled frame)
    - com.sun.directory.proxy.asn1.ASN1Reader.readElement() @bci=958, line=513 (Compiled frame)
    - com.sun.directory.proxy.asn1.ASN1Reader.readElement(int) @bci=36, line=226 (Compiled frame)
    - com.sun.directory.proxy.server.MultiplexedOpConnectionV2.readMessage(int, int) @bci=309, line=338 (Compiled frame)
    - com.sun.directory.proxy.server.OpConnection.readMessage(int) @bci=12, line=333 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPServer.getConnection(int, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest, int) @bci=449, line=1806 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPServer.getReadConnection(int, boolean, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest) @bci=284, line=1649 (Compiled frame)
    - com.sun.directory.proxy.extensions.ProportionalLoadBalancingAlgorithm.getSearchConnection(com.sun.directory.proxy.server.ClientOperation, int, boolean, com.sun.directory.proxy.server.ClientConnection, com.sun.directory.proxy.ldap.BindRequest) @bci=371, line=2132 (Compiled frame)
    - com.sun.directory.proxy.server.BackendSet.getSearchConnection(com.sun.directory.proxy.server.ClientOperation, com.sun.directory.proxy.server.ClientConnection, int, boolean, com.sun.directory.proxy.ldap.BindRequest) @bci=70, line=822 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPDataView.getSearchContext(com.sun.directory.proxy.server.ClientOperation, boolean, java.lang.StringBuffer, com.sun.directory.proxy.server.DataViewOpContext) @bci=152, line=220 (Compiled frame)
    - com.sun.directory.proxy.server.LDAPDataView.getSearchContext(com.sun.directory.proxy.server.ClientOperation, java.lang.StringBuffer, com.sun.directory.proxy.server.DataViewOpContext) @bci=5, line=137 (Compiled frame)
    - com.sun.directory.proxy.server.WorkerThread.runThread() @bci=166, line=150 (Compiled frame)
    Error occurred during stack walking:
    I'll double check the proxy logs but the last time it occured, I had such like messages:
    [04/Nov/2008:10:06:02 +0100] - CONN - WARN - [Thread Worker Thread 33] Unable to create a connection to LDAP server ..... Exception: Unable to open socket to ..... -- exceeded maximum allowed timeout of 10000 ms
    [04/Nov/2008:10:06:02 +0100] - CONN - WARN - [Thread Worker Thread 32] Unable to create a connection to LDAP server ......Exception: Unable to open socket to ..... -- exceeded maximum allowed timeout of 10000 ms
    [04/Nov/2008:10:06:02 +0100] - BACKEND - WARN - Availability check indicated that LDAP server ...... is not available. Stopping server.
    [04/Nov/2008:10:06:02 +0100] - BACKEND - WARN - Availability check indicated that LDAP server ...... is not available. Stopping server.

  • Processing files takes 100% of CPU

    When downloading an album, it takes a >5 minutes for each track to get through the "Processing files" stage. iTunes uses 100% of my CPU while processing, also.
    I've used iTunes to download albums without problems before-- this seems to be a new problem.

    Go to folder "downloads" in iTunes music folder which is the temporary downloads folder for Tunes itself.
    If there is any item within (as a leftover from a former download), delete it.

  • Sockd process uses a lot of CPU time

    Hi,
    I'm running the Sun Java System Web Proxy Server version 4.02 on a SunFire V210 dual processor box running Solaris 10 with the default socks5.conf for testing.
    Just browsing a few web pages in Firefox or IE using the socks proxy boosts CPU usage from the sockd process to a staggering 50% and stay there for several minutes.
    Comparing with the old NEC reference Socks5 daemon the Sun version is really performing badly.
    The system is pretty standard though I have tuned /etc/system and the tcp stack using recommendations in the proxy administration manual. All Solaris 10 patches are installed.
    prstat output:
       PID USERNAME  SIZE   RSS STATE  PRI NICE      TIME  CPU PROCESS/NLWP
    24519 proxy    6664K 4384K cpu1     0   10   0:11:18  50% sockd/43Any ideas what's wrong or do I have to stick with the old NEC reference daemon?
    Regards
    Kasper L�vschall

    Using:
    truss -dlfo truss.out ./sockd-wdog
    Where things begin to happen:
    5259/1:          11.2858     lwp_park(0xFFBFF290, 0)                    Err#62 ETIME
    5259/1:          12.2958     lwp_park(0xFFBFF290, 0)                    Err#62 ETIME
    5259/1:          13.3058     lwp_park(0xFFBFF290, 0)                    Err#62 ETIME
    5259/1:          14.3158     lwp_park(0xFFBFF290, 0)                    Err#62 ETIME
    5259/2:          15.1858     pollsys(0xFEAEFDC8, 1, 0xFEAEFD58, 0x00000000)     = 0
    5259/1:          15.3258     lwp_park(0xFFBFF290, 0)                    Err#62 ETIME
    5259/2:          pollsys(0xFEAEFDC8, 1, 0xFEAEFD58, 0x00000000) (sleeping...)
    5259/1:          lwp_park(0xFFBFF290, 0)          (sleeping...)
    5259/1:          16.3359     lwp_park(0xFFBFF290, 0)                    Err#62 ETIME
    5259/1:          lwp_park(0xFFBFF290, 0)          (sleeping...)
    5259/1:          17.3459     lwp_park(0xFFBFF290, 0)                    Err#62 ETIME
    5259/2:          18.2382     pollsys(0xFEAEFDC8, 1, 0xFEAEFD58, 0x00000000)     = 1
    5259/2:          18.2385     accept(3, 0xFEAEFEC8, 0xFEAEFE64, SOV_DEFAULT)     = 5
    5259/2:          18.2386     lwp_unpark(43)                         = 0
    5259/43:     18.2386     lwp_park(0x00000000, 0)                    = 0
    5259/2:          18.2388     accept(3, 0xFEAEFEC8, 0xFEAEFE64, SOV_DEFAULT)     Err#11 EAGAIN
    5259/43:     18.2389     getsockname(5, 0xFE5AFEA8, 0xFE5AFDA4, SOV_DEFAULT) = 0
    5259/43:     18.2391     getpeername(5, 0xFE5AFE38, 0xFE5AFDA4, SOV_DEFAULT) = 0
    5259/43:     18.2391     read(5, 0x00063B7E, 1)                    Err#11 EAGAIN
    5259/43:     18.2407     pollsys(0xFE5AFD08, 1, 0xFE5AFCA0, 0x00000000)     = 1
    5259/43:     18.2408     read(5, "04", 1)                    = 1
    5259/43:     18.2409     read(5, "01\0 P BF9 ] c", 7)               = 7
    5259/43:     18.2411     read(5, " k l\0", 255)                    = 3
    5259/43:     18.2412     write(4, " [ 0 1 / M a r / 2 0 0 6".., 88)     = 88
    5259/43:     18.2413     so_socket(PF_INET, SOCK_STREAM, IPPROTO_IP, "", SOV_DEFAULT) = 6
    5259/43:     18.2414     fcntl(6, F_GETFL)                    = 2
    5259/43:     18.2415     fcntl(6, F_SETFL, FWRITE|FNONBLOCK)          = 0
    5259/43:     18.2416     bind(6, 0xFE5AF980, 16, SOV_SOCKBSD)          = 0
    5259/43:     18.2418     connect(6, 0xFE5AF910, 16, SOV_DEFAULT)          Err#150 EINPROGRESS
    5259/43:     18.2970     pollsys(0xFE5AF798, 1, 0xFE5AF730, 0x00000000)     = 1
    5259/43:     18.2971     getsockopt(6, SOL_SOCKET, SO_ERROR, 0xFE5AF6D0, 0xFE5AF6D4, SOV_DEFAULT) = 0
    5259/43:     18.2972     getsockname(6, 0xFE5AF980, 0xFE5AF8A4, SOV_DEFAULT) = 0
    5259/43:     18.2973     write(5, "\0 Z918782E1 511", 8)               = 8
    5259/43:     18.2974     lwp_unpark(3)                         = 0
    5259/3:          18.2974     lwp_park(0x00000000, 0)                    = 0
    5259/3:          18.2977     brk(0x00064850)                         = 0
    5259/3:          18.2977     brk(0x00078850)                         = 0
    5259/3:          18.2981     pollsys(0xFEACF458, 50, 0xFEACF3E8, 0x00000000)     = 0
    5259/3:          18.2982     pollsys(0xFEACF458, 50, 0xFEACF3E8, 0x00000000)     = 0
    5259/3:          18.2983     pollsys(0xFEACF458, 50, 0xFEACF3E8, 0x00000000)     = 0Then loades of pollsys(0xFEACF458, 50, 0xFEACF3E8, 0x00000000)     = 0 until I kill the daemon - seems like they are killing the server?
    Thanks,
    Kasper

  • Airport Process utilizing high CPU utilization

    I currently have a 13 inch MacBook Pro i7 (2012 version).  Recently I upgraded to Mavericks.  After using the computer for a day after the upgrade, I began to notice it becoming very hot and the fans running very high.  Looking at the running processes i noticed that a process called "airport" was running and utilizing high CPU times causing the heating up and fans running.  Once I stopped this process, the laptop went back to operating at normal levels.
    Unfortunately this issue began to come back several times....the "airport" process starting at any time and utilizing high CPU utilization....again only by killing this process fixed this issue.
    After seeing this behavior over several days, I decised to wipe the drive and install a clean copy of Mavericks in the computer.  Thought here was that possibly something did not carry over correctly from the upgrade from Mountain Lion to Mavericks.  Unfortunely this did not correct the issue with the "airport" process as it still is continiung to launch at any time and spike the processor until I manually kill the process.
    I do not recall this issue occuring while running Mountain Lion so it seems to be specific to Mavericks at this point.
    I was hoping to hear if any other have experienced this type of issues while running Mavericks.

    You should be able to find the information you are looking for from the default Total CPU Utilization Percentage monitor.  This monitor has a built in diagnostic task that will kick off when an alert is triggered to list the top cpu consuming processes.
     To find which processes were causing CPU to spike, simply review the State Change Events history in health explorer for the machine that was affected, for the Total CPU Utilization Percentage monitor.  I have modified my second screen shot
    to remove machine names, but you should get the idea.  If a cpu monitor went from green to red, it will run the diagnostic task and list the process information and cpu usage at the time of the alert under state change events.

  • Clouds process consuming 100% of cpu

    Whenever MBP is not able to connect to internet, the cloudd process consumes 100% cpu.
    This is draining the battery in a very short time.
    Internet connectivity, either lack there of or because of corp. firewall rules send this process into 100% consumption.
    Only work around is to disable all items in iCloud control panel, which is painful for access and re-sync.
    Robert

    Does the it eventually recover on it's own? It's possible that the JVM is doing full garbage collection.  How big is your max heap size?  I suggest to add some garbage collection debugging in the JVM_OPTS to see if it is Java's garbage collection or not.  Might as well check the heap too, to see if it's running our of memory.
    Example;
    -verbose:gc -XX:+PrintGCTimeStamps -XX:+PrintGCDetails -XX:+PrintTenuringDistribution -Xloggc:/tmp/gc.log -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/tmp
    Ron

  • Kernal Panic - processes consume CPU

    Recently the CPU in my MBP (Intel) is getting overloaded with certain processes, and it can cause a Kernal Panic after a period of stuttering. One case when this occurs is when I am using a browser to stream video (in this case firefox but also happens with safari) and either the Firefox bin or webkithostplugin suddenly starts returning CPU consumptions of up to 140%! (measured with iStat)
    I know however that this issues isn't confined to this particular process, because the problem also occurs when I use audio workstations (Live) where the process suddenly starts consuming over 100% and everything starts to jitter.
    I have installed the recent 10.6.3 update and repaired permissions.
    I will paste my kernal panic report because I have no idea what else to do
    Interval Since Last Panic Report: 7797 sec
    Panics Since Last Report: 1
    Anonymous UUID: E4F9D736-DA42-4165-9F7F-34E91E7DAFDD
    Wed Jul 7 11:34:14 2010
    panic(cpu 1 caller 0x28d59c): "pmapflushtlbs() timeout: " "cpu(s) failing to respond to interrupts, pmap=0x5317e80 cpustorespond=0x1"@/SourceCache/xnu/xnu-1504.7.4/osfmk/i386/pmap.c:3548
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x35c03b38 : 0x21b455 (0x5cf328 0x35c03b6c 0x2238b1 0x0)
    0x35c03b88 : 0x28d59c (0x58d740 0x5317e80 0x1 0x391d0e98)
    0x35c03bf8 : 0x29274b (0x5317e80 0x357dd000 0x0 0x221bb0)
    0x35c03d88 : 0x254d4b (0x5317e80 0x357dd000 0x0 0x76277)
    0x35c03df8 : 0x257d1f (0x3ca8c00 0x5317e80 0x357dd000 0x0)
    0x35c03f38 : 0x2a838c (0x52c2e18 0x357dd000 0x0 0x3)
    0x35c03fc8 : 0x29e80a (0x62f4900 0x0 0x10 0x0)
    BSD process name corresponding to current thread: firefox-bin
    Mac OS version:
    10F569
    Kernel version:
    Darwin Kernel Version 10.4.0: Fri Apr 23 18:28:53 PDT 2010; root:xnu-1504.7.4~1/RELEASE_I386
    System model name: MacBookPro2,2 (Mac-F42187C8)
    System uptime in nanoseconds: 8590582732913
    unloaded kexts:
    com.apple.driver.AppleFileSystemDriver 2.0 (addr 0xcba000, size 0x12288) - last unloaded 105342854097
    loaded kexts:
    com.paceap.kext.pacesupport.snowleopard 5.7.2
    se.coolbook.driver2 2.1.0
    com.Cycling74.driver.Soundflower 1.5.1
    at.obdev.nke.LittleSnitch 2.2.05
    com.apple.driver.AppleBluetoothMultitouch 51.2 - last loaded 402878236822
    com.apple.filesystems.msdosfs 1.6.1
    com.apple.filesystems.autofs 2.1.0
    com.apple.driver.AppleHWSensor 1.9.3d0
    com.apple.driver.AppleUpstreamUserClient 3.3.2
    com.apple.kext.ATIFramebuffer 6.1.6
    com.apple.kext.AppleSMCLMU 1.5.0d3
    com.apple.driver.AppleBacklight 170.0.24
    com.apple.ATIRadeonX1000 6.1.6
    com.apple.driver.AppleLPC 1.4.12
    com.apple.driver.SMCMotionSensor 3.0.0d4
    com.apple.driver.AirPort.Atheros 423.19.10
    com.apple.driver.AudioAUUC 1.4
    com.apple.driver.AppleHDA 1.8.7f1
    com.apple.DontSteal_Mac_OSX 7.0.0
    com.apple.driver.AudioIPCDriver 1.1.2
    com.apple.driver.AppleIntelMeromProfile 19
    com.apple.driver.ACPISMCPlatformPlugin 4.1.2b1
    com.apple.driver.AppleIRController 303.8
    com.apple.driver.AppleUSBTrackpad 1.8.1b1
    com.apple.driver.AppleUSBTCKeyEventDriver 1.8.1b1
    com.apple.driver.AppleUSBTCKeyboard 1.8.1b1
    com.apple.iokit.IOAHCIBlockStorage 1.6.2
    com.apple.iokit.SCSITaskUserClient 2.6.5
    com.apple.BootCache 31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.driver.AppleUSBHub 4.0.0
    com.apple.driver.AppleFWOHCI 4.7.1
    com.apple.driver.AppleSmartBatteryManager 160.0.0
    com.apple.driver.AppleAHCIPort 2.1.2
    com.apple.driver.AppleIntelPIIXATA 2.5.1
    com.apple.driver.AppleUSBEHCI 4.0.2
    com.apple.driver.AppleUSBUHCI 4.0.2
    com.apple.iokit.AppleYukon2 3.1.14b1
    com.apple.driver.AppleEFINVRAM 1.3.0
    com.apple.driver.AppleRTC 1.3.1
    com.apple.driver.AppleHPET 1.5
    com.apple.driver.AppleACPIButtons 1.3.2
    com.apple.driver.AppleSMBIOS 1.6
    com.apple.driver.AppleACPIEC 1.3.2
    com.apple.driver.AppleAPIC 1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient 105.10.0
    com.apple.security.sandbox 0
    com.apple.security.quarantine 0
    com.apple.nke.applicationfirewall 2.1.11
    com.apple.driver.AppleIntelCPUPowerManagement 105.10.0
    com.apple.driver.IOBluetoothHIDDriver 2.3.3f8
    com.apple.driver.AppleMultitouchDriver 204.13
    com.apple.driver.AppleProfileReadCounterAction 17
    com.apple.kext.ATI1600Controller 6.1.6
    com.apple.kext.ATISupport 6.1.6
    com.apple.iokit.IOFireWireIP 2.0.3
    com.apple.iokit.IO80211Family 311.1
    com.apple.driver.AppleUSBAudio 2.7.3f1
    com.apple.driver.AppleProfileTimestampAction 10
    com.apple.driver.AppleProfileThreadInfoAction 14
    com.apple.driver.AppleProfileRegisterStateAction 10
    com.apple.driver.AppleProfileKEventAction 10
    com.apple.driver.AppleProfileCallstackAction 20
    com.apple.driver.DspFuncLib 1.8.7f1
    com.apple.iokit.IONDRVSupport 2.1
    com.apple.iokit.IOSurface 74.0
    com.apple.iokit.IOBluetoothSerialManager 2.3.3f8
    com.apple.iokit.IOSerialFamily 10.0.3
    com.apple.driver.AppleHDAController 1.8.7f1
    com.apple.iokit.IOGraphicsFamily 2.1
    com.apple.iokit.IOHDAFamily 1.8.7f1
    com.apple.iokit.IOAudioFamily 1.7.6fc2
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.iokit.AppleProfileFamily 41
    com.apple.driver.AppleSMC 3.0.1d2
    com.apple.driver.IOPlatformPluginFamily 4.1.2b1
    com.apple.driver.CSRUSBBluetoothHCIController 2.3.3f8
    com.apple.driver.AppleUSBBluetoothHCIController 2.3.3f8
    com.apple.iokit.IOBluetoothFamily 2.3.3f8
    com.apple.driver.AppleUSBMergeNub 4.0.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 2.6.5
    com.apple.iokit.IOUSBMassStorageClass 2.6.1
    com.apple.iokit.IOUSBHIDDriver 4.0.2
    com.apple.driver.AppleUSBComposite 3.9.0
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.6.5
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily 1.6
    com.apple.iokit.IOCDStorageFamily 1.6
    com.apple.iokit.IOATAPIProtocolTransport 2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.6.5
    com.apple.iokit.IOUSBUserClient 4.0.0
    com.apple.iokit.IOFireWireFamily 4.2.6
    com.apple.iokit.IOAHCIFamily 2.0.4
    com.apple.iokit.IOATAFamily 2.5.1
    com.apple.iokit.IOUSBFamily 4.0.2
    com.apple.iokit.IONetworkingFamily 1.9
    com.apple.driver.AppleEFIRuntime 1.3.0
    com.apple.iokit.IOHIDFamily 1.6.4
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 6
    com.apple.driver.DiskImages 283
    com.apple.iokit.IOStorageFamily 1.6.1
    com.apple.driver.AppleACPIPlatform 1.3.2
    com.apple.iokit.IOPCIFamily 2.6
    com.apple.iokit.IOACPIFamily 1.3.0
    Model: MacBookPro2,2, BootROM MBP22.00A5.B07, 2 processors, Intel Core 2 Duo, 2.33 GHz, 2 GB, SMC 1.12f5
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 256 MB
    Memory Module: global_name
    AirPort: AirPort Extreme, Atheros 5416: 2.0.19.10
    Bluetooth: Version 2.3.3f8, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS541612J9SA00, 111.79 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857D
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8501, 0xfd400000
    USB Device: USB2.0 Hub, 0x05e3 (Genesys Logic, Inc.), 0x0605, 0xfd100000
    USB Device: USB to ATA/ATAPI Bridge, 0x059b (Iomega Corporation), 0x0475, 0xfd110000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x7d100000
    USB Device: Lexicon Omega, 0x1210, 0x0002, 0x3d100000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8240, 0x5d200000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x021a, 0x1d200000

    Well, I have been noticing some other issues going on and am starting to think there is some link with one of the recent apple updates (10.6.4 and ProApplications perhaps). I have found that while I am running certain applications the CPU suddenly doubles in consumption. The two cases I have found are with Ableton Live and streaming video through web browsers (firefox and safari). After some time of operation, say around 5 minutes regardless of whether any other applications are running or not, the CPU suddenly spikes, stays at double the previous, and eventually starts causing the system to stutter and crash my external soundcard and drive.
    I should probably make a new general post, but in the meantime if you have any suggestions or have seen other people with issues since a recent Apple update let me know.

  • Mdnsresponder will not quit.  Consumes above 100% CPU and kills my battery.  Also causes my fan to run constantly and my computer to get extremely hot.  Force quitting doesn't work.  It just comes back.

    The mdnsresponder will not quit.  Consumes above 100% CPU and kills my battery.  Also causes my fan to run constantly and my computer to get extremely hot.  Force quitting doesn't work.  It just comes back.   I posted about this earlier and never got an answer.  Somebody, please help. 
    Thanks.

    mDNSResponder is a background process that runs all the time. If you kill it, it's relaunched automatically.
    Please launch the Console application and select "system.log" from the file list. Enter "mDNSResponder" (without the quotes) in the search field. Post a sample of the log messages in the Console window -- only one example of each repeated message, please.

  • "airport" process uses all of the memory an cpu

    After I reinstalled my MacBook and updated to the latest version of Tiger (10.4.8) my airport network behaves very strange. When I boot my MacBook or disconnect/connect my Airport network a process called "airport" is consuming all the CPU and memory. It uses one core exclusivly and gows to 1,2 GByte of RAM (even more virtual Memory). This slows down the macbook to almost still and heats up the CPU.
    The only thing I can do is to kill the process. Then everything works fine. But this is annoying.
    It seems to make no difference if I use a wireless LAN or not. When airport is enabled then this bug occurs.

    On this thread,
    http://discussions.apple.com/thread.jspa?messageID=349
    2852, people that have Check Point Software's
    SecureClient are reporting the airport process using
    ~95% of CPU time.
    I had SecureClient installed and I can confirm that
    if you uninstall SecureClient, the airport process
    works normally again. I don't know if this is the
    only source of this problem, but if you happen to
    have SecureClient, then you might want to uninstall
    and confirm if this solves your problem.
    Also I would be curious if anyone is having this
    problem that has never had SecureClient, or any 3rd
    party VPN software.
    I can confirm that at least some of my problem with the "airport" process was related to VPN software. After uninstalling the Cisco VPN client, problems dramatically reduced. Interestingly, I still have the Checkpoint client installed, but only rarely see problems with "airport".
    MBP 2.0 GHz   Mac OS X (10.4.8)  

  • Javaw running SLOW / consuming inordinate CPU time and space

    I recently got a new IBM thinkpad and have installed the latest version of Java on it. Applets run fine in the browser, but any Java application I run, for example opening the control panel for java, takes several minutes to open, and while this is happening, my CPU is running the javaw process at 97-100% capacity and consuming about 16-20MB of space.
    Running other apps can take 5-10 minutes to launch. Once running, performance is faster, but still intolerably slow.
    I have tried downgrading to a previous version of java and find the same performance issue.
    Does anyone have any ideas as to what might be causing this performance issue?

    I have a Thinkpad which is a couple of years old. It runs 1.4 fine.
    My OS is win 98, and I had extra memory put in it to bring it up to a massive 98megs of ram.
    I think the CPU is something like 4-600mhz. (as I said, ancient).
    Something is wrong with your Thinkpad, either hardware, or software configuration.
    Oh wait! It's IBM! Of course it is farked!
    My story:
    13 months after purchase: harddrive completely fails.
    IBM's response -> "you had a 12 month warranty only... sux to be you"
    (Nb: I don't travel with the laptop... 99.9% of the time it sits there in one place and pretends to be a desktop, it gets considerably less wear and tear than a normal laptop would)
    So I replace the harddrive and soldier on.
    Eventually I upgrade to the latest version of Netbeans.
    Which promptly stops working, and futzes with the OS so that the previous
    versions of Netbeans won't work either (oh wait, this rant is supposed to
    be about IBM) (point was, I don't have enough ram to run Netbeans, but
    every other Java program runs fine - including some which factorise
    large near primes.... 60 bits is a challenge, 40 bits is near instantaneous)
    Towards the end of last year the side of my laptop screen chipped... and then
    the chip became a crack, and now it is a gaping crack. (Before it got too bad)
    I took it to an IBM repair place and they said 'oh yes, that's very common'.
    Apparently they only reinforce one side of the laptop screen...
    The good news is I've upgraded to an eMac, and am currently a happy camper.
    Of course, I'm having trouble getting the data off the laptop, because the braindead
    version of the windows disk IBM included doesn't let me install new hardware (not
    entirely true - I was able to install a USB mouse with it... woohoo.).
    I've hooked up a keyboard to the serial port (which was why I needed to move the mouse over to USB)
    but... it keeps dropping out because the serial port is loose or badly connected or something.
    The one time I tried using a network card in the expansion slot it of course failed to
    install properly (see #$%$#^@ windows disk)... after a week of trying different things
    it got stuck in the slot, and the slot broke when I pulled it out.
    The laptop is nearly completely stuffed, and falling apart...
    BUT JAVA STILL RUNS LIKE A GURU ON PRUNE JUICE!!!
    It runs like the Silver Surfer runs from Galactus when he gets that look in his eye and pulls out the jar of crunchy peanut butter.
    It runs like Jesse Owens at a KKK conference.
    Java is in fact the only reason I haven't set up a catapult to send the #$^#%&$ laptop
    through the office window of the local head of IBM with a note wrapped around it saying
    "warranty this, #@$^$%^head!!!!".
    (Actually, if it wasn't for Java, I'd have thrown the thing out the window long since)
    IBM how I despise thee. I loathe thee with a passion.
    We hates it we does. Filthy IBM, nasty IBM.

Maybe you are looking for

  • Rounding up salary increase

    HRMS application EBS 11.5.10.2 windows 2003 db 9.2.0.7 Under Self service Manager/My employee informatuion/salary increased amount and anulized salary field need to be rounded up. If salary is increased to $500, it is showing up as $499.99 and same w

  • TCODE VA01 - Delivery Plant determination for subitems

    A worklfow event is trigger and creates a sales order from a purchase order.  The system automatically assign a plant for the line item in the sale order from the main item, but our process demand that the system assign the correct delivery plant fro

  • How do I redraw a line

    I am new to this program.  I have a drawing that I need to change the angle of a line.  Any idea how I do this?

  • Exporting and CSS

    I wonder if it´s possible to export all pages from Fireworks at the same time and in that way recieve only one CSS file? In the way I do it now I recieve one CSS file per page I export. This is not the way I want it. Looking for help! / Lena

  • How to create sap.ca.ui.PictureItem in openUI5?

    can any one give me a sample code for this