Slow Admin Api with CF8 and 100ish sandboxes

Hi
I am trying to automate the creation of sandboxes for my
cluster and have a set of scripts that use the admin api. The thing
is that it is really slow, taking over 5 seconds to return function
calls. With 2Gb of ram and 64 cores available to the jrun process I
can't see any reason this would be that slow. Any ideas how I could
speed this up or manage the sandboxes in a simpler way across a
cluster.

For anyone else that might stumble accross this, I haven't
been able to find anything in the admin api of CF8 that would
facilitate this. I'm not sure if it's possible with some Java
classes, but then I can't imagine getting the coldfusion server
settings (DSNs' etc..) would be possible.
If anyone knows otherwise, feel free to let me know. I'll
take this as my own answer for now though.

Similar Messages

  • Accessing the Admin API via Linux (and hopefully Python)

    I have been looking through the available documentation and past forum
    entries but I see nothing really on point.
    It is possible to have a complete GW system on Linux, from server to
    client. So if it is possible to administer a GW system from Linux using
    Console One, it should be possible to access the API from Linux.
    Can anyone point me towards the appropriate documentaion? Thanks
    Bob

    Bob Brandt wrote:
    > Michael Bell wrote:
    >> Yes, but there is no admin API exposed for Linux. Period.
    >>
    >> SOAP can do message store or address book related stuff. And some client
    >> option stuff. It cannot create/delete/rename users, or do most things
    >> Admin API (Win32 only) can do.
    >
    > That is very disappointing. So even though I can have a completely
    > non-M$ system, pride myself on not sending a cent to Redmond; Novell is
    > forcing me to use their competitor's (M$) inferior OS. Even the GW API
    > Gateway is not really supported anymore!
    >
    > Thats seems stupid and udderly backwards, in other words typically Novell!
    >
    > Bob
    All a matter of resources, Bob. They've had an admin api under
    development for years, just didn't have time to make it ready for Bonsai.
    You are correct, however you must have a win32 box (or try wine, but I
    doubt that's worth it). One friend of mine then wrappered the whole
    thing in a SOAP service, so he could mostly avoid thinking about windows.

  • What SMTP servers are compatible with CF8 and 9?

    Hi all. In order to buy us time until we can upgrade our farm to CF10, what SMTP email servers can we use? The enterprise is going to Exchange 2010 and I understand CF8 and 9 are not compatible with that version of Exchange.
    Thanks for your help.
    -A-

    CF is not compatible with newer versions of Exchange for the purposes of <cfexchange> functionality, but it's fine as far as SMTP connectivity goes. SMTP is an independent standard, so does not change from version to version of Exchange.
    Adam

  • Web pages slow to load with IE11 and the cursor/mouse is very slow to work until after page loads

    Web pages are very slow to load, I hve run Norton Eraser and found no issues that would cause this

    New HP Pavilion three weeks ago.  After several attempts by the 'experts' I finally got a straight answer from a tech in the Philipines yesterday, 01-29-2015.  HP and Microsoft are working to resolve the issue of slow pages and a dead cursor until the next page finally loads.  You may have discovered that Google Chrome DOES NOT have this issue.  Comments about HP would not be allowed here so I will just say, use Chrome until the issue with IE 11 is resolved.

  • Can I get some help with CF8 and Unix from this forum?

    I did my dev in my local machine running windowsXP and CF8
    In prod. environment, my CF8 runs in Unix and I'm not familiar with Unix at all.
    My manager is out for awhile and I want to do this if I could without waiting for him because in windows it is very simple.
    Here is what I did in windows and I think I should do the same in unix but unfortunately I don't know how:
    In Windows environment I have done the following successfully and easy:
    1. installed/moved a .exe file in 2 folders: 1. in cfx folder under Coldfusion8 folder and
                                                                2. and again in CFClasses folder under WEB-INF folder
    2. Then in CF8 administrator I went to SERVER SETTINGS >> Java and JVM >> under ColdFusion Class Path, I put: c:\Coldfusion8\cfx\cfx_myexe.jar >> submit
    3. Under CFX Tags >> clicked REGISTER Java CFX >> I put: cfx_myexe in Tag Name and the same in Class Name  >>submit
    Then when I go to my application, everything work as a charm!
    How can I do these things in Unix?
    When I logged into CF server in unix using my FTP FileZilla, I immediately see /space/users/www , so I'm in the root directory. I can't see anything above this directory
    In windows, CFX is found under ColdFusion8 folder AND cfclasses is found under WEB-INF folder like this:
    C:/ColdFusion8/www/WEB-INF/cfclasses
    All my CF files for the application are on C:/Inetpub/www/myfolder/
    So my questions are:
    1. How can I access point 1 using my FTP to move my exe file to the right folders
    2. Since I don't have CF administrator interface with Unix, how can I do point 2 and 3 above????
    I have searched on this forum if someone had this problem in the past and also googled it but I got no result.

    1)  If the account you use to FTP to the site does not give you permissions to the ColdFusion instlation directories, you will need to ask permission from whomever in your organization provides those permissions.
    2) You would run the same ColdFusion administrator tool.  It is usually located at yourwebsite-domain/cfide/administrator/
    If it is not located at this location, you need to ask whomever controls your ColdFusion server where it is located and how you should access it.
    In otherwords, these are not general problems that we can help you with much.  These are specific problems dealing with your organizaiton and how it has configured its systems and network.

  • Using transform api with xslt and DOM Nodes

    Hi,
    when trying to transform a xml document with xslt using the javax.xml.transform api
    providing an element node of a previously parsed document, I find that absolute
    paths are not recognized.
    The following program shows what I am basically doing (the class can be executed
    on the command line providing a stylesheet and xml instance):
    import java.io.*;
    import org.w3c.dom.*;
    import javax.xml.transform.*;
    import javax.xml.transform.dom.*;
    import javax.xml.transform.stream.*;
    import javax.xml.parsers.*;
    class Transform {
    public static void main(String [] args) throws Exception {
         TransformerFactory tfactory = TransformerFactory.newInstance();
         Transformer transformer = tfactory.newTransformer(new StreamSource(args[0]));
         DocumentBuilderFactory dfactory = DocumentBuilderFactory.newInstance();
         DocumentBuilder parser = dfactory.newDocumentBuilder();
         Document doc = parser.parse(args[1]);
         Element domElem = doc.getDocumentElement();
         // workaround
    //     StringWriter out = new StringWriter();
    //     Transformer id = tfactory.newTransformer();
    //     id.transform(new DOMSource(domElem),new StreamResult(out));
    //     String xml = out.toString();
    //     transformer.transform(new StreamSource(new StringReader(xml)), new StreamResult(System.out));
         transformer.transform(new DOMSource(domElem), new StreamResult(System.out));
    transformer.clearParameters();
    If I use this on e.g.
    xsl:
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output indent="yes" encoding="ISO-8859-1" method="xml"/>
    <xsl:template match="/">
    <xsl:value-of select="/foo/bar"/>
    </xsl:template>
    </xsl:stylesheet>
    xml:
    <foo>abc<bar>def</bar></foo>
    I get
    <?xml version="1.0" encoding="ISO-8859-1"?>
    abcdef
    instead of
    <?xml version="1.0" encoding="ISO-8859-1"?>
    def
    I think this is due to the fact, that the transformation does not recognize
    any absolutely adressed xpath correctly.
    From what I read in the API docs, I think what I'm doing should be ok.
    So: did I misunderstand something or is this a bug in the java libraries?
    I'm using j2sdk 1.4.1_01 on i386 linux.
    If I use the commented code (serializing the xml and doing the transformation
    with a StreamSource, that has to be parsed again), everything's fine.
    Of course it would be easier to parse the file directly in the example but in the
    real program, I already have a dom tree and want to transform a part of it.
    Any help appreciated.
    Thanks, Morus

    why?
    that's all the point of XSL: define what part of your
    XML you want in your XSL templates, there is no need
    to prepare a sub-DOM of your DOM.
    Ok. Right. That's an alternative.
    The problem remains, that there are some stylesheets originally written
    for the current solution and though they should work with the whole document
    as well, it's not certain.
    Actually I don't know if this ever worked. I did neither write this code nor maintained the system so far.
    btw. you would be faster by giving a StreamSource to
    your transformation.Probably yes. But that would imply to rewrite a lot of code.
    What is happening is:
    there is a SOAP answser containing a xml document as the result parameter.
    The SOAP answer is parsed (I guess by the soap classes already) and the
    result xml is extracted. That's where the element node I'm trying to transform
    stems from.
    Besides, I still don't see why DOMSource takes any node if only document nodes
    work.
    Thanks, Morus

  • MS Access Drivers with CF8 and OSX

    I have working MS Access data source - files working with dev
    ed. CF8 on XP. I just installed dev ed. of CF8 on OSX.
    I don't see any available drivers for MS Access on OSX ....
    is this possible to setup?
    Can you download and install the drivers somehow?
    Also - is there a way to setup MS Access data sources that
    are already on my web site so the production files can be accessed
    directly from CF8 dev? If so - How?
    Thanks for your help in advance!

    Does anyone know if this will work with VBA?
    - Nope. There are only two SDKs shipping with CR 2008 and later; .NET and Java
    I am fairly sure that the .Net SDK files are COM-visible so that they could be referenced by a VBA app...
    - Perhaps. However, not supported. See the supported platforms documentation;
    http://www.sdn.sap.com/irj/boc/go/portal/prtroot/docs/library/uuid/00225757-ab5c-2c10-c1a8-fb9f9f0f4ac2?quicklink=index&overridelayout=true
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Help : very slow connection speed with AEBS and iMac

    I connect to the internet using my newly purchased AEBS. I have a MacBook and an 24" iMac ( purchased in Nov 2007). My iMac showed very slow connecting speed of <1 MB/s download; with my MacBook placed just 1 foot from my iMac, the MacBook showed an amazing download speed of 20MB/s. If i connect the iMac to the AEBS using ethernet cable, it can get a very high speed.
    So, where is the problem??
    I am new to wireless, please help. I use iMac more than my MacBook at home.
    Actually, i did not touch the any of the advance setting of the AEBS.

    You know, I am experiencing the same problem. My wife's PC and iPhone are blazing fast, but my MacBook is accessing the internet at about dial-up speeds. Very frustrating and I haven't yet found the culprit.
    Anyone???

  • Third Party API with Tomcat and Axis

    I'm experimenting with creating web services in Java. I'm using tomcat and axis for this. I have successfully created and deployed some basic web services and now I want to create one using a 3rd party API. I follow the same exact procedure and when I deploy the service I check my list of deployed services through the axis page, but all my services have disappearred. Commenting out all 3rd party related methods does successfully deploy the service. Is there anything special/extra I have to do to get 3rd Party classes to function correctly in a web service?
    Thanks in advance

    what kind of third party API are using ?

  • Using Third Party APIs with Tomcat and Axis

    I'm experimenting with creating web services in Java. I'm using tomcat and axis for this. I have successfully created and deployed some basic web services and now I want to create one using a 3rd party API. I follow the same exact procedure and when I deploy the service I check my list of deployed services through the axis page, but all my services have disappearred. Commenting out all 3rd party related methods does successfully deploy the service. Is there anything special/extra I have to do to get 3rd Party classes to function correctly in a web service?
    Thanks in advance

    If you're using Tomcat, JARs in the /common/lib directory are available to all applications deployed on that instance of Tomcat.
    I prefer putting them in the WEB-INF/lib of my web app, even if that means duplication. That way my app doesn't depend on having the server set up a certain way. I deploy them as a WAR file with everything they need enclosed within,no more and no less. They're completely portable to any servlet/J2EE engine that way.
    %

  • Slow loop times with 6024E and LV2009

    Hello all,
    I have searched the forums back and forth, in addtion to the knowledge base, but I am still confused as to the slow loop times I am experiencing.  I have a 6024e PCMCIA DAQ card with a very simple VI created in LV 2009.  I am using the DAQ Assistant to collect 1 thermocouple channel on a SCXI Chassis 32 channel thermocouple module.
    The problem is that the loop times in labview is about 3 seconds.  The DAQ Assistant acquisition mode is set to "on demand".  The target sample rate is about 1 to 2 samples per second.  I have read in previous posts that the repeated creation of the task using the DAQ Assistant with the acquisition mode set to "on-demand" can slow things down.
    What really has me confused is that using this exact same method of setting the DAQ Assistant acquisition mode to "on-demand" has worked fine on the same hardware when using one of the earlier v8 versions of LabView.  I don't understand what has changed and why the loop times are so much slower.  I planned to pull the newest LV2009 off the computer and put a previous v8 version on just to confirm my observations.  In addition, I pulled up a copy of the VI that was written in one of the v8.x versions and it used the DAQ Assitants with the acquisition mode set to "on-demand" and had a loop time of 0.100 seconds.
    Any help would be appreciated.  I have been working on this all day today with no sucess.
    Thanks in advance,
    Steve

    H_baker,
    I did have the patch applied at the time I was experiencing the problems.  The DAQmx driver version was the version that was supplied on the DVD that we received for LV2009.  I believe the actual version number was something like 8.9.5.
    The loop time was determined as follows:
    A simple vi I was written in a while loop.  The data acquisition was conducted using the DAQ assistant sampling 1 channel on the SCXI thermocouple module in a SCXI 1000 chassis.  Inside the loop of the vi the getdatetime function was placed and wired to an indicator on the screen.  The vi was then ran.  Observation showed that the loop time was typically 3 seconds and sometimes 6 seconds by keeping track of the datetime indicator on the front panel.
    The problem appears to be resolved now.  I had pulled off the LV2009 installation and put back on the 8.6 installation.  Recreated the vi and everything worked fine. As a sanity check I went ahead and reinstalled LV2009.  Recreated the vi again and everything works fine now.  The only real difference between the two installations is that I am using the latest NIDAQmx drives (I believe version 9.0.5).  It could have been just some sort of transient issue that resolved itself either by reinstallation or by rebooting.   Not sure.  I was just initially very concerned given that another posting had mentioned loop times of 3 seconds just like I was experiencing.
    Thanks,
    Steve

  • Slow query times with "contains" and "or"

    We're running Oracle 9.2.0.4 on RHEL 3
    I have a simple table - "docinfo". I've create a multicolumn Text index for docinfo called "repoidx". I have five cases below with the fourth one being the most difficult to understand. I have a primary key for "docinfo" but do nott have any additional indexes on "docinfo" right now because we're still testing the design. I'm curious about what is magical about using "or" plus "contains" in the same query (case 4).
    [case 1 - simple like]
    select count(docid)
    from sa.docinfo
    where
    author like '%smith%'
    Elapsed: 00:00:00.02
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=1468 Card=1 Bytes=15)
    1 0 SORT (AGGREGATE)
    2 1 TABLE ACCESS (FULL) OF 'DOCINFO' (Cost=1468 Card=12004 Bytes=180060)
    [case 2 - simple contains]
    select count(docid)
    from sa.docinfo
    where contains(repoidx,'facts')>0
    Elapsed: 00:00:01.00
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3905 Card=1 Bytes=12)
    1 0 SORT (AGGREGATE)
    2 1 TABLE ACCESS (BY INDEX ROWID) OF 'DOCINFO' (Cost=3905 Card=21278 Bytes=255336)
    3 2 DOMAIN INDEX OF 'IDX_DOCINFO_REPOIDX' (Cost=3549)
    [case 3 - simple like _and_ simple contains]
    select count(docid)
    from sa.docinfo
    where
    contains(repoidx,'facts')>0
    and
    author like '%smith%'
    Elapsed: 00:00:00.02
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3905 Card=1 Bytes= 23)
    1 0 SORT (AGGREGATE)
    2 1 TABLE ACCESS (BY INDEX ROWID) OF 'DOCINFO' (Cost=3905 Card=1064 Bytes=24472)
    3 2 DOMAIN INDEX OF 'IDX_DOCINFO_REPOIDX' (Cost=3549)
    [case 4 - simple like _or_ simple contains]
    select count(docid)
    from sa.docinfo
    where
    contains(repoidx,'facts')>0
    or
    author like '%smith%'
    Elapsed: 00:01:37.02
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=1468 Card=1 Bytes= 23)
    1 0 SORT (AGGREGATE)
    2 1 TABLE ACCESS (FULL) OF 'DOCINFO' (Cost=1468 Card=32218 Bytes=741014)
    [case 5 - simple like union simple contains]
    select count(docid)
    from sa.docinfo
    where
    contains(repoidx,'facts')>0
    union
    select count(docid)
    from sa.docinfo
    where
    author like '%smith%'
    Elapsed: 00:00:00.04
    Execution Plan
    0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=5581 Card=2 Bytes= 27)
    1 0 SORT (UNIQUE) (Cost=5581 Card=2 Bytes=27)
    2 1 UNION-ALL
    3 2 SORT (AGGREGATE) (Cost=4021 Card=1 Bytes=12)
    4 3 TABLE ACCESS (BY INDEX ROWID) OF 'DOCINFO' (Cost=3905 Card=21278 Bytes=255336)
    5 4 DOMAIN INDEX OF 'IDX_DOCINFO_REPOIDX' (Cost=3549)
    6 2 SORT (AGGREGATE) (Cost=1560 Card=1 Bytes=15)
    7 6 TABLE ACCESS (FULL) OF 'DOCINFO' (Cost=1468 Card=12004 Bytes=180060)

    Case 1:
    There is no index on author and it would not be able to use one if there was, due to the leading %, so it does a full table scan, which is still quick, since that is all there is to the query.
    Case 2:
    It has an index on repoidx, so it uses it and it is quick.
    Case 3:
    It has an index on repoidx, so it uses it. Since "and" is used, both conditions must be met. It has quckly obtained the results that match the first condition using the index, so it only has to check those rows, not every row in the table, to see if they also match the second condition.
    Case 4:
    Either condition may be met. It does not have an index on author, so it cannot use an index for that conditiion. Either condition can be met and it cannot duplicate the rows where both conditions are met, so it cannot use the results of one condition to check the other. So, it has to do a full table scan, in order to check every row for either condition, so it is slow.
    Case 5:
    select count (docid)
    from   docinfo
    where  contains (repoidx, 'facts') > 0
    union
    select count (docid)
    from   docinfo
    where  author like '%smith%';is not the same as:
    select count (docid)
    from   (select docid
            from   docinfo
            where  contains (repoidx, 'facts') > 0
            union
            select docid
            from   docinfo
            where  author like '%smith%');which is the same as case 4 and therefore just as slow. Your case 5 is just taking the union of 2 numbers, which could result in one row or two rows, depending on whether the numbers happen to match or not. Consider the following:
    scott@ORA92> SELECT job, empno
      2  FROM   emp
      3  /
    JOB            EMPNO
    CLERK           7369
    SALESMAN        7499
    SALESMAN        7521
    MANAGER         7566
    SALESMAN        7654
    MANAGER         7698
    MANAGER         7782
    ANALYST         7788
    PRESIDENT       7839
    SALESMAN        7844
    CLERK           7876
    CLERK           7900
    ANALYST         7902
    CLERK           7934
    14 rows selected.
    scott@ORA92> SELECT job, COUNT (empno)
      2  FROM   emp
      3  GROUP  BY job
      4  /
    JOB       COUNT(EMPNO)
    ANALYST              2
    CLERK                4
    MANAGER              3
    PRESIDENT            1
    SALESMAN             4
    scott@ORA92> SELECT COUNT (empno)
      2  FROM   emp
      3  WHERE  job = 'SALESMAN'
      4  /
    COUNT(EMPNO)
               4
    scott@ORA92> SELECT COUNT (empno)
      2  FROM   emp
      3  WHERE  job = 'CLERK'
      4  /
    COUNT(EMPNO)
               4
    scott@ORA92> SELECT COUNT (empno)
      2  FROM   emp
      3  WHERE  job = 'SALESMAN'
      4  UNION
      5  SELECT COUNT (empno)
      6  FROM   emp
      7  WHERE  job = 'CLERK'
      8  /
    COUNT(EMPNO)
               4
    scott@ORA92> -- the above is the same as:
    scott@ORA92> SELECT 4 FROM DUAL
      2  UNION
      3  SELECT 4 FROM DUAL
      4  /
             4
             4
    scott@ORA92> -- it is not the same as:
    scott@ORA92> SELECT COUNT (empno)
      2  FROM   (SELECT empno
      3            FROM   emp
      4            WHERE  job = 'SALESMAN'
      5            UNION
      6            SELECT empno
      7            FROM   emp
      8            WHERE  job = 'CLERK')
      9  /
    COUNT(EMPNO)
               8
    scott@ORA92> -- if the numbers are different, you get 2 rows:
    scott@ORA92> SELECT COUNT (empno)
      2  FROM   emp
      3  WHERE  job = 'ANALYST'
      4  UNION
      5  SELECT COUNT (empno)
      6  FROM   emp
      7  WHERE  job = 'MANAGER'
      8  /
    COUNT(EMPNO)
               2
               3
    scott@ORA92> -- the above is the same as:
    scott@ORA92> SELECT 2 FROM DUAL
      2  UNION
      3  SELECT 3 FROM DUAL
      4  /
             2
             2
             3
    scott@ORA92> -- it is not the same as:
    scott@ORA92> SELECT COUNT (empno)
      2  FROM   (SELECT empno
      3            FROM   emp
      4            WHERE  job = 'ANALYST'
      5            UNION
      6            SELECT empno
      7            FROM   emp
      8            WHERE  job = 'MANAGER')
      9  /
    COUNT(EMPNO)
               5

  • Weird Slow motion effect with Motion4 and FCP7.

    Hi everyone,
    I was testing a simple slow motion clip when I encountered a weird issue with it.
    Basically the clip of a person running in a room where there is a bookshelf and the weird effect is that it looks like there is an "halo" around the person and within such "overlap" everything on that path looks "melted/vibrant" distorted.
    To better clarify the issue I uploaded a sample clip here:
    http://www.vimeo.com/5891093
    After doing some tests I've found a workaround to this. So the sample clip shows the problem and the portion without any problem.
    The clip was shot in XDCAM EX 720p 25fps.
    After ingesting and importing the MOV file into Motion I had exported the slowed clip out of Motion using the same codec XDCAM EX 720p VBR.
    When I imported that MOV into FCP I got that weird effect on both canvas and final export to H.264.
    As second test, instead of using the export from Motion, I decided to use the Motion project in the FCP timeline. Once rendered (as the motn clip was in the Motion Codec Decompression) as XDCAM the same issue appeared on both the canvas and final export to H.264.
    At this point the strange thing was that if I opened the Motion project in the viewer it was working perfectly fine.
    I then decided to export within FCP the Motion project to XDCAM 720p before instantiating it in the timeline.
    So did that and I got a 720p clip that I imported in the timeline without any rendering needs.
    With that clip the canvas was playing ok and so was the final export to H.264.
    As the initial work in Motion 4 was ok and I didn't see any issue, I thought this might be some sort of FCP 7 issue (or some bad settings that I have on my system).
    Anyway I've found my work around and just decided to share here just in case someone else could understand the behind the scene of this.
    During these tests I have tried to place the Motion project on different timelines (in ProRes 422, ProRes 444) just to see whether the issue was due to a combination of factors including the XDCAM codec, but didn't fix the problem.
    Cheers,
    Armando.

    Just for the record, I made another test with a different material and now I start thinking it could be a Motion4 weird behavior than an FCP7 issue.
    I have shot another clip this time with an in camera slow motion (shot @60fps in XDCAM EX 720p 25pfs format), then applied to Motion4 for another 50% optical flow time remapping.
    This time after checking well at Motion results, I can see the issue in the bookshelf area with vibrant/melting spots.
    After importing the Motion project into FCP and then exported as self contained MOV in XDCAM EX 720p, the issue is gone as in the other tests.
    I went back to the previous tests I made and checked better in Motion; the problem was slightly noticeable even there in one test.
    So I guess it is Motion producing that weird output and not FCP, which seems btw fixing the issue.
    Regards,
    Armando.

  • Slow MBP: Help with EtreCheck and MacOS X reinstall

    Hi there,
    I've already posted about my MacBook Pro which is really annoying me.
    I know 2GB RAM is not enough, but I can't afford buying extensions and would like to cope with this laptop for another 6 months, then probably get a PC as many programs that I need for my studies are not working with Mac.
    Anywho, I've been told that my EtreCheck report looks awful and I need to clean up my mac. My friend used to install a lot of unnecessary stuff on my laptop and I suppose I have a lot of leftovers.  Could you please help me with this? I am currently backing up my files with Time Machine. Once I finish, what should I do to completely reinstall and clean up my laptop?
    Please help a woman in need!
    EtreCheck version: 1.9.15 (52)
    Report generated 31 January 2015 22:47:47 GMT
    Hardware Information: ?
      MacBook Pro (13-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.3 GHz Intel Core i5 CPU: 2 cores
      4 GB RAM
    Video Information: ?
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1280 x 800
    System Software: ?
      OS X 10.10 (14A389) - Uptime: 1 day 13:46:41
    Disk Information: ?
      Hitachi HTS545032B9A302 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      disk0s2 (disk0s2) <not mounted>: 319.21 GB
      Recovery HD (disk0s3) <not mounted>: 650 MB
      MATSHITADVD-R   UJ-898 
    USB Information: ?
      PixArt USB Optical Mouse
      Apple Computer, Inc. IR Receiver
      Apple Inc. FaceTime HD Camera (Built-in)
      TOSHIBA External HDD 320.07 GB
      S.M.A.R.T. Status: Verified
      EFI (disk2s1) <not mounted>: 209.7 MB
      MacBook 2011 (disk2s2) /Volumes/MacBook 2011: 319.73 GB (298.39 GB free)
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ?
      Apple Inc. thunderbolt_bus
    Gatekeeper: ?
      Anywhere
    Kernel Extensions: ?
      [not loaded] com.Bandrich.driver.BandLuxeHSPA (1.2.0) Support
      [not loaded] com.Bandrich.kext.BR_USBDiag (1.2.0) Support
      [not loaded] com.Bandrich.kext.BR_USBECMControl (1.2.0) Support
      [not loaded] com.Bandrich.kext.BR_USBECMData (1.2.0) Support
      [not loaded] com.Bandrich.kext.BR_USBMdm (1.2.0) Support
      [not loaded] com.NovatelWireless.driver.NovatelWirelessUSBCDCECMControl (3.0.9) Support
      [not loaded] com.NovatelWireless.driver.NovatelWirelessUSBCDCECMData (3.0.9) Support
      [not loaded] com.ZTE.driver.ZTEUSBCDCACMData (1.3.1) Support
      [not loaded] com.ZTE.driver.ZTEUSBMassStorageFilter (1.3.1) Support
      [not loaded] com.novatelwireless.driver.3G (3.0.9) Support
      [not loaded] com.novatelwireless.driver.3GData (3.0.9) Support
      [not loaded] com.novatelwireless.driver.DisableAutoInstall (2.0.6) Support
      [loaded] org.virtualbox.kext.VBoxDrv (4.1.6) Support
      [not loaded] org.virtualbox.kext.VBoxNetAdp (4.1.6) Support
      [not loaded] org.virtualbox.kext.VBoxNetFlt (4.1.6) Support
      [loaded] org.virtualbox.kext.VBoxUSB (4.1.6) Support
    Startup Items: ?
      VirtualBox: Path: /Library/StartupItems/VirtualBox
    Problem System Launch Daemons: ?
      [failed] com.apple.AssetCacheLocatorService.plist
      [failed] com.apple.ctkd.plist
      [failed] com.apple.icloud.findmydeviced.plist
      [failed] com.apple.installd.plist
      [failed] com.apple.nehelper.plist
      [failed] com.apple.nsurlsessiond.plist
      [failed] com.apple.periodic-daily.plist
      [failed] com.apple.softwareupdate_download_service.plist
      [failed] com.apple.wdhelper.plist
    Problem System Launch Agents: ?
      [failed] com.apple.CallHistoryPluginHelper.plist
      [failed] com.apple.cmfsyncagent.plist
      [failed] com.apple.coreservices.appleid.authentication.plist
      [failed] com.apple.icloud.fmfd.plist
      [failed] com.apple.spindump_agent.plist
      [failed] com.apple.telephonyutilities.callservicesd.plist
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.adobe.SwitchBoard.plist Support
      [loaded] com.macpaw.CleanMyMac2.Agent.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
    Launch Agents: ?
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.hp.help.tocgenerator.plist Support
      [loaded] com.oracle.java.Java-Updater.plist Support
    User Launch Agents: ?
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.facebook.videochat.[redacted].plist Support
      [loaded] com.google.keystone.agent.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: ?
      Dropbox
      HP Product Research
      HPEventHandler
    Internet Plug-ins: ?
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
      FlashPlayer-10.6: Version: 16.0.0.296 - SDK 10.6 Support
      Default Browser: Version: 600 - SDK 10.10
      Flash Player: Version: 16.0.0.296 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      CitrixICAClientPlugIn: Version: 11.2.0 Support
      SharePointBrowserPlugin: Version: 14.4.5 - SDK 10.6 Support
      Silverlight: Version: 5.1.30514.0 - SDK 10.6 Support
      DirectorShockwave: Version: 12.0.2r122 - SDK 10.6 Support
      JavaAppletPlugin: Version: Java 7 Update 67 Check version
    Safari Extensions: ?
      OpenIE
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 4.3.0 - SDK 10.10
      AirPlay: Version: 2.0 - SDK 10.10
      AppleAVBAudio: Version: 300.22 - SDK 10.10
      iSightAudio: Version: 7.7.3 - SDK 10.10
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.5 - SDK 10.10
    User Internet Plug-ins ?
      Picasa: Version: 1.0 Support
    3rd Party Preference Panes: ?
      Citrix Online Plug-in  Support
      Flash Player  Support
      Java  Support
    Time Machine: ?
      Auto backup: YES
      Time Machine not configured!
    Top Processes by CPU: ?
          12% QuickLookSatellite
          7% Google Chrome
          5% sandboxd
          3% WindowServer
          1% com.apple.iTunesLibraryService
    Top Processes by Memory: ?
      111 MB Google Chrome Helper
      106 MB Google Chrome
      52 MB Finder
      45 MB Skype
      38 MB backupd
    Virtual Memory Information: ?
      54 MB Free RAM
      957 MB Active RAM
      906 MB Inactive RAM
      1.01 GB Wired RAM
      42.51 GB Page-ins
      425 MB Page-outs

    This should help.
    Remove CleanMyMac.
    http://macpaw.com/support/cleanmymac/knowledgebase/how-to-uninstall-cleanmymac-2
    Best.

  • Problems with RemoteObject and security sandbox errors

    I'm having trouble with an AS3 AMF RemoteObject request that is hosted on Google App Engine. I have a crossdomain.xml file in the root of the domain, and also one at the remoting endpoint.
    Here are the contents of the root crossdomain.xml:
    <?xml version="1.0"?>
    <cross-domain-policy>
    <site-control permitted-cross-domain-policies ="all"/>
    <allow-access-from domain="*.appspot.com"/>
    <allow-access-from domain="*.{appid}.appspot.com"/>
    <allow-access-from domain="*.{appid}.com"/>
    <allow-access-from domain="*.{appid}.org"/>
    </cross-domain-policy>
    I have replaced my application's ID with {appid}. In the endpoint crossdomain.xml, it says the exact same thing, except it omits the <site-control> tag.
    Loading the swf file and testing it on my machine works just fine... I think that may have something to do with me having the debugger version of Flash Player. When I push it up to App Engine to make it public, other clients access it and get a Client.Error.MessageSend Channel.Security.Error error Error #2048 url: http://05-alpha.latest.{appid}.appspot.com/_rpc/data.
    I am using Flex 4 beta, and the App Engine Python runtime. I have tried full wildcard in the crossdomain, and even accessing the data endpoint at a relative URL so as to avoid this error.
    Someone please help! Thanks in advance.

    The error happens regardless of where I access it (the beta URL, the production URL, etc).
    That's literally all the actionscript code for the remote object... I've included an extended snippet below, but I have no idea why the SWF would be trying to access localhost.
    Even on my development machines (where it seems to work), there's nothing running on the host/port combo it's trying to access.
    Extended AS3:
    FatCatStage.mxml:
    <s:RemoteObject id="dataService" showBusyCursor="false" destination="data" endpoint="/_rpc/data" />
    main.mxml:
    <fx:Script>
    <![CDATA[
                   fatCatStage.dataService.RetrieveFirstGraph.addEventListener( ResultEvent.RESULT, fatCatStage.graphInitialize );
    fatCatStage.dataService.RetrieveFirstGraph();
    public function doGraphChange(event:ResultEvent):void
    if(event.result.result!='failure')
    var GraphData:Object = event.result.response;
    this.lastGraphData = GraphData;
    fatCatViz.removeAll()
    var root:GenericSprite = fatCatViz.addNodeElement(GraphData.object,null,this.center,GraphData.object.key);
    for each ( var Connection:Object in GraphData.object.connections )
    this._recursiveGraph(root, Connection, center, 3);
    else
    Alert.show('There was an internal graphing error. Please try again.');
    fatCatViz.updateInternalStructure();
    this.intervalSet = setInterval(timedReLayout,500);
    ]]>
    </fx:Script>
    That's all of the relevant actionscript for the entire application. Where is it referencing localhost?

Maybe you are looking for

  • Facing problem in installing WebLogic 10.3.1 server

    Hi, I want to install WebLogic Server 10.3.1, To install this I am using Oracle WebLogic Server 11g Rel 1 (10.3.1) Net Installer setup. After running the setup, it is asking "to specify the location where the installer will place any downloaded archi

  • Validation Event getting called multiple times

    I am saving an eform after entering a wrong percentage in it.On opening the same eform it gives the validate message "Percentage not valid" pop up .This popup should come only once but its coming around 25-26 times.I checked and find that the validat

  • I had to trash pref files when upgrading to Logic 9

    Started with Logic 7 three years ago... So yesterday I upgraded to Logic 9 from 8, and I had two unusual problems. First, when I would record a track, the waveform overview wouldn't draw. It would make the blue box, with a line down the middle, and I

  • Jco Connection works on Single server mode, but not over network?

    Hello, Error - com.sap.dictionary.runtime.DdException: 'XXXXXX' not properly defined! Unable to create Metadata connection for Dictionary Provider. Either the logical System Name 'XXXXXX' has not been properly defined in the System Landscape Director

  • Create folders/tab in A/P Invoice

    How to create folders/tab in marketing documents..I need extra tab next to attachments