Named.log entry - problem?

Hi!
I have running a DNS-Server on my MacOSX Server 10.5.7.
Every day I find an entry in my named.log like this:
+11-Jun-2009 04:01:18.352 checkhints: view com.apple.ServerAdmin.DNS.public: L.ROOT-SERVERS.NET/A (199.7.83.42) missing from hints+
+11-Jun-2009 04:01:18.352 checkhints: view com.apple.ServerAdmin.DNS.public: L.ROOT-SERVERS.NET/A (198.32.64.12) extra record in hints+
The DNS-Server seems running fine, means I didn't notice any problems.
Can I ignore this error-msg.?
Or what can I do to solve the problem?
Thank you for your assistance,
Peter.

The named.ca file needs to be updated in you /var/named/ folder.
To read more - go here and get the file at the end of the article.
http://arstechnica.com/old/content/2008/02/icann-flips-switch-on-ipv6-dns-root-s ervers.ars
Mine is now resolved. Thanks

Similar Messages

  • Incident Accident log entry - Problem in involved person displayed

    Dear All,
    I am currently working on the Incident accident log development. I am creating the IA log using the function modules and it is generated properly. The RECN number getting generated in a sequential way while running in development and quality, but in production the numbers are getting mismatched. Like for the first time creation the numbers are sequential, for the second time in change mode if i try to add any involved person, the RECN number getting generated is not greater than the one which is created first.
    I have some doubts,
    1. The RECN generated is a number range object
    2. The missed numbers in the sequence will be reused
    3. The implication of these numbers on displaying the involved persons in the table.
    Thanks & Regards,
    Raghuram K.R.

    Solved by myself

  • Log Entries not sorted in Problem work items

    We have noticed that the Log Entries in all Problem work items appear to be randomly sorted. You can manually sort them by clicking on the column headers.
    Log entries for Service Request and Incident work items are sorted by Created date as default which I guess is how most people would want them.  Has anyone else noticed this or can this be configured locally somehow?
    Thanks

    Hi,
    I checked my lab, and saw that only incident's log entries is sorted by date:
    Log entries for SR and Problem are not sorted:
    And this is hard-coded, if you want to sort them by date, we should click Date Time.
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • What does this log entry mean  - Cancel initiated for Exchange Producer

    Is there anybody who can tell me what could this log entry mean:
    --Cancel initiated for Exchange Producer: <<66800621>> DbGateway Exchange*
    I'm asking because I have problem. In two physical sources (physical databases) I have two tables TABLE_1 has 60k rows TABLE_2 has 1 row. Next step these tables are "Binary Join" by BI server
    so it looks like here:
    -------------------- Sending query to database named OBI (id: <<66800621>>):
    select T7101.SYMBOL as c1,
    T7101.TABLE_1 as c2
    from
    TABLE_1 T7101 /* TABLE_1_ALIAS */
    order by c2
    +++marek.gregor:c350000:c350006:----2010/03/03 13:30:17
    -------------------- Sending query to database named OBI_BACK (id: <<66800638>>):
    select T46142.KATEGORIA as c1,
    T46142.FIRMANO as c2
    from
    TABLE_2 T46142
    order by c2
    +++marek.gregor:c350000:c350006:----2010/03/03 13:30:17
    -------------------- Execution Node: <<66800638>>, Close Row Count = 1, Row Width = 24 bytes
    +++marek.gregor:c350000:c350006:----2010/03/03 13:30:17
    -------------------- Cancel initiated for Exchange Producer: <<66800621>> DbGateway Exchange
    +++marek.gregor:c350000:c350006:----2010/03/03 13:30:17
    -------------------- Execution Node: <<66800621>> DbGateway Exchange, Close Row Count = 3, Row Width = 80 bytes
    +++marek.gregor:c350000:c350006:----2010/03/03 13:30:17
    -------------------- Execution Node: <<66800638>> DbGateway Exchange, Close Row Count = 1, Row Width = 24 bytes
    +++marek.gregor:c350000:c350006:----2010/03/03 13:30:17
    -------------------- Execution Node: <<66800654>> Binary Join, Close Row Count = 0, Row Width = 104 bytes
    +++marek.gregor:c350000:c350006:----2010/03/03 13:30:17
    -------------------- Execution Node: <<66800582>> Projection, Close Row Count = 0, Row Width = 76 bytes
    As you see first is executed select from TABLE_2 (Node: <<66800638>>, Close Row Count = 1) and this is correct number of close row count
    next we have
    Cancel initiated for Exchange Producer:(for node with SELECT ROM TABLE_2) - and I don't know what that's mean
    and after this we have
    Execution Node: <<66800621>> DbGateway Exchange, Close Row Count = 3
    And this is incorrect number of CloseRowCount (should be aprox. 60k)
    Finally result is wrong because we have no records (inner join by BI Server doesn't work :( )
    Thank you for help
    Edited by: markog on Mar 3, 2010 2:03 PM

    I'm wrestling with getting all of this to work myself.
    Can you see the job in XGrid Admin? It sounds as if the job is failing, but I can't be sure. Clicking on the job in XGrid Admin should give you a "play by play" and tell you where it is failing.
    My experience has shown me that permissions is the root cause of alot of issues, and I cannot find any clear reference on what permissions the "Podcasts" folder needs to make all of this work.
    Following the documentation, the "pcastxgrid" user doesn't actually get assigned any permissions via the file system or Group membership, so I'm not sure how all of this needs to be set.
    Hope this helps.

  • .sh file usage log entries multiplied

    Hi all,
    I have a very strange problem: In order to find out what parts of a big application being used,
    I have added the following line as the first executable line in every .sh file:
    /application/sh_log $0
    The file sh_log looks like this:
    now=$(date +"%Y_%m_%d")
    filename=/spool/logs/sh_log_$now.log
    if [ -f $filename ];                 # Does logfile exist?
    then
       echo  $(basename $1)";"$(date +"%Y%m%d%H%M%S")";" >> $filename   # Logfile exists, append log record
    else
       touch $filename          # Logfile did not exist, create it
       chmod 7777 $filename     # Make it writeable
       echo  $(basename $1)";"$(date +"%Y%m%d%H%M%S")";" >> $filename   # Ans append log record
    fi
    The application calls it's .sh files in a number of ways, but all of them originating from crontab.
    What confuses me is that log entries often appear in tuples, that is, when the application's
    .sh file is calling the file making the log entry, supposedly to make a single log entry, I'm still
    getting 2, 3 or even more log entries with the same time-stamp (resolution: 1 sec).
    I don't understand this and would appreciate if some guru here could give me a clou.
    Regards
    Lars

    Hi,
    I would log also PIDs together with script name: "/application/sh_log $0 $$". Then you could see whether the application script or sh_log is really called more times (different PIDs).
    Also consider to use chmod 0777 instead of 7777. So, e.g.:
    now=$(date +"%Y_%m_%d")
    filename=/spool/logs/sh_log_$now.log
    [ ! -f $filename ] && touch $filename && chmod 0777 $filename
    #Format:  my_PID;script_name;script_PID;timestamp;
    echo  $$";"$(basename $1)";"$2";"$(date +"%Y%m%d%H%M%S")";" >> $filename
    Regards
    Vaclav

  • Mysterious repeat log entries in System events log

    I tried unsuccessfully to share internet connection with 2 iMacs without router(That doesn't matter). But after this, my iMac (24" 2.8 GHz) not networked or on internet now shows this repeated log entries every minute:
    com.apple.launchd[1] (com.apple.InternetSharing): Throttling respawn: Will start in 10 seconds
    This message gets repeated every minute on System events log. Daily, Monthly maintenance was not done automatically earlier today on this iMac (usually it did without any problem) which was on all-night.
    I checked with Disk Utility, repaired permissions. Although no problems in working, this continuous log writings disturbs me.
    Thanks for any help & Happy New Year!
    Best.

    Thanks, V.K. Did that (was asked password). System log showed after restart:
    com.apple.launchd[1] (com.apple.InternetSharing[152]): Exited with exit code: 1
    com.apple.launchd[1] (com.apple.InternetSharing): Throttling respawn: Will start in 10 seconds
    com.apple.launchd[1] (com.apple.InternetSharing153): Exited with exit code: 1
    com.apple.launchd[1] (com.apple.InternetSharing): Throttling respawn: Will start in 10 seconds
    Then it started again the same way as above - with each aditional line each time as shown above. Thanks for sticking with me on this. Hope you will offer other suggestions.
    Best.

  • Windowserver log entries: kCGErrorIllegalArgument:

    I'm a newbie to Mac & OS X - I'm seeing lots of entries (sample below) in the log which I don't understand.
    Any help appreciated.
    Dec 09 11:18:23 [55] kCGErrorIllegalArgument: CGXSetWindowListTags: Operation on a window 0x2 not owned by caller SecurityAgent
    Dec 09 11:18:23 [55] kCGErrorIllegalArgument: Set a breakpoint at CGErrorBreakpoint() to catch errors as they are returned
    Dec 09 11:18:23 [55] kCGErrorIllegalArgument: CGXOrderWindow: Operation on a window 0x2 not owned by caller SecurityAgent
    Dec 09 11:29:53 [55] kCGErrorIllegalArgument: CGXSetWindowListTags: Operation on a window 0x6 not owned by caller SystemUIServer
    Dec 09 11:44:49 [55] kCGErrorIllegalArgument: CGXSetWindowListTags: Operation on a window 0x6 not owned by caller Tunnelblick

    Hi,
    I checked my lab, and saw that only incident's log entries is sorted by date:
    Log entries for SR and Problem are not sorted:
    And this is hard-coded, if you want to sort them by date, we should click Date Time.
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • User Profile -- Last Log Entry - The Parameter is Incorrect

    HI
    I see an error in the SharedServices Provider serction under UserProfile . It says
    LAST LOG Entry : The Parameter is Incorrect
    This happened after i turned on search setting and Crawling . Is this anything to worry about ? what is this error message mean?
    Satis

    Hi, I've found a solution that works fine on this Post:
    Why this happens :
     - Profmain.aspx calls importStatus.LastCrawlSeedStatus to determine if an error occurred during the last profile import.
    - If the LastCrawlSeedStatus value is not 0, it checks importStatus.LastLogEntry and provides the text message from the log
    - LastCrawlSeedStatus is a property of the content source People_Import (Hidden Content Source)
    - If the registry
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office Server\12.0\Search\Applications\<GUID>\Gather\ProfileImport\ContentSources\0\StartPages\0
    Or if the registry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office Server\12.0\Search\Applications\<GUID>\Gather\ProfileImport\ContentSources\1\StartPages\0
    - If the value to anything other than
    0, we can reproduce problem
    - The search account should have full control on this registry key
    - The SSP account should have read access to this key.
    How to Fix it :-
    - Open the registry on the indexer server
    - Checke the value of "lastCrawlSeedStatus" in the registry at
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office Server\12.0\Search\Applications\<GUID>\Gather\ProfileImport\ContentSources\0\StartPages\0
    - And checke the value of "lastCrawlSeedStatus" in the registry at
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office Server\12.0\Search\Applications\<GUID>\Gather\ProfileImport\ContentSources\1\StartPages\0
    - We changed the value to
    0
    - Restart search service on
    Index server (better
    restart the server if you can due to too long waiting for stopping and starting the Office SharePoint Search Services)
    I hope to help all colleagues that have this issue.
    Ciao.

  • Word 2008 & System Log Entries

    Whenever I open Word 2008 there is a flood of never ending entries in System Log as long as Word 2008 is open. This is an example:
    *Feb 20 14:40:10 Macintosh Microsoft Word[728]: CGBitmapContextGetData: invalid context*
    *Feb 20 14:40:40: --- last message repeated 276 times ---*
    Are others with Word 2008 and my Mac configuration receiving similar System Log entries?
    If so, any suggestions for a solution?

    I have that same problem lookin in my console.. can anybody help us out here???

  • SSHD Log entries

    I have a SunBlade 150 running Solaris 10, and I have the strangest problem: I keep getting SSHD log messages in /var/adm/messages:
    Sep 17 14:09:46 sunshine sshd[1191]: [ID 800047 auth.crit] fatal: Read from socket failed: Connection reset by peer
    Sep 17 14:14:46 sunshine sshd[1374]: [ID 800047 auth.crit] fatal: Read from socket failed: Connection reset by peer
    Sep 17 14:19:46 sunshine sshd[1559]: [ID 800047 auth.crit] fatal: Read from socket failed: Connection reset by peer
    Sep 17 14:24:46 sunshine sshd[2488]: [ID 800047 auth.crit] fatal: Read from socket failed: Connection reset by peer
    Sep 17 14:29:46 sunshine sshd[2768]: [ID 800047 auth.crit] fatal: Read from socket failed: Connection reset by peer
    Sep 17 14:34:46 sunshine sshd[3601]: [ID 800047 auth.crit] fatal: Read from socket failed: Connection reset by peer
    The strange thing is that the processes mentioned are of course already terminated whenever I try to look at them, so they are very short-lived, not existing connections.
    The log entries are exactly 5 minutes apart, which led me to believe it was caused by either a cron process or some weird thing in the sshd config, but none of these things are present.
    External causes are also eliminated, for the messages persist even when I close down my firewall and all other machines (the log entries continue 24/7).
    I tried adding keepalive messaging in my sshd config file, but again to no avail.
    Anybody got any suggestions?

    Hi I have the same kind of problem on some servers
    Oct 23 00:28:23 server sshd[29911]: [ID 800047 auth.crit] fatal: padding error: need 28 block 8 mod 4
    Oct 23 07:28:23 server sshd[3252]: [ID 800047 auth.crit] fatal: padding error: need 28 block 8 mod 4
    I have a nagios server that is monitoring those servers what can be the cause of this
    merssage
    Luc

  • Incident/accidnet log entry type/ Specify Accident Categories

    Hi
    I have configured
    incident/accident log entry type
    and Specify Accident Categories
    serperately. as these seperate config nodes
    when i create incident/accidnet log
    i dont see the filed accident categorioes coming in any screen.
    do we need to activate this field somewhere?

    Hi Niraj,
    I am facing the same problem like
    i don;t see the filed accident categorizes coming in any screen.
    Please help me out for the same..
    Many Many thanks
    Urvashi

  • No Log entry while executing web service

    Hi,
    I have a web service which is deployed successfully to a server in the Weblogic
    Workshop domain.
    When I try to test the methods of the web service using the Test form, sometimes,
    I get a message 'No Log Entry'. When I reploy the application, it starts working
    properly.
    There is no problem with the code. Could someone please tell me as to why I might
    be getting the 'No Log Entry' message randomly.
    Thanks,
    Aparna

    My guess is that you are using the tutorial "Creating a SOAP Web Service". This one has a couple of errors in it:
    1. The directory it tells you to deploy the class to the following location:
    <JDeveloper_home>\soap\webapps\soap\soap\WEB-INF\lib
    when in fact it should be:
    <JDeveloper_home>\soap\lib\soap\soap\WEB-INF\lib
    2. This tutorial also says you do not have to re-start OC4J; in this case you do.
    If you are doing the J2EE Web service tutorial a re-start should not be required. One other potential cause of this kind of error can be because your proxy server is set on in Tools->Preferences->Proxy Server. Turn it off and this might fix the problem - my guess, however, is that your problem is either with step 1 or step 2 above.
    Mike.

  • WATERMARK log entries

    Hi guys,
    by any chance you might know what are IPC-WATERMARK/ICC-WATERMARK log messages, I googled, everything points to the fact that they are cosmetic, which is not the case, as SIP-400 stops passing traffic, sometimes even directly connected, until box is completely reloaded, module reload does not help. Router is ISG terminating a few K PPPoE sessions, and is one of the anycast RP's, for the access plant. Without reload it causes massive outage 1-2 hours. 
    Entries keep on logging, even after multicast sources were stopped.
    Any input would be much appreciated.
    Thank you,
    Elnur

    Hi,
    I checked my lab, and saw that only incident's log entries is sorted by date:
    Log entries for SR and Problem are not sorted:
    And this is hard-coded, if you want to sort them by date, we should click Date Time.
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Most Recent Alert Log Entries - Error processing Alert Log

    Hi..
    Can someone help me?
    When I want to check the log of alerts the following thing goes out for me:
    "This shows the last 100,000 bytes of the alert log. The log is constantly growing, so select the browser's Refresh button to see the most recent log entries.
    Number of Lines Displayed          Error processing Alert Log"
    Since I can solve it?

    Number of Lines Displayed Error processing Alert Log"
    check ur alert.log file content any data.
    bcoz if ur alert.log file entries is null then above error is show. ( happen with me when i am purge alert.log file and try to view content of alert.log then above error received so may be problem is null contents ( empty alert.log file)).
    HTH

  • Creating action log entry for incident via SDK in C#

    Hi,
    Does anyone have any example code, or pointer to, of how to add an action log entry (with icon) to an incident? I can't work out what the target for the relationship should be or how to configure it...
    With Thanks,
    Rob

    Anton,
    Thanks for your response! I think the problem may be in how I'm creating "WorkItemMP". In the method below I'm trying to pass in an issue Id parameter to add an action log item to an Issue. 
    How are you creating the  "WorkItemMP"?
    public
    void
    UpdateActionLog(string
    nsId)
    EnterpriseManagementGroup
    emg1 = new
    EnterpriseManagementGroup("server01.xyx.com"
    ManagementPackClass
    classIncident = emg1.EntityTypes.GetClass(new
    Guid(SYSTEM_WORKITEM_INCIDENT_CLASSS));
    // A604B942-4C7B-2FB2-28DC-61DC6F465C68
    EnterpriseManagementObjectProjection
    incidentProjection = new
    EnterpriseManagementObjectProjection
    (emg1, classIncident);
    ManagementPack
    WorkItemMP = emg1.ManagementPacks.GetManagementPack(new
    Guid("DD26C521-7C2D-58C0-0980-DAC2DACB0900"));
    //System.WorkItem.Incident.Library MP
    CreatableEnterpriseManagementObject
    cemoIncident = new
    CreatableEnterpriseManagementObject(emg1,
    classIncident);
    cemoIncident[classIncident,
    "Id"
    ].Value = nsId;
    ManagementPackClass
    typeActionLog = emg1.EntityTypes.GetClass("System.WorkItem.TroubleTicket.ActionLog"
    , WorkItemMP);
    CreatableEnterpriseManagementObject
    objectActionLog = new
    CreatableEnterpriseManagementObject
    (emg1, typeActionLog);
    objectActionLog[typeActionLog,
    "Id"].Value
    = Guid
    .NewGuid().ToString();
    objectActionLog[typeActionLog,
    "Description"].Value
    = "Incident updated via SDK.\n"
    objectActionLog[typeActionLog,
    "Title"].Value
    = "Incident updated via SDK"
    objectActionLog[typeActionLog,
    "EnteredBy"].Value
    = "Administrator"
    objectActionLog[typeActionLog,
    "EnteredDate"].Value
    = DateTime
    .Now.ToUniversalTime();
    ManagementPackEnumeration
    enumeration6 = WorkItemMP.GetEnumerations().GetItem("System.WorkItem.ActionLogEnum.TaskExecuted"
    objectActionLog[typeActionLog,
    "ActionType"
    ].Value = enumeration6.Id;
    ManagementPackRelationship
    relationship2 = emg1.EntityTypes.GetRelationshipClass("System.WorkItem.TroubleTicketHasActionLog"
    , WorkItemMP);
    if
    (incidentProjection != null
    incidentProjection.Add(objectActionLog, relationship2.Target);
    incidentProjection.Commit();

Maybe you are looking for

  • Post upgrade issues from Timezone setting

    Everyone, We just upgraded from 4.5 -> version 6.0 SP1 (so we first upgraded the data to 4.5 WS then to version 6) After the upgrade, we saw the web service registration to have the send timezone setting to portlet as checked for all the portlets tha

  • Iphoto library is gone!

    Hi!  I can't find my iphoto library anywhere on my computer or ED. I turned on Time Machine a few weeks ago in an attempt to back up files and things but it never actually backed anything up because there wasn't enough space available.  So, I googled

  • PLAYING SOUND WITHOUT JApplet

    Hi there, I'm a new member in Java Developer forums, I hope that I'll be an effective member.. for now I need help with java sound , multimedia I'm developing a program that part of it is to play array of sounds (Not JApplet) I tried to use the funct

  • Better slideshow product out there?

    Just looking for a little advice from those who have working with picutes and other software as well. I'm new to saving and displaying pictures on my computer. I bought PS3, thinking it was the best software out there in saving and presenting picture

  • Sync ical to google and outlook cal.

    Hi, if  I create a event, appt, or anything in ical, can i sync it to google and outlook cal's.   or if i create an event in outlook  or google cal first can i sync it to all other calenders.  If possible how do I co-exsist all 3 calenders.