MySQL very slow on Win 2000 Fast on Win XP Found a fix

Greetings,
I've recently rolled out an internal LabVIEW 8.5 application that works
with a MySQL database.  Several of the PCs required an installer. 
Although a few of them belonged to other LabVIEW developers in the
office and required only the .exe file to run. 
After setting up the OBDC connector, the application works on all the
PCs.  However, any calls to the database are brutally slow on the one
Windows 2000 machine. 
I thought perhaps the problem might be due to the fact that the LabVIEW
program was compiled on a Windows XP machine.   But even when I run the
connection test from the OBDC Data Source Configuration dialog, it
responds much slower on the Windows 2000 machine than any of the
Windows XP machines.  
-------edit---------
While in the middle of drafting this post I happened upon some information on the MySQL forums. 
Adding the following lines to the "my.ini" file in the MySQL Server 5.1 directory cleared the problem right up.
skip-host-cache
skip-name-resolve
All my clients are working fine now.  Let the weekend begin! 
Patrick Allen

Have you checked your ethernet speed/duplex settings on the ethernet port and XP machine?

Similar Messages

  • I recently bought, from the original website of Adobe, Photoshop elements 13. However, when I go with my mouse pointer over the menu, It hangs or he works very slow. Does anyone have an idea how I can fix it? I have already downloaded updates, both from A

    I recently bought, from the original website of Adobe, Photoshop elements 13. However, when I go with my mouse pointer over the menu, It hangs or he works very slow. Does anyone have an idea how I can fix it? I have already downloaded updates, both from Adobe and Windows. I have a new pc with window 8.1.

    It could be a coincidence, but I rebooted the machine and (knock on wood) PSE13 seems to be working ok.

  • Safari was very slow in opening up Google sites.  I found a discussion thread that suggested changing the "Configure IPv6" setting to "Off" in the System Preferences, Network, Advanced, TCP/IP section.  That seems to work well.  Are there any risks?

    Safari was very slow in opening up Google sites.  I found a discussion thread that suggested changing the "Configure IPv6" setting to "Off" in the System Preferences, Network, Advanced, TCP/IP section.  That seems to work well.  Are there any risks to leaving the Configure IPv6 setting to Off?

    Nope. You can always reverse that if you choose.

  • I recently downloaded and installed OS X Mavericks 10.9 on my MacbookAir3,2 and have slower operating speed, especially very slow upload of e-mail attachments.  Anyone got a fix, or advice on self-diagnosing the underlying problem?

    I recently downloaded and installed OS X Mavericks 10.9 on my MacbookAir3,2 and now seem to have slower operating speed, especially very slow upload of e-mail attachments.  Anyone got a fix, or advice on self-diagnosing the underlying problem?

    Try my Mac Performance Guide.
    If that doesn't help, post back here with the results of all the things you tried to do as part of that guide.

  • WRT54G2 - very slow at home, blazing fast at work. Any idea why?

    I have a WRT54G2 wireless router at home with a Verizon DSL internet connection.  In the last week or two my internet speed has been very, very slow.  I hooked up my laptop to the DSL modem with a network cable and the speed of the connection was fine.  I brought the WRT54G2 into my office and swapped it with  the office wireless router (Comcast cable internet connection) and the WRT54G2 worked without any problems.  The connection here in my office is absolutely fine with both wireless routers, and in fact using Speedtest.net the router from home was faster than the one in the office.
    Any ideas what would be causing the difference in connection speeds between home and office locations?  If my DSL modem is giving a good connection with a wired connection I am guessing the problem was  with the wireless router, but in the office it performs flawlessly.

    At your Home you are using DSL connection (Verizon) and at your Office you are using Comcast (Cable) ISP. The modem which you have got from your Verizon it also has a DHCP in it. So when you connect your Linksys router to your Verizon Modem, so your connection will be Like NAT behind NAT issue. So in this case when you connect your Linksys router to your Verizon Modem the speed will be slow as compared to your Office.
    So you can Call up your ISP and convert your modem into bridge mode, and i think this might solve your problem.And you will receive a good speed from your router.

  • Converting a ResultSet to XML (mysql) - very slow - need some criticism

    Preface:
    I have some data being inserting into a mySQL table every 5 minutes. Currently, there are about 275 rows. Each row has 26 (TEXT) columns, the data in those columns is no longer than 10-15 characters.
    I am using the following code to turn this data into XML which is then, through a servlet, output on a webserver. With 275 rows, this is taking around 3-4 minutes to generate the XML file. I am worried that in a week from now when the data is over 2,000 rows it will exponentially decrease in speed. Can someone give me a better route so this will run faster?
             String xml = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n\n";
           String SQLCommand = "select * from "+getDataId()+";";
           try{
                Statement stmt;     
                ResultSet rs;
               String url = "jdbc:mysql://"+getIBoxIp()+":"+getDbPort()+"/"+getDbName();          
               Connection con = DriverManager.getConnection(url,getDbUsername(), getDbPassword());                     
                    stmt = con.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
                    rs = stmt.executeQuery(SQLCommand);
                    while(rs.next()){
                      xml += "\n<row>";
                      ResultSetMetaData md = rs.getMetaData();
                      for(int i = 1; i < md.getColumnCount() + 1; i++){
                           xml += "\n\t<" + md.getColumnName(i) + ">" + rs.getString(i) + "</" + md.getColumnName(i) + ">";
                      xml += "\n</row>\n";
                    System.out.println("@@mysql> XMLSQLCommand > " + SQLCommand);          
               con.close();     
               return xml;
           }catch(Exception ex)
                System.out.println("@@mysql> SQLCommand Failed > " + SQLCommand + "\n@@mysql> Exception > " + ex.getMessage() + "");
                return xml;
           }Again, with 275 rows, I'm getting about 250 KB of data in the resulting XML file with a 3-5 minute parsing/generation time.
    Thanks in advance!!!
    Edited by: bergy on Sep 21, 2007 8:46 AM added code tags

    No, it's a good question. The page I linked to does say
    "Instead of XMLWriter, this driver uses David Megginson�s other public domain writer program, DataWriter..."
    So yeah, trying to track down Megginson's code might not be such a good idea. But the sentence quoted does suggest what should be used instead: XMLWriter. Which implies that XMLWriter was mentioned somewhere earlier in the book.
    So, following the "Prev" links to previous pages, eventually I found XMLWriter discussed a couple of pages earlier, where it says
    "More specifically, I�m going to use David Megginson�s public domain com.megginson.sax.XMLWriter class."
    I don't really find this very satisfactory as advice for beginners, so I somewhat regret doing that. It's a long time since I looked at that page myself. But it does have a link pointing to http://www.megginson.com/downloads/, where it is possible to download the Java version of XMLWriter. I'm not sure if the OP is comfortable with using downloaded software, but that download is the simplest possible Java download so it might be a good place to start.
    You could recommend using a DOM strategy, and JDOM might be a good choice, but if you can just generate the XML straight from your input, it's a better strategy to do that rather than building a DOM tree in memory and then serializing it, in my opinion.

  • Upload speed very slow, but download speed fast.

    I have a wrtp54g router (4 wired, 1 wireless and 2 voip). On my laptop with wireless connection I have a fast down and upload speed. But on my PC with wired connection, I have a faster download connection and almost no upload connection. Tested on testmy.net. Can someone help me?

    Thanks for you're reply.
    I've 1 wired PC and a XBOX360 wired. But I tested the same wired connection of my PC with my laptop --> same problem. I also tested the different ports on my router with my PC --> same problem. I recently discovered that when I only use 1 wired connection port on my router, my PC (disconnected my XBOX and also my 2 useless connections (which used to be plugged in to connect in different rooms of my house). I have a faster upload (1.2 MB) speed then before (0.2MB), it doesn't matter which port I use on my router. But still slower then my wireless connection (1.6MB).
    Offcourse, last night worked everthing fine when I wanted to adjust the MTU settings. 1.7 MB upload with the different MTU settings and al my ports filled with connections.

  • IPad mini with retina very slow and battery drains fast

    my ipad mini 2 is only ten months old. After getting the iOS 8 currently on ios8.0.2, wifi internet speed is only 25% of the normal speed (compared to what my imac tested), battery drains 1% every 3 minutes or so. All of these after I restored it to factory setting per Apple support suggestion. is there any fix for this soon? why is the issue only affecting some but not all users? Is there anything I can do for my ipad? I have only been using it lighty (have installed like less than ten app's) but this is still very frustrating.

    How to Fix a Slow iPad
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-A-Slow-iPad.htm
    iPad running slow? How to speed up a slow iPad
    http://appletoolbox.com/2012/07/ipad-running-slow-how-to-speed-up-a-slow-ipad/
    If You Think iOS 7 Feels Slow Here’s How to Speed It Up
    http://osxdaily.com/2013/09/23/ios-7-slow-speed-it-up/
    You may have many apps open which can possibly cause the slowdown and possibly the loss of wifi. In iOS 4-6 double tap your Home button & at the bottom of the screen you will see the icons of all open apps. Close those you are not using by pressing on an icon until all icons wiggle - then tap the minus sign. For iOS 7 users, there’s an easy way to see which apps are open in order to close them. By double-tapping the home button on your iPhone or iPad, the new multitasking feature in iOS 7 shows full page previews of all your open apps. Simply scroll horizontally to see all your apps, and close the apps with a simple flick towards the top of the screen.
     Cheers, Tom

  • Hardwired via 5505 is very slow. WiFi is fast.

    Hello from Ecuador,
    We have a very small office with no more than 10/15 users at a time.  Our ISP provided speed is 7down and 3up.
    We have deployed an ASA5505 in our network, and our very simple topology looks like:
    Cable Modem > ASA5505 ------- AP1262 (via PoE port on ASA)
                                     |
                                     |
                         Plug and Play D-Link 24port Switch 
    When users connect to the AP, they are getting the normal browsing speeds as mentioned above.
    However, all the hardwired users' download speed is less than 1mb (their upload is normal).
    (Note that when we deploy the old Linksys router back in-place of the ASA, everything seems back to normal.  Its only with the ASA we are experiencing this).
    Below is the very simple config from the ASA. 
    Any advice/guidance is highly appreciated on how to resolve the speeds for our hardwire users.
    ASA Version 8.4(2)
    hostname WCS-Ecuador
    enable password 6klE4j2hhSXaLMNg encrypted
    passwd 2KFQnbNIdI.2KYOU encrypted
    names
    interface Ethernet0/0
    description LINK TO ISP
    switchport access vlan 100
    duplex full
    speed 100
    interface Ethernet0/1
    duplex full
    speed 100
    interface Ethernet0/2
    interface Ethernet0/3
    interface Ethernet0/4
    interface Ethernet0/5
    interface Ethernet0/6
    interface Ethernet0/7
    interface Vlan1
    nameif INSIDE
    security-level 100
    ip address 192.168.0.1 255.255.255.0
    interface Vlan100
    nameif OUTSIDE
    security-level 0
    ip address <removed for security>
    ftp mode passive
    object network Ecuador-INSIDE
    subnet 192.168.0.0 255.255.255.0
    pager lines 24
    mtu INSIDE 1500
    mtu OUTSIDE 1500
    icmp unreachable rate-limit 1 burst-size 1
    no asdm history enable
    arp timeout 14400
    object network Ecuador-INSIDE
    nat (INSIDE,OUTSIDE) dynamic interface
    route OUTSIDE 0.0.0.0 0.0.0.0 <removed for security> 1
    timeout xlate 3:00:00
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    timeout tcp-proxy-reassembly 0:01:00
    timeout floating-conn 0:00:00
    dynamic-access-policy-record DfltAccessPolicy
    user-identity default-domain LOCAL
    aaa authentication ssh console LOCAL
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart warmstart
    telnet timeout 5
    ssh 192.168.0.0 255.255.255.0 INSIDE
    ssh timeout 5
    ssh version 2
    console timeout 0
    dhcpd dns <removed for security>
    dhcpd address 192.168.0.21-192.168.0.200 INSIDE
    dhcpd enable INSIDE
    threat-detection basic-threat
    threat-detection statistics access-list
    no threat-detection statistics tcp-intercept
    username tabbasi password eUopM1EefaUVVnUY encrypted privilege 15
    class-map inspection_default
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
      message-length maximum client auto
      message-length maximum 512
    policy-map global_policy
    class inspection_default
      inspect dns preset_dns_map
      inspect ftp
      inspect h323 h225
      inspect h323 ras
      inspect ip-options
      inspect netbios
      inspect rsh
      inspect rtsp
      inspect skinny
      inspect esmtp
      inspect sqlnet
      inspect sunrpc
      inspect tftp
      inspect sip
      inspect xdmcp
      inspect icmp
      inspect icmp error
    service-policy global_policy global
    prompt hostname context
    no call-home reporting anonymous
    call-home
    profile CiscoTAC-1
      no active
      destination address http https://tools.cisco.com/its/service/oddce/services/DDCEService
      destination address email [email protected]
      destination transport-method http
      subscribe-to-alert-group diagnostic
      subscribe-to-alert-group environment
      subscribe-to-alert-group inventory periodic monthly
      subscribe-to-alert-group configuration periodic monthly
      subscribe-to-alert-group telemetry periodic daily
    Cryptochecksum:aaa6e39ee2f83e97d59c038614a6e7d2
    : end

    Hi,
    Do you see any errors on ASA Eth0/1(to switch)?  Running the similar speed tests with wired and wifi? Client traffic on network is same as well?
    Thx
    MS

  • How do I fix a very slow Firefox browser often resulting in "Server Not Found"?

    The browser is super slow, saying 'problem loading page' and ends up showing the 'Server not found' message. Eventually I'm able to access a website after highlighting the website address and hitting enter, maybe several times. My computer is new and have made minimal changes until this problem is resolved. Problem affects e-mail, too.

    I think this is not a Firefox's bug/error.
    This is I think generated from the back-end SQL syntax of the site, which means the site created this error message, not Firefox.
    You may contact the site-owner and tell them about this error message, so they may know & fix this error.

  • IPad 2 is getting very slow after installing iOS8. Is Apple comming with a fix for it?

    iOS8 is making ipad2 extremely slow. I can't work with it anymore. When is Apple comming with a fix?

    Now, you can downgrade your iPad from iOS 8 to iOS 7, BUT do it quickly. A few days later, the way is not available any longer:
    1. Download iOS 7.1.2 firmware for your iPad 2. (just google it)
    2. Make sure you have install the latest version of iTunes.
    2. Connect your iPad to computer via a USB cable.
    3. After detected, your iPad will be shown in the left column. Click your iPad to show the control panel.
    Note: Make sure you have backups of your iPad. if not, backup it now.
    4. Under Summary tab, hold on Shift key in Windows(Option key in Mac ) click Restore iPhone....
    5. In the pop-up window, find the firmware on your computer and click Open.
    6. Then, iTunes will downgrade your iPad to iOS 7.1.2.

  • Update Process Very Slow in Oracle 8 which update bulk data

    Dear all
    i am just updating data through SQLsub-query,but i want to get to column from sub-query and need to update my source table, but there is problem is that through sub-query just return a single column while updating,but i don't wan't to re-type another query for another column due to performance issue.
    Also the other issued related performance is very slow,how should i fast update in bulk.
    Please suggest,
    Thanks

    Actually i am update time roster table with machine date, first i get from file & insert into Machine_table & then
    i make joing query & then update roster table which is like below.
    in roster table data consist 1 to last day of month of every employee.
    update roster a
    set (a.timein,a.timeout) = (select timein,timeout from machine_table mch
    where a.roster_date = mch.roster_date and a.person_id = mch.person_id);
    this query is updating around 7750 & it takes to much time.
    please help urgent thanks.

  • DNS look up very slow

    I've recently installed Arch on my new laptop and for some reason my ISP DNS server is very slow, on Win 8 everything is fine.
    I cannot surf the web neither can update pacman because i get a timed out response. I have to change the resolv.conf to the Google's DNS servers for it to work, but this is also a headache since everytime i reboot/reconnect to a network resolv.conf gets overwrite with the default dns.
    Is there any other solution to this?

    See ideas in previous thread.

  • My macbook pro is running very slow and restarts

    I was working on my 2008 Macbook Pro yesterday and it restarted on its own.  Now, when I log in, it loads very slow and will restart unexpectedly.

    Reset you SMC which can fix power-related issues, and also reset the PRAM (see below). If that doesn't fix it, please post back.
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    You might also run the Apple hardware test.  You'll need your original OS X disks to run it.

  • My mid 2010 iMac is running very slow.

    I have done all the usual things such as checking the disk is clean, closing unnecessary programmes etc.  I would rather not replace what seems to be a good machine.  Any ideas?  Below is an etrecheck report on the machine:
    Problem description:
    I have 21.5 inch mid 2010 iMac running Yosemite.  Its very slow, programmes keep crashing etc.  Could you recommend any fixes rather than me having to buy a new one?  The HD is less than half full.
    EtreCheck version: 2.1.5 (108)
    Report generated 1 January 2015 12:26:08 GMT
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      iMac (21.5-inch, Mid 2010) (Verified)
      iMac - model: iMac11,2
      1 3.2 GHz Intel Core i3 CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      empty empty empty empty
      BANK 1/DIMM0
      empty empty empty empty
      BANK 0/DIMM1
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM1
      2 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      ATI Radeon HD 5670 - VRAM: 512 MB
      iMac 1920 x 1080
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 20:6:21
    Disk Information: ℹ️
      WDC WD1001FALS-40Y6A0 disk0 : (1 TB)
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) / : 999.01 GB (661.46 GB free)
      Encrypted AES-XTS Unlocked
      Core Storage: disk0s2 999.35 GB Online
      OPTIARC DVD RW AD-5680H
    USB Information: ℹ️
      TOSHIBA External USB 3.0 1 TB
      EFI (disk2s1) <not mounted> : 210 MB
      TOSHIBA EXT (disk2s2) /Volumes/TOSHIBA EXT : 999.86 GB (581.54 GB free)
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Internal Memory Card Reader
      Apple Computer, Inc. IR Receiver
      Apple Inc. Built-in iSight
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Application Support/Avast/components/fileshield/unsigned
      [loaded] com.avast.AvastFileShield (2.1.0 - SDK 10.9) [Support]
      /Library/Application Support/Avast/components/proxy/unsigned
      [loaded] com.avast.PacketForwarder (2.0 - SDK 10.9) [Support]
      /Library/Application Support/Hotspot Shield
      [not loaded] com.anchorfree.tun (1.0.1) [Support]
      /System/Library/Extensions
      [loaded] com.Cycling74.driver.Soundflower (1.5.2) [Support]
      [loaded] jp.co.toshiba.driver.ToExtCmd (1.0.2) [Support]
    Startup Items: ℹ️
      AGMacFSWatcher: Path: /Library/StartupItems/AGMacFSWatcher
      Startup items are obsolete in OS X Yosemite
    Problem System Launch Agents: ℹ️
      [running] jp.co.Toshiba.autorun.plist [Support]
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [loaded] com.avast.userinit.plist [Support]
      [running] com.delicioussafari.DeliciousSafariAgent.plist [Support]
      [running] com.epson.epw.agent.plist [Support]
      [loaded] com.google.keystone.agent.plist [Support]
      [loaded] com.oracle.java.Java-Updater.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [loaded] com.anchorfree.ajaxserver.plist [Support]
      [loaded] com.avast.init.plist [Support]
      [loaded] com.avast.uninstall.plist [Support]
      [failed] com.avast.update.plist [Support]
      [running] com.backblaze.bzserv.plist [Support]
      [loaded] com.google.keystone.daemon.plist [Support]
      [loaded] com.microsoft.office.licensing.helper.plist [Support]
      [loaded] com.oracle.java.Helper-Tool.plist [Support]
      [loaded] com.oracle.java.JavaUpdateHelper.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [loaded] com.adobe.ARM.[...].plist [Support]
      [invalid?] com.avast.home.userinit.plist [Support]
      [running] com.backblaze.bzbmenu.plist [Support]
      [loaded] com.facebook.videochat.[redacted].plist [Support]
      [loaded] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist [Support]
      [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist [Support]
      [loaded] com.macpaw.CleanMyMac2Helper.trashWatcher.plist [Support]
      [running] com.spotify.webhelper.plist [Support]
    User Login Items: ℹ️
      Backup & Storage UNKNOWNHidden (missing value)
      Dropbox Application (/Applications/Dropbox.app)
      Backup & Storage UNKNOWNHidden (missing value)
    Internet Plug-ins: ℹ️
      Google Earth Web Plug-in: Version: 6.1 [Support]
      Default Browser: Version: 600 - SDK 10.10
      Flip4Mac WMV Plugin: Version: 2.3.8.1 [Support]
      AdobePDFViewerNPAPI: Version: 10.1.13 [Support]
      FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
      Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Support]
      Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
      QuickTime Plugin: Version: 7.7.3
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
      SharePointBrowserPlugin: Version: 14.4.7 - SDK 10.6 [Support]
      AdobePDFViewer: Version: 10.1.13 [Support]
      CouponPrinter-FireFox_v2: Version: 1.1.10 - SDK 10.6 [Support]
      EPPEX Plugin: Version: 10.0 [Support]
      JavaAppletPlugin: Version: Java 8 Update 25 Check version
    Safari Extensions: ℹ️
      wrc [Installed]
      iTube Studio [Installed]
    3rd Party Preference Panes: ℹ️
      Backblaze Backup  [Support]
      Flash Player  [Support]
      Flip4Mac WMV  [Support]
      Java  [Support]
      MacFUSE  [Support]
    Time Machine: ℹ️
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 999.01 GB Disk used: 337.55 GB
      Destinations:
      TOSHIBA EXT [Local]
      Total size: 999.86 GB
      Total number of backups: 14
      Oldest backup: 2014-12-16 03:10:34 +0000
      Last backup: 2015-01-01 12:10:03 +0000
      Size of backup disk: Too small
      Backup size 999.86 GB < (Disk used 337.55 GB X 3)
    Top Processes by CPU: ℹ️
          2% WindowServer
          1% mds_stores
          0% bztransmit
          0% bzfilelist
          0% AppleSpell
    Top Processes by Memory: ℹ️
      159 MB com.apple.WebKit.WebContent
      120 MB Safari
      47 MB com.avast.daemon
      47 MB bztransmit
      47 MB System Events
    Virtual Memory Information: ℹ️
      292 MB Free RAM
      1.20 GB Active RAM
      813 MB Inactive RAM
      735 MB Wired RAM
      39.95 GB Page-ins
      838 MB Page-outs
    Diagnostics Information: ℹ️
      Jan 1, 2015, 12:19:02 PM /Library/Logs/DiagnosticReports/iPhoto_2015-01-01-121902_[redacted].hang
      Jan 1, 2015, 12:08:48 PM /Library/Logs/DiagnosticReports/AdobeReader_2015-01-01-120848_[redacted].hang
      Jan 1, 2015, 12:08:47 PM /Library/Logs/DiagnosticReports/Safari_2015-01-01-120847_[redacted].hang
      Dec 31, 2014, 04:20:24 PM Self test - passed
      Dec 31, 2014, 03:43:36 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontd_2014-12-31-154336_[redac ted].crash
      Dec 31, 2014, 03:43:27 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontd_2014-12-31-154327_[redac ted].crash
      Dec 31, 2014, 03:43:22 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontd_2014-12-31-154322_[redac ted].crash
      Dec 31, 2014, 01:15:04 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontd_2014-12-31-131504_[redac ted].crash
      Dec 31, 2014, 01:15:02 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontd_2014-12-31-131502_[redac ted].crash
      Dec 31, 2014, 01:14:00 PM /Library/Logs/DiagnosticReports/WindowServer_2014-12-31-131400_[redacted].crash

    Hi Lex
    Its bizarre to still see cleanmymac on report below.  It wasn't listed in applications, and I just found a couple of files that I deleted.  Anyway, here is the report:
    EtreCheck version: 2.1.5 (108)
    Report generated 3 January 2015 12:18:56 GMT
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      iMac (21.5-inch, Mid 2010) (Verified)
      iMac - model: iMac11,2
      1 3.2 GHz Intel Core i3 CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      empty empty empty empty
      BANK 1/DIMM0
      empty empty empty empty
      BANK 0/DIMM1
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM1
      2 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      ATI Radeon HD 5670 - VRAM: 512 MB
      iMac 1920 x 1080
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: one day 21:51:10
    Disk Information: ℹ️
      WDC WD1001FALS-40Y6A0 disk0 : (1 TB)
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) / : 999.01 GB (664.62 GB free)
      Encrypted AES-XTS Unlocked
      Core Storage: disk0s2 999.35 GB Online
      OPTIARC DVD RW AD-5680H 
    USB Information: ℹ️
      TOSHIBA External USB 3.0 1 TB
      EFI (disk2s1) <not mounted> : 210 MB
      TOSHIBA EXT (disk2s2) /Volumes/TOSHIBA EXT : 999.86 GB (603.88 GB free)
      Apple Internal Memory Card Reader
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Built-in iSight
      Apple Computer, Inc. IR Receiver
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Application Support/Hotspot Shield
      [not loaded] com.anchorfree.tun (1.0.1) [Support]
      /System/Library/Extensions
      [loaded] com.Cycling74.driver.Soundflower (1.5.2) [Support]
      [loaded] jp.co.toshiba.driver.ToExtCmd (1.0.2) [Support]
    Startup Items: ℹ️
      AGMacFSWatcher: Path: /Library/StartupItems/AGMacFSWatcher
      Startup items are obsolete in OS X Yosemite
    Problem System Launch Agents: ℹ️
      [running] jp.co.Toshiba.autorun.plist [Support]
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [running] com.delicioussafari.DeliciousSafariAgent.plist [Support]
      [running] com.epson.epw.agent.plist [Support]
      [loaded] com.google.keystone.agent.plist [Support]
      [loaded] com.oracle.java.Java-Updater.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [loaded] com.anchorfree.ajaxserver.plist [Support]
      [running] com.backblaze.bzserv.plist [Support]
      [loaded] com.google.keystone.daemon.plist [Support]
      [loaded] com.microsoft.office.licensing.helper.plist [Support]
      [loaded] com.oracle.java.Helper-Tool.plist [Support]
      [loaded] com.oracle.java.JavaUpdateHelper.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist [Support]
      [loaded] com.adobe.ARM.[...].plist [Support]
      [running] com.backblaze.bzbmenu.plist [Support]
      [loaded] com.facebook.videochat.[redacted].plist [Support]
      [loaded] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist [Support]
      [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist [Support]
      [loaded] com.macpaw.CleanMyMac2Helper.trashWatcher.plist [Support]
      [running] com.spotify.webhelper.plist [Support]
    User Login Items: ℹ️
      Backup & Storage UNKNOWNHidden (missing value)
      Dropbox Application (/Applications/Dropbox.app)
      Backup & Storage UNKNOWNHidden (missing value)
    Internet Plug-ins: ℹ️
      Google Earth Web Plug-in: Version: 6.1 [Support]
      Default Browser: Version: 600 - SDK 10.10
      Flip4Mac WMV Plugin: Version: 2.3.8.1 [Support]
      AdobePDFViewerNPAPI: Version: 10.1.13 [Support]
      FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
      Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Support]
      Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
      QuickTime Plugin: Version: 7.7.3
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
      SharePointBrowserPlugin: Version: 14.4.7 - SDK 10.6 [Support]
      AdobePDFViewer: Version: 10.1.13 [Support]
      CouponPrinter-FireFox_v2: Version: 1.1.10 - SDK 10.6 [Support]
      EPPEX Plugin: Version: 10.0 [Support]
      JavaAppletPlugin: Version: Java 8 Update 25 Check version
    Safari Extensions: ℹ️
      wrc [Installed]
      iTube Studio [Installed]
    3rd Party Preference Panes: ℹ️
      Backblaze Backup  [Support]
      Flash Player  [Support]
      Flip4Mac WMV  [Support]
      Java  [Support]
      MacFUSE  [Support]
    Time Machine: ℹ️
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 999.01 GB Disk used: 334.39 GB
      Destinations:
      TOSHIBA EXT [Local]
      Total size: 999.86 GB
      Total number of backups: 17
      Oldest backup: 2014-12-16 03:10:34 +0000
      Last backup: 2015-01-03 11:23:40 +0000
      Size of backup disk: Too small
      Backup size 999.86 GB < (Disk used 334.39 GB X 3)
    Top Processes by CPU: ℹ️
          8% backupd
          3% WindowServer
          0% mds
          0% fseventsd
          0% bzserv
    Top Processes by Memory: ℹ️
      228 MB Safari
      168 MB Mail
      101 MB com.apple.WebKit.WebContent
      69 MB Finder
      69 MB WindowServer
    Virtual Memory Information: ℹ️
      87 MB Free RAM
      1.18 GB Active RAM
      1.11 GB Inactive RAM
      737 MB Wired RAM
      54.29 GB Page-ins
      41 MB Page-outs
    Diagnostics Information: ℹ️
      Jan 2, 2015, 06:28:06 PM /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-01-02-182806_[ redacted].cpu_resource.diag [Details]
      Jan 1, 2015, 02:28:20 PM Self test - passed
      Jan 1, 2015, 01:31:20 PM /Library/Logs/DiagnosticReports/iTunes_2015-01-01-133120_[redacted].hang
      Jan 1, 2015, 01:16:02 PM /Library/Logs/DiagnosticReports/EtreCheck_2015-01-01-131602_[redacted].hang
      Jan 1, 2015, 12:19:02 PM /Library/Logs/DiagnosticReports/iPhoto_2015-01-01-121902_[redacted].hang
      Jan 1, 2015, 12:08:48 PM /Library/Logs/DiagnosticReports/AdobeReader_2015-01-01-120848_[redacted].hang
      Jan 1, 2015, 12:08:47 PM /Library/Logs/DiagnosticReports/Safari_2015-01-01-120847_[redacted].hang
      Dec 31, 2014, 03:43:36 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontd_2014-12-31-154336_[redac ted].crash
      Dec 31, 2014, 03:43:27 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontd_2014-12-31-154327_[redac ted].crash
      Dec 31, 2014, 03:43:22 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontd_2014-12-31-154322_[redac ted].crash
      Dec 31, 2014, 01:15:04 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontd_2014-12-31-131504_[redac ted].crash
      Dec 31, 2014, 01:15:02 PM /Users/[redacted]/Library/Logs/DiagnosticReports/fontd_2014-12-31-131502_[redac ted].crash
      Dec 31, 2014, 01:14:00 PM /Library/Logs/DiagnosticReports/WindowServer_2014-12-31-131400_[redacted].crash

Maybe you are looking for

  • WCCP on ASA & traffic between physical interfaces on ASA

    Hello, I am trying to get WCCP working on the ASA for WAAS implementation. Here is a simple snapshot of my config: Eth 0/0 : Outside (to internet) Eth 0/1 : Vlan1 (20.20.0.0/16) (trunk port to remote office LAN) Eth 0/1.211 : Vlan211 (20.21.10.0/24)

  • Change Log issues - Post Upgrade

    Hi Experts, We are in the process of Upgrading BW from 3.X to BI 7. As part of this we copied our existing Production system into the sand box and basis did the technical upgrade on the same (Sand Box). Later we ran some post upgrade Jobs as part of

  • Payment Authorization Failed error

    Hey, I'm unable to purchase the PS+Lightroom special offer with my card. I've tried 2 different accounts, 3 different browsers (history clear with disk cleanup), 3 different cards (2 debit + 1 credit), 2 different computers .. I'm still unable to pur

  • Best dvd-r recording material

    I am having a problem searching for the best dvd-r material to use. I keep getting problems with canon dvd-r recording captures. Can someone guide me in the recommened brands of DVD-R material? I understand most people rely on Taiyo Yuden as the leas

  • How to replace a VI's default menu with a custom menu?

    After making some changes to my application, my custom Run-Time Menu for some VI have been replaced with the Default Run-Time Menu. I still have the *.rtm files.