Problem with Named??

I have an error message that keeps coming up in system.log which has me a little stumpted.
Oct 23 17:23:24 mail named[83]: /SourceCache/bind9/bind9-31/bind9/lib/isc/unix/errno2result.c:111: unexpected error:
Oct 23 17:23:24 mail named[83]: unable to convert errno to isc_result: 42: Protocol not available
Oct 23 17:23:24 mail named[83]: /SourceCache/bind9/bind9-31/bind9/lib/isc/unix/errno2result.c:111: unexpected error:
Oct 23 17:23:24 mail named[83]: unable to convert errno to isc_result: 42: Protocol not available
Oct 23 17:23:24 mail named[83]: /SourceCache/bind9/bind9-31/bind9/lib/isc/unix/errno2result.c:111: unexpected error:
Oct 23 17:23:24 mail named[83]: unable to convert errno to isc_result: 42: Protocol not available
Can anyone shed any light on this.
Tom

I think that is what is known as a 'cosmetic' error...dealing with BIND.
No big deal that I can determine.

Similar Messages

  • Problem with naming certain people in Faces

    When I am using the Faces feature of Aperture 3, I have a problem with naming certain people. In particular, if I want to name someone "Tommy", I type a "T" but instead a "D" appears. If I type a "T" again then the correct letter will appear but the first letter will always be a "D" if I press "T". So when I type "Tommy" on my keyboard I see "Dommy" instead. Does anybody else have this problem?

    Yes. I thought it was because I had originally changed someone's name (Tave to Dave) and it still picked up old first letter. Workaround is typing two T's then erasing the first incorrect one. But appears we have a bu.
    I have other issues too. I have many Dave's and Jim's and I can't figure how to tell which one is.
    Maybe someone can remind us how post a bug report.

  • Problem with naming of mixer buses

    Today I've named various buses in a fairly large Logic 9 project in order to make it easier to mix, but then noticed that these same bus names now apply in other projects. That is ridiculous. Is there some way of preventing this?
    A friend who also uses Logic 9 tells me he doesn't have this problem (bus 4 for instance can have different names in each project) so what's going on in my software? Thanks for any suggestions...

    Hi
    Possibly... the I/O labels are available in the Mixer window under the Options menu. They do not appear in the Preferences pane anywhere.
    In earlier versions of Logic (version 7??), there was a separate I/O Labels file which could be stored in <User>:Library:Application Support:Logic.
    The information stored in the I/O labels pane is now stored within Logic's preferences file (and you can't get at them separately):
    <User>:Library:Preferences:com.apple.logic.pro.plist
    If you have not changed anything directly in the I/O labels pane, but are still having issues with re-set names, possibly there are greater issues with the main Logic Preferences file.
    CCT

  • Problem with naming of FK attribute when generating the relational model

    I'm usign Data Modeler 4.0 and I have a problem when I engineer from Logical model to Relational model.
    I have a table SUBJECTS with an unique identifier called ID (pk) and a table BOOKS related to SUBJECTS with a relation named FK_SUBJECT_BOOK and FK attribute named ID_SUBJECT.
    When I engineer to Relational Model, it transforms the original FK attribute ID_SUBJECT of the Logical model into an attribute called SUBJECTS_ID in the Relational model.
    How can I mantain the name defined in the Logical model also in the Relational model, without using abbrevation and without applying name translation when generating the relational model?
    Thank you

    I have already tried it. The problem is that if I check the option you mention, then it uses the pk as it is in the related table creating attributes like ID1, ID2, ID3 and so on for all the relations you have.

  • XML File - Problem.with naming tags with XI standard functions

    Hello,
    simple (?) problem:
    Receiver expects an XML file via file adapter.
    (The source data comes from an RFC connect to XI.)
    In the XML tags like these are expected (following W3C definitions):
    A)   </gdt:ValueGroup>
    How to define a data type with a ":" in its name or to convert it to the required tag?
    B)   <gdt:ExtendedAttribute gdt:guid="4c102d6b077de7c1f0e27391e40bb80f" gdt:code="X01" >GR2 LI3</gdt:ExtendedAttribute>
    This one is a real nice one. The part with "gtd:guid=" within the tag is variable. How to add such values into tag names?
    Any ideas if this is possible with standard and how.
    If this is the limit of XI I think we need an XSLT- or JAVA-maping program to generate the required file.
    Thank you for any help!
    Best regards
    Dirk

    Hi Dirk,
    just one thing:
    >>>>The part with "gtd:guid=" within the tag is variable.
    this is ok as it's just an attribute
    of the ExtendedAttribute tag's name
    so it can be variable without any problems
    (you can fill it in the mapping for example)
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • I have problems with Naming.rebind

    I want server and client on my local-computer. when I call rebind like this:
    Naming.rebind("//host:1099/RMISwitchboardServer",this);
    I get this error message:
    Error:Unknown host
    please can anyone help?

    It isn't running. You got that information from me and you can trust it. Read my book if you don't believe that. You also got it from the ConnectException: connection refused. No doubt about it; no other possibility.
    The tutorial or sample you're running should show how to start the rmiregistry, or see the Javadoc/Tools documentation.

  • Rather odd problem with package naming...

    Background info:
    I'm working on a web-based application, on a Tomcat server. Classes (and packages) must be in a subfolder of WEB-INF/classes of the app's root. So the packages are in WEB-INF/classes/com/<package>.
    The older packages are in com/gestion (for the package com.gestion ) and the newer ones are in com/incsolution/<various> where <various> can be either chart, util or pgm - following convention more closely.
    OK! We have a class called SqlBean in com.gestion, which starts off like so:package com.gestion;
    import java.sql.*;
    import javax.sql.*;// stock pour pooled connection c'est dans javax.sql
    import javax.naming.*;
    import java.io.*;
    public abstract class SqlBean
        ...rest of code...
    }and is used in several other objects, like TransferQBean.java, which is in the same package:
    package com.gestion;
    import java.sql.*;
    public class TransfertQBean extends SqlBean
       ...rest of code...
    }Now, i've been working (with others) on this project for 2 years now, and up until last week, there was no problem with the way things were called. Come Monday (April 11), the classes won't compile any more - gives me this error:
    classes/com/gestion/TransferQBean.java [5.1] cannot resolve symbol
    symbol : class SqlBean
    location: class com.geastion.TransferQBean
    public class TransferQBean extends SqlBean
    ....................................................................^
    Now if i add classes to com.gestion to get...
    package classes.com.gestion;
    import java.sql.*;
    public class TransfertQBean extends SqlBean
       rest of code...
    }and same for SqlBean...
    package classes.com.gestion;
    import java.sql.*;
    import javax.sql.*;// stock pour pooled connection c'est dans javax.sql
    import javax.naming.*;
    import java.io.*;
    public abstract class SqlBean
       ...rest of code...
    }...it works, but that's not how it's supposed to be. What puzzles me the most is how this came about suddenly.
    Anyone have an idea what might be causing this? AFAIK, it's abnormal...
    JH

    classes/com/gestion/TransferQBean.java [5.1] cannot resolve symbol
    symbol : class SqlBean
    location: class com.geastion.TransferQBean
    public class TransferQBean extends SqlBean
    ....................................................................^The solution to your problem is simply that your classpath is incorrect at compile-time. How you fix that depends on how you compile (from an IDE, from the command-line javac tool, etc). But whatever you do, don't make your solution depend on a system environment CLASSPATH variable.

  • [svn] 4143: Fixed problem with metadata in SelectionFormatTextStyles. as so that named colors work for selectionColor, unfocusedSelectionColor, and inactiveSelectionColor attributes on Gumbo components.

    Revision: 4143
    Author: [email protected]
    Date: 2008-11-19 14:53:40 -0800 (Wed, 19 Nov 2008)
    Log Message:
    Fixed problem with metadata in SelectionFormatTextStyles.as so that named colors work for selectionColor, unfocusedSelectionColor, and inactiveSelectionColor attributes on Gumbo components.
    Thanks, Glenn!
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-18070
    Reviewer: Glenn
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18070
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/styles/metadata/SelectionFormatTextStyles .as
    flex/sdk/trunk/frameworks/projects/wireframe/bundles.properties

    Revision: 4143
    Author: [email protected]
    Date: 2008-11-19 14:53:40 -0800 (Wed, 19 Nov 2008)
    Log Message:
    Fixed problem with metadata in SelectionFormatTextStyles.as so that named colors work for selectionColor, unfocusedSelectionColor, and inactiveSelectionColor attributes on Gumbo components.
    Thanks, Glenn!
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-18070
    Reviewer: Glenn
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18070
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/styles/metadata/SelectionFormatTextStyles .as
    flex/sdk/trunk/frameworks/projects/wireframe/bundles.properties

  • Javax.naming.PartialResultException (ConnectionException) problem with MSAD

    Hi,
    I have BPM 10gR3 installation connected to Microsoft Active Directory (both on the same VMWare host) and get the following intermittent errors being reported.
    "Exception [javax.naming.PartialResultException [Root exception is javax.naming.CommunicationException: migrations.com.au:389
    \[Root exception is java.net.ConnectException: connect: Address is invalid on local machine, or port is not valid on remote machine\]]]"
    Has anyone run into this problem before or know of a fix?
    I've trolled through some other forums and have found other applications reporting similar problems. I think this has something to do with my AD or DNS settings.
    It's intermittent because I'm able to run my project from time to time but when it hits this condition the engine reports unexpected error has occurred (during an interaction with an instance) or when attempting to login. When things are working I'm able to access the User/participant information. I've created my AD users in an Org Unit called "al" and the users are not listed in the default Users container.
    TP

    Looks like it was a problem with DNS. Built the DNS (and used it) server first and then AD separately (pointing to this DNS) instead of allowing Win 2K3 Server to build AD and DNS the same time.
    TP

  • 10g: problem with similar named listeners

    Hi,
    env:
    2 node OEL cluster (not rac, a linux cluster)
    11.2.0.3 GI
    11.2.0.3 and 10.2.0.5 DB's
    The problem seems to be that lsnrctl in 10g is only using the first 12-13 characters of the listener name.
    I have a listener configured with the name listener_prodXXX, when I configure another listener named listener_prodYYY and want to start ist:
    lsnrctl start listener_prodYYY
    TNS-01106: Listener using listener name listener_prodXXX has already been started.
    ps -ef |grep -i listener_prod
    oracle 2784 1 0 13:03 ? 00:00:00 /oracle/product/10.2.0/XXX/bin/tnslsnr listener_prodXXX -inherit
    is there a rule for naming the listeners?
    confused greetings
    Daniel

    Of course I was searching docs/metalink before but couldn't find anything there, so I was asking here.No sign of searching exists in your posts
    If you have only one listener with multiple db's and want to do some maintenance on one of them, how do you avoid user connecting to it?Put the database in restricted session mode
    I don't think its forbidden to use multiple listeners, so if I'm having a problem with the configuration the forum should be the place to ask, isn't it?It is not forbidden to use multiple listeners, but in 999 out of 1000 cases it is not required, and people 'think' they need multiple listeners for the wrong reasons.
    Your post is no exception.
    So, yes, if you want to setup multiple listeners, without apparent and/or sound reasons, I will explain you don't need them/.
    There is nothing wrong about that, isn't it? Many people here 'think' they know Oracle, few have experience and know they do.
    Sybrand Bakker
    Senior Oracle DBA

  • Hello! Help me please, I have a problem with the program occurred after the upgrade to version 3. 6. 16, namely by pressing the button 'Open a new tab' nothing happens. ?

    Hello! Help me please, I have a problem with the program occurred after the upgrade to version 3. 6. 16, namely by pressing the button 'Open a new tab' nothing happens. ?

    This issue can be caused by the Ask<i></i>.com toolbar (Tools > Add-ons > Extensions)
    See:
    * [[Troubleshooting extensions and themes]]

  • Problems with repository - C call-in - naming

    Hello ...
    I've got two questions and atechnical problem, can someone help me?
    - C call-in: in the advanced training I was taught the way to integrate
    external C procedures in Forte' (call-out). Is it possible to call-in Forte'
    from external C procedures, in the training wasn't explained. Is this possible, how?
    - Naming: is hierarchycal naming allowed? - for example /world/europe/italy/turin/ServiceSO to
    indicate a SO in an environment belonging to a hierarchyc structure.
    At the training we were told that all you can do is to specify a search list to use when
    searching for a SO, not in the current env: in this way we obtain a flat hierarchy (which is
    not a hierarchy). Is there a way to specify a tree structure?
    - Technical problem: I work on a PC with a shadow repository. This morning I
    integrate my workspace into the repository and then I checked out a project.
    While doing this operation the workspace workshop crashed (and not the project
    workshop), so I closed the project window and restarted Forte' on my PC. I was
    no more able to open my project workspace because it was still locked. I tried
    to unlock it with Fscript, but it wasn't possible because the shadow was no
    longer accessible. I tried to read the shadow with Forte' Standalone but I got
    the message "cannot open repository c:/......".
    I realised that the problem was generated by the fact that on the server the
    file system was full, so I freed some space and I started the development env on
    the server (DEC Alpha) but I didn't succeed: there were problems with the
    repository. I restarted the node manager and repository manager for the server
    and I got the following:
    Starting nodemgr server with (parameters/arguments): -e CentralEnv
    nodemgr Version 2.0.C.1
    Digital Unix 3.0
    Copyright (c) 1994-1995, Forte Software, Inc.
    All Rights Reserved.
    Portions (c)1987-1994 Apple Computer Inc., (c)1984-1993 FairCom Corp.,
    (c)1989-1993 Objectivity, Inc., (c) Servio Corp.
    Sun Dec 10 17:31:14 1995
    Type Service Flags Level
    err sh * 255
    trc c4 9 1
    trc u1 * 255
    trc u2 * 255
    trc u3 * 255
    trc u4 * 255
    trc u5 * 255
    trc u6 * 255
    trc u7 * 255
    trc u8 * 255
    trc u9 * 255
    trc u10 * 255
    Loaded Forte Message Catalog 'fortemsg/en_us.cat'
    NLM Startup is Complete - Partition's Locale is 'c'
    Node Manager initialization in progress ...
    Configuring node agent.
    Opening configuration repository ct:/usr/users/forte/repos/alpha1.
    Attempt to open configuration repository failed.
    Creating configuration repository ct:/usr/users/forte/repos/alpha1.
    Attempt to configure node manager failed.
    SYSTEM ERROR: Unable to complete operation on Repository
    (/usr/users/forte/repos/alpha1)
    Class: qqsp_ImplementationException
    Error #: [1101, 197]
    Detected at: qqrp_RepositoryManager::CreateRepository
    Error Time: Wed Jun 26 16:15:56
    Exception occurred (locally) on partition "Node Manager", (partitionId =
    0x0, taskId = [0x0.4]) in application "System Manager", pid 2450 on node
    alpha1.
    SYSTEM ERROR: Unable to complete operation on Repository
    (/usr/users/forte/repos/alpha1)
    Class: qqsp_ImplementationException
    Error #: [1101, 197]
    Detected at: qqrp_SrRepository::CreateRepository
    Error Time: Wed Jun 26 16:15:56
    Exception occurred (locally) on partition "Node Manager", (partitionId
    = 0x0, taskId = [0x0.4]) in application "System Manager", pid 2450 on
    node alpha1.
    SYSTEM ERROR: ctree-Plus Repository data file
    /usr/users/forte/repos/alpha1.dat could not be created. Error ctree: file
    number already in use. (46)
    Class: qqsp_ImplementationException
    Error #: [1105, 607]
    Detected at: qqrp_CtreeAccess::CreatePhysicalRepository
    Error Time: Wed Jun 26 16:15:56
    Exception occurred (locally) on partition "Node Manager", (partitionId
    = 0x0, taskId = [0x0.4]) in application "System Manager", pid 2450 on
    node alpha1.
    FATAL ERROR: Error message in log file starting nodemgr.
    Forte start_nodemgr script is terminating.
    Starting Repository server
    So I shutted down the machine and retried, but nothing changes.
    What can I do. Is there a way to read the two repos (the shadow and the central)
    or I have to put them on the dustbin??
    Thank you for answering me
    Alberto
    Alberto Lagna
    Advanced SW Architectures & Methodologies
    CSELT - Telecommunication Research Center in Torino
    Via Borgaro 21, Torino - ITALIA
    tel +39-11 2286775 - fax +39-11 2286862
    E-mail [email protected]
    http://www.cselt.stet.it
    "When all other means of communication fail, try words"

    The problem only occurs when we use INADDR_ANY to bind a socket. The program works as expected when we use real as well as virtual IP address configured for an interface on any Solaris Zone. When we use INADDR_ANY, error number is 14 (EFAULT, Bad Address).
    Just wondering if we need to make any configuration changes in order to allow INADDR_ANY to work.

  • Problem with windows not liking any files named prn

    I recently found a problem with windows not liking any files
    called prn.html, prn.cfm etc etc. If you try and create a file like
    prn.html then it will say "File already exists".
    I initially thought it was a Cold Fusion error as I was
    getting some bizarre error messages when trying to write prn.html
    using cffile.
    Does anyone know a work around for it?

    Hi,
    Not only "prn" but also for the terms like "AUX", "NUL" you
    can't create any directories or files in Windows because these are
    reserved terms with Windows which is meant for some device
    drivers...

  • Problems with shutdown, expose and window switching

    Hi there,
    Recently I've been having a few issues with OS X. First of all it wasn't shutting down properly -- the menu bar would disappear and it would look like it was going to shutdown, but it never did. I could move down to the dock (on auto-hide) and it would re-appear, at which point I can bring up a terminal window and use 'shutdown' to do the job. On startup I'd reset the PRAM, and then do a disk-check, but the problem keeps coming back.
    Subsequently, I've also been having problems with expose and switching windows (i.e. command-tab). Namely, neither of them work. Expose won't fire from either hot corners or the keyboard, and if I re-launch the app from the Apps folder (without trying to kill it first, I should say), it does nothing. Cmd-tab gets interpreted as just tab, and the keyboard shortcut for dashboard also fails (although I can start the dashboard from the dock).
    I read in another post about an invalid jpeg in the downloads folder being able to cause the Expose problem (seems like a most unlikely bug?). Anyway, I cleared all pictures from my downloads folder and functionality came back, but now it's gone again. It's really very frustrating as it makes moving between windows a lot more hassle.
    Any thoughts would be gratefully received.
    TIA,
    Mat

    This sounds interesting.
    Can you post a copy for the rest of us to see?
    As for actually helping you, and not just satisfying our curiousity, if you start cutting pieces of the code you will probably end up finding the source of the problem (and we won't have too big a program to handle). Since DSC is a likely suspect, you may want to start there.
    Also, are you creating an installer and using that to install? If not, you may wish to try that.
    Try to take over the world!

  • Problems with AS 10g and OID

    Hello everyone,
    we got problems with starting OC4J_bi_forms component in AS control.
    database: 10g R2 (10.2.0.1)
    forms and reports: 10g (10.1.2.0.2.)
    designer: 10g (10.1.2.0.2.)
    1. we tried to start component in AS control but we get this error:
    The following components were not started:
    OC4J : home - time out while waiting for a managed process to start
    OC4J : OC4J_BI_Forms - time out while waiting for a managed process to start
    OC4J : OC4J_Portal - time out while waiting for a managed process to start
    For more information, look at the logs using the related link below.
    Related Link Error Logs
    2. then we check the error file that describes problems with OID:
    Error displaying Log Files page. Failed to initialize configuration management user session.. The OracleAS Repository API threw an exception when obtaining the connect string to the Metadata Repository
    Resolution:
    Check the exception thrown by the Repository API for resolution information.
    Some common causes of this problem are as follows:
    OID is not running or unavailable
    the ias.properties file is misconfigured with incorrect OID connection information
    OID permissions are incorrectly defined
    Base Exception:
    oracle.ias.repository.schema.SchemaException
    Unable to establish connection to the Oracle Internet Directory Server ldap://server_xy:389/. Base Exception : javax.naming.CommunicationException: server_xy:389 [Root exception is java.net.ConnectException: Connection refused: connect]. Unable to establish connection to the Oracle Internet Directory Server ldap://server_xy:389/. Base Exception : javax.naming.CommunicationException: server_xy:389 [Root exception is java.net.ConnectException: Connection refused: connect]
    3. we check the status with opmnctl status, all components are down
    4. then we tried to start components manually with opmnctl stopall/startall
    but the problem isn't solved.
    Any help?

    hello Jacco,
    thank you very much for your help, we are now able to start oc4j_bi_forms.
    We follow your advice, at the end we had to change ODS password with oidpasswd to ias_admin password.
    Now all components are started.
    We now must solve only one problem:
    All AS components are started, but when in Application Server Control we click link for
    J2EE Applications we get this error:
    An error was encountered while loading page. Failed to initialize configuration management user session.. The OracleAS Repository API threw an exception when obtaining the connect string to the Metadata Repository
    Resolution:
    Check the exception thrown by the Repository API for resolution information.
    Some common causes of this problem are as follows:
    OID is not running or unavailable
    the ias.properties file is misconfigured with incorrect OID connection information
    OID permissions are incorrectly defined
    Base Exception:
    oracle.ias.repository.schema.SchemaException
    Unable to establish connection to the Oracle Internet Directory Server ldap://server_xy:389/. Base Exception : javax.naming.AuthenticationException: [LDAP: error code 49 - Invalid Credentials]. Unable to establish connection to the Oracle Internet Directory Server ldap://server_xy:389/. Base Exception : javax.naming.AuthenticationException: [LDAP: error code 49 - Invalid Credentials]
    Thanks for your help one more time.

Maybe you are looking for

  • How can I take a picture of a camera output on the Front panel

    Hi all, I've been fighting this one for a while, But I have a DataRay WinCamD CCD image in my front panel, I need a way of saving that image to a file. I've been crawling through NI Vision and IMAQ VIs and I can seem to piece the process together. Th

  • How do I increase voice volume on calls

    Can anyone tell me how to increase the caller volume please?

  • Accessing iTunes Store - Pop up window

    Does anyone know how to fix this annoying pop up window ''Accessing iTunes Store'' that appears every time I open iTunes or access the iTunes Store? Or anyone out there with same problem? Every time I type a letter in the iTunes store search box, the

  • Tabs and pages

    Hi, Am I correct in saying that you can make a tab jump to a page but you can't make a page 'fit into a tab'? What I mean is the following: I have a page x connected to a tab set. Created a region on page x, with display point of After Header, which

  • 5800 problem after updating to new firmware

    When, I first bought my phone the icon on the phone were all unbranded but I did a firmware update and they've all been replaced by t-mobile ones. eg the internet icon has now become "web 'n' walk". How do I get the old unbranded icons back?