Error reported from DirectoryService hangs syslog and computer

I am getting an odd behaviour from my Mac. I recently had an issue with Eclipse and had to hard switch the computer, since it hang all the machine.
When booting again, whenever I start Eclipse, I get the same behaviour. CPU gets high, to 80-90%, processes DirectoryService and mDNSResponder are the most active, and messages starts to run to the syslog. The message is:
++++++++++++++++++
Dec 3 16:37:20: --- last message repeated 499 times ---
Dec 3 16:37:20 machine DirectoryService\[ 11 \] : * process 11 exceeded 500 log
message per second limit - remaining messages this second discarded *
Dec 3 16:37:20 machine DirectoryService\[ 11 \] : dnssd_clientstub deliver_reques
t: socketpair failed 24 (Too many open files)
++++++++++++++++++
It seems the dns service is not operating correctly, but I don't know the cause.
Message was edited by: miceno

Why is it related to Spotlight? From http://www.westwind.com/reference/OS-X/background-processes.html:
DirectoryService: This process acts as a central clearinghouse for "Directory" information -- mainly users/groups/authentication, and service location (e.g. file servers, printers, etc). It gathers information from a variety of plugins (NetInfo, LDAP, Active Directory, NIS, Bonjour/Rendesvous/, AppleTalk, SMB) and hands it out to whatever program requested it.
I am running Spotlight normally and I did'nt have this problem before. The problem should be something related to DNS, or the like, since mDNSresolver is also generating a lot of activity.
I have 80 Gb free space in the disk.
I have run Disk Utility/First Aid to check for errors and do repairs: no problem, no repairs.
Let DirectoryService etc. run for a while when all is well to re-index for Spotlight: done
Exclude any resources in System Prefs/Spotlight so that time isn't spent combing thru them: done.
Nevertheless, I didn't use Eclipse for a while (these two months) and I almost forgot about the problem. Today, I have just open it again and again, the same problem.

Similar Messages

  • Where can I get an Html error report of all the syntax and tag problems?

    Where can I get an Html error report of all the syntax and tag problems?

    Thank you for your answer.
    Where is the DW validation for me?
    My files are in my computer so I don’t have an external URL.
    File > validation > as xml = closes DW... Maybe because it is not a correct command for HTML,
    And
    Window > results > validation = gives a partial mistakes (e.g. shows an open tag without closing tag, but doesn’t show a closing tag without an open tag).
    Thank you.

  • What is the best way to transfer apps, contacts, et cetera from one iPhone (3G) and computer (2006 MacBook) to a new iPhone (4S) and computer (early 2011 MacBook Pro)?  I have already moved music, among other things using Migration Assistant.

    What is the best way to transfer apps, contacts, et cetera from one iPhone (3G) and computer (2006 MacBook) to a new iPhone (4S) and computer (early 2011 MacBook Pro)?  I have already moved music, among other things using Migration Assistant but I cannot locate contacts or Apps.

    transfer just SOME of the applications
    it's all or none, i'm afraid.

  • Launching LR4 after a restart gives the error message "Lightroom encountered an error reading from its preview cache and needs to close" no fix on re

    launching LR4 after a restart gives the error message "Lightroom encountered an error reading from its preview cache and needs to close" no fix on restart

    Delete your preview cache, it is a folder whose name ends with Previews.LRDATA

  • HT201272 My tones have disappeared from my library, phone, and computer.

    My tones have disappeared from my library, phone, and computer.
    They aren't listed in my purchase history since they aren't songs, videos, or apps.
    I don't know how to restore them.

    Ringtones are currently a one-time only download from the store. If they aren't on your phone or in the Tones section of your computer's iTunes library, then are they on your backup of your downloads ? If not, and if they are still in the store, then you could try contacting iTunes Support and see if they will grant you a re-download : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • How do i delete email from my iPhone,ipad and computer at the same time?

    How do i delete email from my iPhone,ipad and computer at the same time?

    Go to http://support.google.com/mail/bin/answer.py?hl=en&answer=77702. It tells you how to set up gmail on iPhone.  Then go to gmail settings then "accounts and imports" and add your AT&T POP email account  to import mail from AT&T to gmail

  • Creating a report from scratch in java and getting invalidfield error

    hello
    I am trying to generate a report java.
    I am getting invalidfieldobject - the field was not found
    I checked the resultset and it does contain the column called trn
    package com.surecomp;
    import java.io.ByteArrayInputStream;
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.OutputStream;
    import com.crystaldecisions.sdk.occa.report.application.ReportClientDocument;
    import com.crystaldecisions.sdk.occa.report.data.DBField;
    import com.crystaldecisions.sdk.occa.report.data.FieldValueType;
    import com.crystaldecisions.sdk.occa.report.definition.FieldObject;
    import com.crystaldecisions.sdk.occa.report.definition.ISection;
    import com.crystaldecisions.sdk.occa.report.exportoptions.ReportExportFormat;
    import com.crystaldecisions.sdk.occa.report.lib.ReportSDKException;
    public class reporting  {
         public static void main(String[] args) {
              reporting x = new reporting();
              x.run();
         public void run() {
              try {
                   java.sql.ResultSet javaResultSet = null;
                   Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
                   java.sql.Connection connection = java.sql.DriverManager.getConnection("jdbc:sqlserver://ssi-allmatch:1433;databaseName=mrmdus33xxx;","sa", "sa12");
                   java.sql.Statement statement = connection.createStatement();
                   javaResultSet = statement.executeQuery("select * from trades");               
                   ReportClientDocument boReportClientDocument = new ReportClientDocument();
                   boReportClientDocument.newDocument();
                   boReportClientDocument.getDatabaseController().addDataSource(javaResultSet);
                   ISection boSectionToAddTo = boReportClientDocument.getReportDefController().getReportDefinition().getDetailArea().getSections().getSection(0);
                   // Create a new Database Field Object
                   DBField boDBField = new DBField();
                   boDBField.setName("trades.trn");
                   boDBField.setHeadingText("trn");
                   boDBField.setType(FieldValueType.stringField);
                   FieldObject boFieldObject = new FieldObject();
                   boFieldObject.setDataSourceName(boDBField.getFormulaForm());
                   boFieldObject.setFieldValueType(boDBField.getType());
                   boFieldObject.setLeft(9000);
                   boFieldObject.setTop(1);
                   boFieldObject.setWidth(1911);
                   boFieldObject.setHeight(226);
                   boReportClientDocument.getReportDefController().getReportObjectController().add(boFieldObject, boSectionToAddTo, -1);
                   ByteArrayInputStream byteArrayInputStream = null;
                   byteArrayInputStream = (ByteArrayInputStream) boReportClientDocument.getPrintOutputController().export(ReportExportFormat.PDF);
                   writeFileFromInputStream("c:/bob.pdf",byteArrayInputStream);
              catch(ReportSDKException ex) {     
                   System.out.println(ex);
              catch(Exception ex) {
                   System.out.println(ex);               
        private void writeFileFromInputStream(String sfile, ByteArrayInputStream inputStream)  {
             try {
                  File file = new File(sfile);
                  OutputStream outputStream = new FileOutputStream(file);  
                  int bytesRead = 0;  
                  byte [] buffer = new byte[32768];  
                  while ((bytesRead = inputStream.read(buffer, 0, 32768)) != -1) {  
                            outputStream.write(buffer, 0, bytesRead);  
                  outputStream.close();    
                  inputStream.close();     
             } catch (Throwable th) {

    Hi,
    I have the same problem, did you get this resolved? I am new to the Crystal Report Java SDK and want to create reports from scratch but I can't find any good resources on the internet or the website.

  • Create a report from scratch, add Table and Datasource Problem

    Hi,
    I'm using the latest Crystal Reports Runtime supplied for eclipse.
    I want to create a report from scratch, add a Table and then add a ArrayList of Pojos as the Datasource.
    But unfortunately depending on the ConnectionInfo I supply to the Table I get different errors.
    I looked through the samples and see that I have to supply properties
    like
      "Database DLL", "crdb_javabeans.dll" and ConnectionInfo.setUserName("");
         ConnectionInfo.setPassword(null)
    I looked through the forums and find different set of properties.
    Actually because I am just working with Pojos I would have thougth that something like the following
    would be sufficient:
    ReportClientDocument  doc = new ReportClientDocument();
                doc.setReportAppServer(ReportClientDocument.inprocConnectionString);
                doc.newDocument();
    Table table = new Table();
    table.setAlias("reportTable");
    table.setName("reportTable");
    doc.getDatabaseController().addTable(oTable, null);
    doc.getDatabaseController().setDataSource(myCoolection, myClass, "reportTable", "reportTable");
    So could someone tell me the right/minimum Set of  Properties to make a Table get connected to Pojos?
    Edited by: jack mann on Aug 31, 2010 3:25 PM

    With XI Release 2, you can come quite close to creating from scratch:
    http://technicalsupport.businessobjects.com/KanisaSupportSite
    /search.do?cmd=displayKC&docType=kc&externalId=5074668
    You need Service Pack 2:
    http://support.businessobjects.com/downloads
    /service_packs/crystal_reports_en.asp
    Sincerely,
    Ted Ueda

  • Creating a Single Report from Oracle Data Base and BI Answers

    Hi,
    I wanted to create a single report by using a BI Report where in we have project and Activity columns,now I want to add column with Program to see the results.Program data is in Oracle Database.
    Can some one help me how to create the report.
    ii.How to edit a pivot table in BI word designer.What I am doing present is creating every time a new report.
    Thx In Adv.
    From Sravan

    Hi Pivot table was a general question.Is is nothing to do with the qus 1.
    See I have a report which have a programme and Activity.So I need to get the data of Prject from Data base how to do this in BIP.....I am not using any pivot table here.

  • Error report from validation

    Hi,
    I used validation in the transformation and pointed to PASS and FAIL. The fail should generate an error report, but where will i find the error report?
    Is it in the management console?
    Appreciate your help.
    Thanks,
    Arun

    Hi Arun,
    If I understood your design, youu2019re using a Validation transform and redirecting the u2018FAILSu2019 to another target. Is that right?
    Well, the statistics for that can be found in the MC, under Data Validation area. But the statistics will be collected only if you set the u2018Collect data validation statisticsu2019 under the u2018Validation Transform optionu2019 found inside the Validation transform (Validation, validation, validation!). This data is collected only for failures.
    Try that and let us know if you manage to find what you need.
    Regards,
    Pedro

  • Run Crystal Report from URL includes username and password

    Hello,
    I've downloaded CR 2008, and CR Server 2008 demo's.
    I'm trying to use a feature I've used with CR10 enterprise, and XI report server, where I can run a report direct from the URL.
    Something like:
    HTTP://scada-ho/crystal/enterprise/admin/en/viewrpt.cwr?id=381&init=actx&apsuser=administrator&apspassword=&apsauthtype=secenterprise
    or
    http://192.168.72.98/businessobjects/enterprise115/infoview/main.aspx?id=1024&init=actx&apssystem=hobprim&apsuser=visy&apspassword=Fillers3&apsauthtype=secenterprise
    I've noticed that there were subtle syntax differences between CR10 Enterprise and XI report server in the past, and expect that similar differences exist with CR server 2008.
    Could someone show me the syntax for CR Server 2008 to run a report from a URL, and pass the required username and password, without having to go through the infoview logon screen

    Tim,
    Thanks for the reply.  I admit I did see that thread when I was looking for a solution.
    My hesitance is that for a non programmer it looks very difficult, and a lot of settings.
    I liked the URL reporting because of its simplicity - one line.
    I know that it advertises the username and password, but for our requirement (intranet reporting, LAN separated from IT), its not a big risk.
    My further investigations indicate that for CRS 2008 something like the following should work:
    http://192.168.207.156/CrystalReports/view.aspx?id=1102&apsuser=administrator&apspassword=admin1&apsauthtype=secEnterprise&init=java
    However I get
    404 - File or Directory not found.
    I'm running on Windows7 with IIS7, so I think it must be an IIS configuration issue
    Any Ideas?

  • Reading integers from a .txt file and computing means

    I have a program that uses for loops to produce ten integers (1-10) are returns the average mean, geometric mean, and harmonic mean.
    Now i need to change this program to read integers from a .txt file and return the same data. Basically i need to change my for statements that are incrementing to read the text file.
    Thanks guys.

    You haven't asked a question. You haven't posted code. What are you expecting here?
    But I guess I'll take a stab at it and say you should look at the Scanner class
    http://java.sun.com/javase/6/docs/api/java/util/Scanner.html
    or BufferedReader
    http://java.sun.com/javase/6/docs/api/java/io/BufferedReader.html
    I'll never understand what makes people come to the forums, create an account, and ask a lazy question, when they could get a great answer much quicker through Google.
    http://www.google.com/search?q=java+file+input (hint: look at the second search result)

  • I keep getting a connection failed error message from mail every time my computer goes to sleep, is shut down and/or I change network connections?

    Mail mail was working fine for months but now I keep getting an error message every time my computer shuts down or even goes to sleep.   I get the exclamation point error and when I try to reconnect it always falis.   My internet connection is fine and nothing else is losing connections.   The only way to fix it is to shut down mail completely and restart which fixes the connection every time, but it's getting really frustrating have to constantly shut down mail and restart it just to use my email.

    Bump ???

  • HT3669 I have an Epsom 1250 photo scanner that will not work with my new iMac.  I get an error report indicating 'scanner ot available' and the indicator light on the scanner goes to red.

    When I try to use the scanner I get error message 'scanner not available' and the scanner indicator goes red .  I have contacted Epsom who advised me to run System update on my Mac several times which I havedone to no avail.  The scanner is in working order as it works satifactorily with my 'Windows' laptop.  The scanner is listed as being included in the driver updates but It would appear that the driver on my iMac supplied  in any update is not suitable.
    I am currently running OSX 10.8.4
    What steps should I now persue to be able to use the scanner?
    Alan.

    Howdy Susiesdad,
    I would suggest the troubleshooting steps from this article named Troubleshooting printer issues in OS X found here http://support.apple.com/kb/ts3147
    Don't let the name throw you off, the troubleshooting is relevant for scanners as well.
    Follow these steps until the issue is addressed:
    Make sure that the printer is powered on, has ink / toner, and that there are no alerts on the printer’s control panel. Note: If you cannot clear an alert on the printer's control panel, stop here and check the printer's documentation or contact the manufacturer for support.
    Ensure the printer is properly connected to a USB port on the Mac or AirPort base station / Time Capsule. If the printer is a network-capable printer, make sure that it is properly connected to your home network.
    Use Software Update to find and install the latest available updates. If an update is installed, see if the issue persists.
    Open the Print & Scan pane or Print & Fax (Snow Leopard) pane in System Preferences.
    Delete the affected printer, then add the printer again.
    If the issue persists, try these additional steps:
    Reset the printing system, then add the printer again.
    If the issue still persists, reset the printing system again.  Download and install your printer's drivers. Then, add the printer again.
    All the best,
    Sterling

  • How can I obtain a summary report from webi through counts and sum

    I have a report built from webi. But will like to count the report by different categories.

    Hi Cobimah,
    You have several options. You can simply add totals to the measure columns where you want a count or sum. Click on the column and then click the Sum button on the menu and you can count, sum, min, max, etc.
    If you want a separate summary report, you can place formulas in the cells like =Sum([Measure Object]) or Count([Measure Object]), or create a variable as the same and place it in the cell.
    You also have the option of creating the pre-aggregated objects in the Universe and then they are already there for you to use where you like if they are aggregations that you will be using often.
    Thanks

Maybe you are looking for

  • I install iTunes on Windows 7 64-bit, it opens, it crashes

    The subject says it all, pretty much. - I install the latest iTunes (downloaded 01/31/2014) - I open it, then go to iTunes store, and it hangs itself after login OR - I open it, then close it, then hold SHIFT and double-click, as I want the library o

  • Problem while executing the code( that covert jpeg images to movie)

    http://java.sun.com/products/java-media/jmf/2.1.1/solutions/JpegImagesToMovie.html here is the code: * @(#)JpegImagesToMovie.java     1.3 01/03/13 * Copyright (c) 1999-2001 Sun Microsystems, Inc. All Rights Reserved. * Sun grants you ("Licensee") a n

  • Slow DVD performance and restrictions... Hope Apple is reading this thread!

    Hi all just want to post my disappointment with my 1.67 G4 PB. I was all happy that I switched to the MacOS, but after 3 months on this machine, I got to say that the silver linings are starting to appear. 1) Even though my UJ 845E DVD burner is supp

  • Sub report question

    Hi Guru: I created two BW report from the query, say A and B. In A, I include B as a sub report. I could preview in in crystal report 2008. However, after I include B, I could not use the Save function in SAP menu, it will return an error code 6 says

  • Out bound idoc for debmas

    Can any one send me sample program for DEBMAS Idoc outbound proces with change pointers