Net-snmp problem UNKNOWN host

There is a bug in the net-snmp 5.4 package, the host variable used by snmptrapd to resolve IPs return a UNKNOWN name when can't resolve.
See the following (closed) bug report for details:
  [ 1638225 ] 5.4 traphandle: unresolved IP translated to <UNKNOWN>
  http://sf.net/support/tracker.php?aid=1638225
I don't known if you people can fix this in the next build!!!!!
thanks
Carlos
Last edited by CarLost (2007-06-20 02:28:47)

I have the same problem...
snmpwalk gives me:
Error in packet.
Reason: (genError) A general failure occured
Failed object: .iso.org.dod.internet.private.enterprises.sun.products.sunSeaProxyMIB.sunSubTreeDispatchTable.sunSubTreeDispatchEntry.sunSubTreeDispatchIndex.1.1
And snmpd.log:
cannot read from /dev/openprom
unable to lookup boot-command from eeprom
js.

Similar Messages

  • Net snmp problem

    Dear Members!
    I have installed netsnmp-5.41 from sunfreeware.com. But i got problem on snmpwalk.
    Here is the error message from /var/log/snmpd.log
    netsnmp_assert !"registration != duplicate" failed agent_registry.c:535 netsnmp_subtree_load()
    netsnmp_assert !"registration != duplicate" failed agent_registry.c:535 netsnmp_subtree_load()
    netsnmp_assert !"registration != duplicate" failed agent_registry.c:535 netsnmp_subtree_load()
    NET-SNMP version 5.4.1
    /dev/openprom: Invalid argument
    unable to lookup boot-command from eeprom
    Please advise me what should i do?
    Regards,
    Umar Draz

    I have the same problem...
    snmpwalk gives me:
    Error in packet.
    Reason: (genError) A general failure occured
    Failed object: .iso.org.dod.internet.private.enterprises.sun.products.sunSeaProxyMIB.sunSubTreeDispatchTable.sunSubTreeDispatchEntry.sunSubTreeDispatchIndex.1.1
    And snmpd.log:
    cannot read from /dev/openprom
    unable to lookup boot-command from eeprom
    js.

  • Unknown host and mail server

    HI,
    When i run my application i got the below erros.. what could be the problem
    Unknown host D:\<dir_name>
    Context : External procedure experienced a network error communicating with mail server. Retrying.
    and also i have valid directory with write permission...
    Thanks in advance
    -GG

    Yahoo and Gmail support should be able to help you.
    Not related to Firefox support, web mail doesn't use POP or SMTP protocols which is what email clients such as Thunderbird use for communicating with email servers.

  • Tunneling and problem with unknown host exception

    hello! i've got a problem with https. i use jdk 1.5.0, jboss-4.0.4.ga-patch1, soap.
    and i'm going crasy.. i've testet my client code at our network and it works fine. but if i want to get jobs from the server of our customer, my client throw an "unknown host exception: firm".
    i wonder why it hasn't the full host. the url may look like this: https://firm.sub.com:443/ and while the client connects to the server, i depugged it and the host is correct: firm.sub.
    but after the connection, when the client want to get something from the server (when it wants to communicate with the server over soap) it crashs.
    my client code looks like this:
    private ClientInterfaceEndpoint getClientInterface() throws ServiceException {
    QName serviceQName = new QName(DOCSERVER_NAMESPACE, CLIENT_INTERFACE_SERVICENAME);
    URL wsdlUrl = getClientInterfaceWsdlUrl();
    log.info("*******WSDLURL host: " + wsdlUrl.getHost()); // out: firm.sub
    log.info("*******WSDLURL port: " + wsdlUrl.getPort()); // out: 443
    URL mapping = getClass().getClassLoader().getResource("META-INF/DocumentServer_Mapping.xml");
    log.info("*******MappingURL path: " + mapping.getPath());
    if (wsdlUrl.toString().toLowerCase().contains("https")) {
    if (null == getConfig().getTruststore() || getConfig().getTruststore().equalsIgnoreCase("")) {
    throw new RuntimeException("No or incorrect TruststorePath in the docclient-config");
    File tmp = new File(getConfig().getTruststore());
    if (!tmp.isFile() || !tmp.canRead()) {
    throw new RuntimeException("The truststore at the 'TruststorePath' isn't a file or can't be read.");
    System.setProperty(SYS_PROPERTY_KEY_TRUST, getConfig().getTruststore());
    System.setProperty(SYS_PROPERTY_KEY_TRUST_PW, config.getTruststorePass());
    ServiceFactoryImpl factory = null;
    factory = (ServiceFactoryImpl) ServiceFactory.newInstance();
    Service clientInterfaceService = null;
    try {// create the service for the ClientInterface
    clientInterfaceService = factory.createService(wsdlUrl, serviceQName, mapping, new URL(config.getServerURL())); //, new URL(config.getServerURL())
    log.info("*******ClientInterFaceService WSDL URL Host: " + clientInterfaceService.getWSDLDocumentLocation().getHost()); // out:firm.sub
    log.info("*******ClientInterFaceService WSDL URL Port: " + clientInterfaceService.getWSDLDocumentLocation().getPort()); // out: 443
    } catch (ServiceException e) {
    log.error(e.getMessage());
    throw new RuntimeException(e.getMessage());
    } catch (MalformedURLException e) {
    log.error(e.getMessage());
    throw new RuntimeException(e.getMessage());
    } catch (Exception e) {
    log.error(e.getMessage());
    throw new RuntimeException(e.getMessage());
    }// getting the ClientInterfaceEndpoint
    ClientInterfaceEndpoint clientInterface = (ClientInterfaceEndpoint) clientInterfaceService.getPort(ClientInterfaceEndpoint.class);
    return clientInterface;
    protected URL getClientInterfaceWsdlUrl() {
    URL url = null;
    String urlString = getConfig().getServerURL() + CLIENT_INTERFACE_URI + "?wsdl";
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    Properties properties = System.getProperties();
    String handlers = System.getProperty(SYS_PROPERTY_KEY_PKGS);
    if (handlers == null) {
    properties.put(SYS_PROPERTY_KEY_PKGS, SYS_PROPERTY_VALUE_PKGS);
    else {
    properties.put(SYS_PROPERTY_KEY_PKGS, SYS_PROPERTY_VALUE_PKGS.concat("|").concat(handlers));
    try {
    url = new URL(urlString);
    log.info("*******URL host: " + url.getHost());
    log.info("*******URL port: " + url.getPort());
    log.info("*******URL path: " + url.getPath());
    } catch (MalformedURLException e) {
    log.fatal("DocumentProvider SOAP configured incorrectly. DocServer URL malformed: " + urlString);
    throw new RuntimeException("DocumentProvider SOAP configured incorrectly. DocServer URL malformed: " + urlString, e);
    System.setProperties(properties);
    return url;
    }if it's usefull: the customer use a apache server (not tomcat) where a the server is and the client at another system the jboss.
    The customer told me: if i want to connect the client via http i have to tunnel.. maybe i have to tunnel using https too?
    have i to generate the endpoint classes a second time, extra for https?
    or doesn't soap like host like "firm.sub"?
    can anyone help me please?!
    sorry, my english isn't very well...

    sorry, it's not the same error. The output is: Unable to connect to any host due to exception: java.net.socket.exception: java.net.socket.exception: Unregcognized windows socket error: 10106: create.

  • InetAddress posting Unknown Host Exception

    Hello,
    I am relatively new to java and I am running into an Unknown Host Exception when attempting to return the IP's for valid host names. The strange part is that the first host name returns an address however every entry after the first returns the Unkown Host Exception. Here is the snippet of code that the problem is occuring in.
    Inet address as declared earlier in the code:
         private InetAddress Address = null;Code reporting errors:
              StringBuffer sb0 = new StringBuffer();
              int chr;
              // Read until the end of the stream     
              while ((chr = inputStream0.read()) != -1)
                      sb0.append((char) chr);
              String display = sb0.toString();
              String temp = display.replace("Giant ", "g0");
              String[] words = temp.split("\\|");
              StringBuffer db = new StringBuffer();
              for (int i=0; i < words.length; i++)
                      String many = (words[i] +"wu1");
                      try
                              Address = InetAddress.getByName(many);
                   db.append(words[i] + "wu1|" + Address);
                      catch(NullPointerException e)
                              db.append(words[i] + "wu1 - Null Pointer - ");
                      catch(UnknownHostException e)
                              db.append(words[i] + "wu1 - Unknown Host - ");
              String yay = db.toString();
              log.append(yay);
                                    catch (FileNotFoundException e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
                                    catch (IOException e)
              // TODO Auto-generated catch block
              e.printStackTrace();
              }I have attempted setting Address back to null after the address was appended but it didn't make any difference.
    Edited by: mudbuggle on Aug 4, 2008 7:19 PM

    I made the adjustments however I am still experiencing the same problem.
    www.yahoo.com returns an ip address but the rest return Unknown Host Exceptions.
    www.yahoo.comjava.net.UnknownHostException:
    forums.sun.com
         at java.net.Inet4AddressImpl.lookupAllHostAddr(Native Method)
         at java.net.InetAddress$1.lookupAllHostAddr(Unknown Source)
         at java.net.InetAddress.getAddressFromNameService(Unknown Source)
         at java.net.InetAddress.getAllByName0(Unknown Source)
         at java.net.InetAddress.getAllByName(Unknown Source)
    forums.sun.com     at java.net.InetAddress.getAllByName(Unknown Source)
         at java.net.InetAddress.getByName(Unknown Source)
         at IP$1.actionPerformed(IP.java:83)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.AbstractButton.doClick(Unknown Source)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    java.net.UnknownHostException:
    www.google.com
         at java.net.Inet4AddressImpl.lookupAllHostAddr(Native Method)
         at java.net.InetAddress$1.lookupAllHostAddr(Unknown Source)
         at java.net.InetAddress.getAddressFromNameService(Unknown Source)
         at java.net.InetAddress.getAllByName0(Unknown Source)
         at java.net.InetAddress.getAllByName(Unknown Source)
         at java.net.InetAddress.getAllByName(Unknown Source)
         at java.net.InetAddress.getByName(Unknown Source)
         at IP$1.actionPerformed(IP.java:83)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.AbstractButton.doClick(Unknown Source)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)

  • Running net-snmp as a subagent.

    I am trying to setup net-snmp or ucd-snmp as a subagent through SunMC. I followed the instructions from the Sunmc 3.6.1 installation and configuration guide for modifying the subagent-registry-d.x file and put the following entry:
    netsnmp = {
    type = legacy
    persist = false
    snmpPort = "20161"
    errorAction = restart
    startCommand = "/export/home/xxx/crap.sh -p %port"
    stopCommand = "kill -9 %pid"
    pollInterval = 60
    pollHoldoff = 60
    managedTrees = "ucdavis"
    oidTrees = 1.3.6.1.4.1.2021
    snmpVersion = SNMPv1
    securityLevel = auth
    securityName = LALA
    the startup script crap.sh contains the following line:
    /export/home/xxx/snmpd -c /export/home/xxx/snmpd.conf -p 20161
    When I run a ctail on /var/opt/SUNWsymon/log/agent.log I get the following (removing all lines not assocaited with subagent calls)
    info Feb 06 11:17:39 agent subagent registry successfully loaded
    info Feb 06 11:17:39 agent startLegacySubagents: <>
    info Feb 06 11:17:39 agent startLegacySubagent: netsnmp
    info Feb 06 11:17:39 agent sh: Executing /export/home/psopel/crap.sh -p 20161 process 11859
    warning Feb 06 11:17:44 agent Failed to start legacy subagent netsnmp
    I am able to snmpwalk from another server on port 20161 so I see the net-snmp agent is responding as per the following ouput:
    snmpwalk srvname:20161 -c LALA -v 1 .1.3.6.1.4.1.2021.11
    UCD-SNMP-MIB::ssIndex.0 = INTEGER: 1
    UCD-SNMP-MIB::ssErrorName.0 = STRING: systemStats
    UCD-SNMP-MIB::ssSwapIn.0 = INTEGER: 0
    UCD-SNMP-MIB::ssSwapOut.0 = INTEGER: 0
    UCD-SNMP-MIB::ssIOSent.0 = INTEGER: 0
    UCD-SNMP-MIB::ssIOReceive.0 = INTEGER: 0
    UCD-SNMP-MIB::ssSysInterrupts.0 = INTEGER: 67
    UCD-SNMP-MIB::ssSysContext.0 = INTEGER: 48
    UCD-SNMP-MIB::ssCpuUser.0 = INTEGER: 0
    UCD-SNMP-MIB::ssCpuSystem.0 = INTEGER: 1
    UCD-SNMP-MIB::ssCpuIdle.0 = INTEGER: 98
    But when I try to launch the command through talking to sunmc on port 161 I get:
    snmpwalk srvname -c LALA -v 1 .1.3.6.1.4.1.2021.11
    End of MIB
    A tail of the Agent.log file again shows this line appearing when I launch an snmpwalk:
    info Feb 06 11:40:45 agent getValuePDU: .iso.org.dod.internet.private.enterprises
    info Feb 06 11:40:45 agent getValuePDU: - nodeType is branch
    My understanding is that sunmc should receive the request on port 161 and sending the request to the external net-snmp running on the server. I am expecting to get the same output.
    Is this not how it should be working?
    -Pierre

    Hello Dave,
    I know it is long ago for you, but at the moment I have the same problem that you had in Jan. 2002, and possibly you have solved it meanwhile, or anyone else:
    I am looking for a servlet engine for Windows Mobile 2003.
    We are having a Web application for sales people that sell insurances. The application consists of JSP's and servlets. It runs under RESIN as servlet engine on a regular server and the clients are desktop PC's. My task is to investigate whether the application can be run on an HP iPAQ or similar device, both, server and client, such that the sales person can use it on the go, if he is NOT CONNECTED. The idea is to use the application as is, without modifying the code. B.T.W. a database is not required since all data is held in XML files.
    Any help is appreciated,
    Thanks a lot,
    Regards,
    Klaus.

  • Unknown Host Unable to locate the server requested --- the server does not have a DNS entry. Perhaps there is a misspelling in the server name, or the server no

    Hello,
    Today i tried accessing transitbux.com with mozilla, but i'm getting this kind of a error as mentioned below:
    Unknown Host
    Description: Unable to locate the server requested --- the server does not have a DNS entry. Perhaps there is a misspelling in the server name, or the server no longer exists. Double-check the name and try again.
    Can anyone help me please, and the same website is accessible with my phone.
    Help me please. :(
    Regards
    -

    Try http://www.transitbux.com/
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"

  • Konqueror, other browsers: "unknown host", WTF?!

    Every once in a while, Konqueror gives me the following error page after trying to load a website:
    An error occured while loading [page of website]:
    Unknown host [website].
    Trying again will *always* result in the page loading properly - this stuff happens when my internet connection is solid.
    Dillo gives me exactly the same problem. Interestingly, Firefox and Links/eLinks don't. It seems almost as though the problem's rate of occurrence is related to the rendering speed of the browser, though I doubt that's the case.
    More interestingly, Firefox and Internet Explorer are both affected this way on another computer in my house. Other machines are asymptomatic.
    This problem appeared following the installation of a new router, a Dynex DX-E401, after the old one was fried by a power surge.
    Changing the MTU used by the router has not helped.
    What is going on?

    I'm not qualified to say anything good, bad or indifferent about anything related to kde, but in general, disabling IPv6 unless you actually need it is a good thing, IME. I always exclude it from my hand-rolled kernels - that way I don't need to worry about any related config in userspace.
    By comparison, I've recently put OpenBSD onto a freed-up partition on this machine, and as I don't know enough about it yet, I'm using their stock kernel. The logs have frequent entries about IPv6 connection attempts failing - not surprising, since my lan knows nothing about it. 

  • Catalog backup getting Error resolving host - unknown host name in dataset

    I have new install of OSB version 10.3.0.1.0 [Admin, Mediaserver, Client] installed on the same OEL server. My Catalog Backup jobs end up with error " unknown host name in dataset" and the job detail shows only "Error resolving host - unknown host name in dataset" while I can ping the admin host with obtool pingh command. The standard auto created Catalog backup dataset looks like this:
    Dataset: OSB-CATALOG-DS
    # Dataset for backing up the OSB Catalog on this administrative host
    include catalog
    I am able to create a separate dataset with the hostname defined and able to backup filesystems on the same host, np . Only the catalog backup from system generated dataset and schedule doesn't run. I appreciate any help or tip to make this catalog backup work. Thanks.

    This problem is fixed by just restarting observiced on admin server.

  • Unknown Host sidhost (see /etc/hosts)

    Hi experts,
        I'm facing a problem in maxdb please help us the issue
    Error:
    starting database instance ...
    Error! Connection failed to node devhost for database DEV:
    unknown host devhost (see /etc/hosts)
    Opening Database...
    Error! Connection failed to node devhost for database DEV:
    unknown host devhost (see /etc/hosts)
    connect to the database to verify the database is now open
    dbmcli check finished with return code: 0
    database start failed

    Hi Deepak,
                       This is the DBM.PRT log file.
    'db_warm' is being executed.
    2014-02-28 09:50:00       4993 INF          1 DBMKnl   Sending an administrative statement to the database DEV on computer localhost
                              4993 INF          8 DBMKnl   Statement:  RESTART
    2014-02-28 09:50:50       4993 INF          3 DBMKnl   Received the result of an administrative statement from the database DEV on computer localhost
                              4993 INF          9 DBMKnl   Statement:  RESTART
                              4993 INF         10 DBMKnl   Returncode: 0
    2014-02-28 09:50:59       4993 INF        419 DBMSrv   Command 'db_warm' has ended with return code 0.
    2014-02-28 09:50:59       4993 INF          2 DBMSrvCo A DBM Server client connection was released (client process has process ID 4991 on computer transids.transaltus.com).
    2014-02-28 09:59:35       7407 INF          1 DBMSrvCo A DBM Server client connection was established at 2014-02-28 09:59:35 (client process has process ID 7194 on computer transids.transaltus.com).
    2014-02-28 09:59:36       7407 INF        283 DBMSrv   Command 'dban_start ...' is being executed.
    2014-02-28 10:00:41       7407 INF        419 DBMSrv   Command 'dban_start' has ended with return code 0.
    2014-02-28 10:16:57       7407 INF          2 DBMSrvCo A DBM Server client connection was released (client process has process ID 7194 on computer transids.transaltus.com).
    2014-02-28 17:55:12      14698 INF          1 DBMSrvCo A DBM Server client connection was established at 2014-02-28 17:55:12 (client process has process ID 14696 on computer transids.transaltus.com).
    2014-02-28 17:55:12      14698 INF        283 DBMSrv   Command 'dban_stop' is being executed.
    2014-02-28 17:55:14      14698 INF        419 DBMSrv   Command 'dban_stop' has ended with return code 0.
    2014-02-28 17:55:14      14698 INF          2 DBMSrvCo A DBM Server client connection was released (client process has process ID 14696 on computer transids.transaltus.com).
    2014-02-28 17:55:15      14724 INF          1 DBMSrvCo A DBM Server client connection was established at 2014-02-28 17:55:14 (client process has process ID 14722 on computer transids.transaltus.com).
    2014-02-28 17:55:15      14724 INF        283 DBMSrv   Command 'db_cold' is being executed.
    2014-02-28 17:55:15      14724 INF          1 DBMKnl   Sending an administrative statement to the database DEV on computer localhost
                             14724 INF          8 DBMKnl   Statement:  SHUTDOWN
    2014-02-28 17:55:15      14724 INF          3 DBMKnl   Received the result of an administrative statement from the database DEV on computer localhost
                             14724 INF          9 DBMKnl   Statement:  SHUTDOWN
                             14724 INF         10 DBMKnl   Returncode: 0
    2014-02-28 17:55:30      14724 INF        419 DBMSrv   Command 'db_cold' has ended with return code 0.
    2014-02-28 17:55:30      14724 INF          2 DBMSrvCo A DBM Server client connection was released (client process has process ID 14722 on computer transids.transaltus.com).
    2014-02-28 17:55:30      14769 INF          1 DBMSrvCo A DBM Server client connection was established at 2014-02-28 17:55:30 (client process has process ID 14767 on computer transids.transaltus.com).
    2014-02-28 17:55:30      14769 INF        283 DBMSrv   Command 'db_offline' is being executed.
    2014-02-28 17:55:32      14769 INF        419 DBMSrv   Command 'db_offline' has ended with return code 0.
    2014-02-28 17:55:32      14769 INF          2 DBMSrvCo A DBM Server client connection was released (client process has process ID 14767 on computer transids.transaltus.com).
    2014-03-03 09:19:32       4829 INF          1 DBMSrvCo A DBM Server client connection was established at 2014-03-03 09:19:32 (client process has process ID 4827 on computer transids.transaltus.com).
    2014-03-03 09:19:32       4829 INF        283 DBMSrv   Command 'db_clear' is being executed.
    2014-03-03 09:19:32       4829 INF        419 DBMSrv   Command 'db_clear' has ended with return code 0.
    2014-03-03 09:19:32       4829 INF          2 DBMSrvCo A DBM Server client connection was released (client process has process ID 4827 on computer transids.transaltus.com).
    2014-03-03 09:19:32       4834 INF          1 DBMSrvCo A DBM Server client connection was established at 2014-03-03 09:19:32 (client process has process ID 4832 on computer transids.transaltus.com).
    2014-03-03 09:19:32       4834 INF        283 DBMSrv   Command 'db_start' is being executed.
    2014-03-03 09:19:47       4834 INF        419 DBMSrv   Command 'db_start' has ended with return code 0.
    2014-03-03 09:19:47       4834 INF          2 DBMSrvCo A DBM Server client connection was released (client process has process ID 4832 on computer transids.transaltus.com).
    2014-03-03 09:19:47       4879 INF          1 DBMSrvCo A DBM Server client connection was established at 2014-03-03 09:19:47 (client process has process ID 4877 on computer transids.transaltus.com).
    2014-03-03 09:19:47       4879 INF        283 DBMSrv   Command 'db_warm' is being executed.
    2014-03-03 09:19:47       4879 INF          1 DBMKnl   Sending an administrative statement to the database DEV on computer localhost
                              4879 INF          8 DBMKnl   Statement:  RESTART
    2014-03-03 09:20:41       4879 INF          3 DBMKnl   Received the result of an administrative statement from the database DEV on computer localhost
                              4879 INF          9 DBMKnl   Statement:  RESTART
                              4879 INF         10 DBMKnl   Returncode: 0
    2014-03-03 09:20:50       4879 INF        419 DBMSrv   Command 'db_warm' has ended with return code 0.
    2014-03-03 09:20:50       4879 INF          2 DBMSrvCo A DBM Server client connection was released (client process has process ID 4877 on computer transids.transaltus.com).
    2014-03-03 09:39:11       7414 INF          1 DBMSrvCo A DBM Server client connection was established at 2014-03-03 09:39:10 (client process has process ID 7098 on computer transids.transaltus.com).
    2014-03-03 09:39:11       7414 INF        283 DBMSrv   Command 'dban_start ...' is being executed.
    2014-03-03 09:40:01       7414 INF        419 DBMSrv   Command 'dban_start' has ended with return code 0.
    2014-03-03 09:41:13       7414 INF          2 DBMSrvCo A DBM Server client connection was released (client process has process ID 7098 on computer transids.transaltus.com).
    2014-03-03 17:44:38      14827 INF          1 DBMSrvCo A DBM Server client connection was established at 2014-03-03 17:44:38 (client process has process ID 14825 on computer transids.transaltus.com).
    2014-03-03 17:44:38      14827 INF        283 DBMSrv   Command 'dban_stop' is being executed.
    2014-03-03 17:44:40      14827 INF        419 DBMSrv   Command 'dban_stop' has ended with return code 0.
    2014-03-03 17:44:40      14827 INF          2 DBMSrvCo A DBM Server client connection was released (client process has process ID 14825 on computer transids.transaltus.com).
    2014-03-03 17:44:40      14853 INF          1 DBMSrvCo A DBM Server client connection was established at 2014-03-03 17:44:40 (client process has process ID 14851 on computer transids.transaltus.com).
    2014-03-03 17:44:40      14853 INF        283 DBMSrv   Command 'db_cold' is being executed.
    2014-03-03 17:44:40      14853 INF          1 DBMKnl   Sending an administrative statement to the database DEV on computer localhost
                             14853 INF          8 DBMKnl   Statement:  SHUTDOWN
    2014-03-03 17:44:44      14853 INF          3 DBMKnl   Received the result of an administrative statement from the database DEV on computer localhost
                             14853 INF          9 DBMKnl   Statement:  SHUTDOWN
                             14853 INF         10 DBMKnl   Returncode: 0
    2014-03-03 17:45:00      14853 INF        419 DBMSrv   Command 'db_cold' has ended with return code 0.
    2014-03-03 17:45:00      14853 INF          2 DBMSrvCo A DBM Server client connection was released (client process has process ID 14851 on computer transids.transaltus.com).
    2014-03-03 17:45:00      14902 INF          1 DBMSrvCo A DBM Server client connection was established at 2014-03-03 17:45:00 (client process has process ID 14900 on computer transids.transaltus.com).
    2014-03-03 17:45:00      14902 INF        283 DBMSrv   Command 'db_offline' is being executed.
    2014-03-03 17:45:01      14902 INF        419 DBMSrv   Command 'db_offline' has ended with return code 0.
    2014-03-03 17:45:01      14902 INF          2 DBMSrvCo A DBM Server client connection was released (client process has process ID 14900 on computer transids.transaltus.com).

  • PING - Unknown host 127.0.0.1, Unknown host localhost

    Hello,
    I have a problem - I created a chrooted jail for one user. When I'm logged in as root, everything work fine, but when I'm logged in as a chrooted user - I have many problems:
    1. When I execute the command ping, I get weird results:
    bash-3.00$ usr/sbin/ping localhost
    usr/sbin/ping: unknown host localhost
    bash-3.00$ usr/sbin/ping 127.0.0.1
    usr/sbin/ping: unknown host 127.0.0.1
    bash-3.00$ usr/sbin/ping ip_address1
    usr/sbin/ping: unknown host ip_address12. When I execute
    bash-3.00$ svcs -x I get:
    svcs: Could not bind to repository server: repository server unavailable. Exiting.3. When I try to sftp or ssh another machine
    bash-3.00$ sftp ip_address1
    bash-3.00$ ssh ip_address1I receive the message:
    Host key verification failed.although I am able to ssh/sftp the machine as root
    4. When I ftp another machine
    bash-3.00$ ftp ip_address1I get
    unknown host or invalid literal address5. If I telnet another machine:
    bash-3.00$ telnet ip_address1I receive
    ip_address1: service name not available for the specified socket typeI need to add that all these commands work perfectly for root. I probably didn't copy some of the necessary configuration files/programs to the chrooted directory. But which ones?
    Regards,
    Przemek

    Przemek198 wrote:
    Hello,
    I have a problem - I created a chrooted jail for one user. When I'm logged in as root, everything work fine, but when I'm logged in as a chrooted user - I have many problems:When something works as root and not as a regular user, I think "permission problems".
    1. When I execute the command ping, I get weird results:
    bash-3.00$ usr/sbin/ping localhost
    usr/sbin/ping: unknown host localhost
    Here it appears that hostname resolution is different. Since that happens in the /etc/inet/hosts file (or possibly the /etc/inet/ipnodes file), I'd examine those and see if they are only readable by root for some reason. (And this would be within the chroot environment, since that's where the problem is).
    Darren

  • [SOLVED] HP jetdirect printer errors after updating net-snmp

    My office's HP printers weren't working anymore this morning, my cups log showed the following errors after a pacman -Syu.
    It looks that libnetsnmp.so.25 is required by hplip 3.11.10-1, but the latest net-snmp  5.7.1-1 provides libnetsnmp.so.30.
    168 D [31/Oct/2011:14:15:51 +0000] [Job 708] renderer command: gs -q -dBATCH -dPARANOIDSAFER -dQUIET -dNOPAUSE -sDEVICE=ijs -sIjsServer=hpijs     -dDEVICEWIDTHPOINTS=612 -dDEVICEHEIGHTPOINTS=792 -sDeviceManufacturer="HEWLETT-PACKARD" -sDeviceModel="hp color LaserJet 3500" -dDuplex=    false -r600 -sIjsParams=Quality:Quality=0,Quality:ColorMode=2,Quality:MediaType=0,Quality:PenSet=2,PS:MediaPosition=7 -dIjsUseOutputFD -s    OutputFile=- -
    169 D [31/Oct/2011:14:15:51 +0000] [Job 708] JCL: <job data>
    170 D [31/Oct/2011:14:15:51 +0000] [Job 708]
    171 D [31/Oct/2011:14:15:51 +0000] [Job 708] Starting process 3788: "gs -q -dBATCH -dPARANOIDSAFER -dQUIET -dNOPAUSE -sDEVICE=ijs -sIjsServer    =hpijs -dDEVICEWIDTHPOINTS=6..."                                                                                                         
    172 D [31/Oct/2011:14:15:51 +0000] [Job 708] hpijs: error while loading shared libraries: libnetsnmp.so.25: cannot open shared object file: N    o such file or directory
    [14:29]:sudo pacman -Q | grep net-snmp
    net-snmp 5.6.1-4
    [14:30]:sudo pacman -Qo /usr/lib/cups/backend/hp
    /usr/lib/cups/backend/hp is owned by hplip 3.11.5-1
    solution is to downgrade net-snmp:
    [2011-10-08 21:56] upgraded net-snmp (5.6.1-4 -> 5.7.1-1)
    [2011-10-31 14:24] Running 'pacman -U /var/cache/pacman/pkg/net-snmp-5.6.1-4-x86_64.pkg.tar.xz'
    [2011-10-31 14:24] upgraded net-snmp (5.7.1-1 -> 5.6.1-4)
    this might help someone else,

    Hi groberts619,
    Unfortunately the software you obtain from the Printer Software Update doesn't include the HP Scan application - only the print and scan drivers.  I just checked on your product and it doesn't appear that there are plans to release an updated HP Scan installer for this model.
    On Mavericks it seems your best option will be to use Apple's Image Capture scan application.  You can find this application in the /Applications folder.  You also have the option to scan using Preview.  Look in the File menu for the command to import from a scanner.
    FretnBoutNutn
    I work for HP.
    - Say "Thanks" by clicking the Kudos Star in the post that helped you.
    - Please mark the post that solves your problem as "Accepted Solution"

  • [iPhone 2.1 beta2] gethostbyname always get Unknown host error

    gethostbyname always get "Unknown host" error.
    any thoughts?
    following is the code how to get local iphone ip:
    char buffer[256];
    if(gethostname(buffer, sizeof(buffer)) == 0)
    struct hostent* host = gethostbyname(buffer);
    if (host == NULL) {
    herror("gethostbyname");
    return NULL;
    in_addr in;
    memcpy(&in.s_addr, host->h_addr, host->h_length);
    char* addr = inet_ntoa(in);
    if(addr)
    strcpy(local_ip, addr);
    }

    I'm having a similar problem, but the emergency call/airplane mode trick didn't fix mine. I just get call failed with no option to turn off airplane mode. Anyone else have another solution?
    I'm on an original iPhone with a Mac PowerBook G4
    After trying the update to 2.1 I just get the "unknown error occurred (-3256)" in iTunes. And the connect to iTunes screen on my iPhone. I've tried resetting with no success. I cannot restore because it can't access the iPhone in iTunes (it shows up as a devise by that's it). I can't get to any settings.
    Any help will be greatly appreciated...I'm desperate.

  • Unknown host or domain for exotic domain

    Hello,
    We are running this version :
    Sun Java(tm) System Messaging Server 6.3-6.03 (built Mar 14 2008; 32bit)
    libimta.so 6.3-6.03 (built 17:12:37, Mar 14 2008; 32bit)
    When we try to send a mail for all +.me+ domain we have : +550 5.1.2 unknown host or domain: [email protected]+
    We have this problem with this address for example : [email protected]
    The dns resolution seems good on the server :
    Non-authoritative answer:
    ac.me   preference = 10, mail exchanger = mail.ac.me
    Authoritative answers can be found from:
    ac.me   nameserver = ns.ac.me
    ac.me   nameserver = ns2.ac.me
    mail.ac.me      internet address = 89.188.43.10
    Is there a filter for some domains in any config file or an invalid domain list compiled in the binary ?
    I don't have tried all the domain but it seems that we have the same problem with the +.cat+ domain.
    Thank you
    Edited by: kitegui on Nov 19, 2009 7:14 AM

    >
    Is there a filter for some domains in any config file or an invalid domain list compiled in the binary ?
    Known email domains are listed in the <msg_base>/config/internet.rules file.
    The ".me" domain was added to the file in MS6.3 patch 30 and above. I suggest you use this as an opportunity to patch your system to the latest patch release.
    I don't have tried all the domain but it seems that we have the same problem with the +.cat+ domain.The ".cat" domain was added to the file over three years ago.
    Regards,
    Shane.

  • Cannot get net-snmp to start!!!

    Newbie question...
    I have installed net-snmp on a V880 running Solaris 9. The install appeared to complete without issue. However, when I attempt to start snmp, I get the following...
    bash-2.05# /etc/init.d/init.snmpdx start
    bash-2.05# ./snmpd -f -L
    [init_smux] bind failed: Address already in use
    Error opening specified endpoint "udp:161"
    Server Exiting with code 1
    ps -ef confirmes that net-snmp is the only version of snmp running on this machine...
    bash-2.05# ps -ef | grep snmp
    root 27603 1 0 10:57:29 ? 0:00 /usr/local/sbin/snmpd
    root 3953 27727 0 11:01:41 pts/3 0:00 grep snmp
    I don't think that there is anything else occupying this port...
    bash-2.05# lsof -i udp:161
    COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
    snmpd 27603 root 18u IPv4 0x30a267379c0 0t0 UDP *:161 (Idle)
    and snmp seems to be reading in the correct config files...
    bash-2.05# /usr/local/sbin/snmpd -Dread_config -H 2>&1 | grep "Reading" | sort -u
    read_config: Reading configuration /usr/local/share/snmp/snmpd.conf
    read_config: Reading configuration /var/net-snmp/snmpd.conf
    I am a beginner, so please be merciful...but I would appreciate any advice as to what I'm doing wrong.
    Thanks in advance...
    Stephen

    Can you tell me , how to do fix this problem
    [myserver01:]# /usr/local/sbin/snmpd -f -L
    [init_smux] bind failed: Address already in use
    Error opening specified endpoint "udp:161"
    Server Exiting with code 1
    [email protected]

Maybe you are looking for

  • A DVD external super drive on a Macbook-pro 15', any chance to work?

    Hey! I bought a macbook-pro 15' in 2009 which does generally well. Nevertheless it has a problem concerning the DVD internal drive. It doesn't read   anymore and I have tried to clean with no effect. Few days ago I bought an external USB super drive

  • How can I see personal folder in My Folders on com...

    Hello All, I have an N95 8gb with 30.0.1.18 FW. I have the latest PC suite and Ovi suite installed on Windows Vista 32-bit. I have a few personal folders on my phone's messaging in the My Folder section. I have never been able to see those folders on

  • Login Box example and source code on adf struts and JSP

    Dear all.. I want to make application using ADF struts and JSP using oracle 10g Jdeveloper. The user should login into the login box and verify everyone who has right to enter the home.jsp. Anybody could help me with the source code as well as the st

  • J2EE  tutorial and derby

    Hello, I am trying to use J2EE tutorial to learn about the technology. I am having trouble starting the Derby database. When I start Derby , I get the following message logged into db.log file Server is ready to accept connections on port 1527. Could

  • Profile in Lightrooom 3.6 for Sigma 10-20 mm 1:4-5.6 DC for use on Pentax K5 Camera

    When goiing to lens-profiles in Adobe Lightroom 3.6 The Sigma 10-20 1:4-5.6 DC lens is not recognised. Of the programmed Sigma Lenses a 12-24 mm lens is the most nearby. Can Adobe create further profiles for the above and other common used lenses to