Host name is unknown

Hi!
I am trying to create RFC connection from XI to SRM system, but when I specify system host name I get an error that host name is unknown.
Could you please help me to solve this issue?
Thanks and Regards,
Siarhei

Hi Siarhei Tsikhan...
You may try this transaction to know the status
Use Tcode SM49 in the subsequent screen click on PING and then in next screen enter URL of the system and press F8
this will give you the status of  the system in terms of how many packet lost or successful delivery
by this you may get exact status of server\
regards
sandeep
If helpful kindly reward points

Similar Messages

  • Change my Host Name in Solais 10

    Please, when I run smc(Solaris Management Console) I can see in System Information, that my Host Name is unknown. How can I change that?

    It's strange that you don't have etc/nodename, it must be in etc/. May be you'll try to create it? Besides, I think this article can help you:
    Setting Up a Solaris DHCP Client
    One of the problems that can arise when trying to use a Solaris box as a DHCP
    client is that by default, the server is expected to supply a hostname, in
    addition to all the other stuff (like IP address, DNS servers, etc.). Most cable
    modems and home routers don't supply a (usable) hostname, so it gets set to "unknown".
    This page describes how to get around that. (Where this page says "cable modem",
    "DSL modem" can be substituted.)
    This page assumes that le0 is the interface you using for your DHCP connection.
    Substitute hme0 or whatever interface you're actually using in the examples
    below.
    Setting up DHCP
    There are two ways of using DHCP:
    DHCP has limited control
    DHCP has full control
    The first case may be where you want to use your own /etc/resolv.conf and so on,
    with a minimum of hassle.
    The second case would be the normal situation, especially if your cable modem
    provider has a habit of changing DNS name server IP addresses on you (like mine
    does!), so I'll concentrate on that here. I have a script to automate the first
    method, should you want to use it. You'll need to change the DEFAULT_ADDR and
    INTERFACE variables as required.
    The first thing to do is to create an empty /etc/hostname.le0, like this:
    /etc/hostname.le0Creating this file ensures that the interface gets plumbed, ready for the DHCP
    software to do its stuff.
    Next, you create /etc/dhcp.le0. This file can be empty if you want to accept the
    defaults, but may also contain one or both of these directives:
    wait time, and
    primary
    By default, ifconfig will wait 30 seconds for the DHCP server to respond (after
    which time, the boot will continue, while the interface gets configured in the
    background). Specifying the wait directive tells ifconfig not to return until
    the DHCP has responded. time can be set to the special value of forever, with
    obvious meaning. I use a time value of 300, which seems to be long enough for my
    cable provider.
    The primary directive indicates to ifconfig that the current interface is the
    primary one, if you have more than one interface under DHCP control. If you only
    have one interface under DHCP control, then it is automatically the primary one,
    so primary is redundant (although it's permissible).
    With these files in place, subsequent reboots will place le0 under DHCP control:
    you're ready to go!
    Unknown hostname
    Actually, there's one snag: most (if not all) cable modem DHCP servers don't
    provide you with a hostname (even if they did, odds are it won't be one you want
    anyway!). This wouldn't be a problem, except that the boot scripts (/etc/init.d/rootusr
    in particular) try to be clever, and set your hostname to "unknown" in this case,
    which is not at all useful!
    The trick is to change your hostname back to the right one, preferably without
    changing any of the supplied start-up scripts, which are liable to be being
    stomped on when you upgrade or install a patch. You've also got to do it early
    enough in the boot process, so that rpcbind, sendmail and friends don't get
    confused by using the wrong hostname. To solve this problem, put this little
    script in to /etc/init.d/set_hostname, with a symbolic link to it from /etc/rc2.d/S70set_hostname.
    Starting with Solaris 10, the preceding paragraph can be ignored. Instead, just
    make sure that the hostname you want to use is in /etc/nodename; the contents of
    that file will then be used to set the hostname. (Note that it is essential that
    the hostname you put into /etc/nodename is terminated with a carriage return.
    Breakage will happen if this is not the case.) Also, from Solaris 8 it is
    possible to tell the DHCP software not to request a hostname from the DHCP
    server. To do this, remove the token 12 from the PARAM_REQUEST_LIST line in /etc/default/dhcpagent.
    (/etc/default/dhcpagent describes what the default tokens are; 12 is the
    hostname, 3 is the default router, 6 is the DNS server, and so on.)
    With these modifications in place, reboot, and you'll be using your cable modem
    in no time!
    If you've got more than one machine, and you want to access the Internet from
    all of them, you might also find my Solaris NAT page useful.
    If this page has been useful to you, please consider buying a copy of my book,
    Solaris Systems Programming.
    Send any questions or comments to: [email protected]
    And this is the script:
    #!/sbin/sh
    # Name: set_hostname
    # SCCS Id: @(#)set_hostname 1.2 07/26/04
    # Description: This file is a script for re-setting your hostname to the
    # right value if you use DHCP (which has a habit of setting
    # your hostname to "unknown" if you use a cable modem).
    # Copyright Љ 2000-2004 by Rich Teer. All rights reserved.
    HOSTNAME=`cat /etc/nodename`
    echo "Setting hostname to $HOSTNAME... \c"
    uname -S $HOSTNAME
    echo "Done."
    It's another variant, more complex:
    #!/usr/bin/sh
    # set_hostname
    # Setting DHCP hostname when not provided from DHCP-server.
    # Make sure you have a "clean" copy of /etc/hosts (fx. /etc/hosts.orig)
    # As this script will clean up and set the hostname in /etc/hosts.
    # The script can be run in hand, or as a startup script in:
    # Solaris 8/9: /etc/init.d; /etc/rcX.d
    # Programmed by: Yngve Berthelsen
    # Date: 20050216
    # E-Mail: [email protected]
    # Last updated: 20050216
    # History:
    ### Variables used in script
    NODENAME="/etc/nodename"
    HOSTALIAS=`cat /etc/nodename|nawk ' BEGIN { FS="." }; { print $1 }'`
    HOSTFILE="/etc/hosts"
    ORGHOST="/etc/hosts.orig"
    HOSTNAME=`/usr/bin/hostname`
    NIC="hme0" # Change hme0 to the DHCP interface NIC
    DHCPNIC="/etc/dhcp.$NIC"
    IPADDRESS=`ifconfig $NIC|grep inet|nawk '{ print $2 }'`
    ### Functions to call
    SetHostname()
    echo "Setting DHCP Hostname: $NODENAME"
    /usr/bin/uname -S $NODENAME
    print "$IPADDRESS\t$NODENAME\t$HOSTALIAS" >> $HOSTFILE
    /usr/bin/hostname $NODENAME
    return
    # main
    case "$1" in
    'start')
    if [ -f $DHCPNIC ]
    then
    if [[ $HOSTNAME == "Unknown" ]]
    then
    SetHostname
    elif [[ $HOSTNAME == "unknown" ]]
    then
    SetHostname
    fi
    fi
    'stop')
    if [ -f $DHCPNIC ]
    then
    cp -frp $ORGHOST $HOSTFILE
    fi
    echo "Usage: $0 { start |stop }"
    exit 1
    esac
    exit 0
    ### This script is submitted to BigAdmin by a user of the BigAdmin community.
    ### Sun Microsystems, Inc. is not responsible for the
    ### contents or the code enclosed.
    ### Copyright 2007 Sun Microsystems, Inc. ALL RIGHTS RESERVED
    ### Use of this software is authorized pursuant to the
    ### terms of the license found at
    ### http://www.sun.com/bigadmin/common/berkeley_license.html
    I use the first, "short" script, it works.

  • Need help with Host Name

    I have several Macs and PC connected through my wireless network. On My wireless router I am able to see all the computers connected. All the PC's show their Host Name. All of the Macs show their correct IP addresses but show a host name of unknown. I have gone to system preferences and from there gone to sharing and set the macs local hostname to xxx.local. I have not checked the 'Use dynamic global hostname' option. After doing this the host name still shows as unknown. Where do I go in a mac to properly set the host name so it will show up on the wireless networks as well as the ip address?
    Thanks in advance for all help.

    Setting the host name in sharing was the answer. A reboot was required.

  • 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 names ( rv220w )

    I just bought a Cisco rv220w and noticed that 90% of the connected devices read as Unknown. I moved from a Netgear WNDR4500 where almost 90% of the items were labeled with their proper names. Those names which were left as Unknown, I was able to set their names appropriately.
    This new router was quite a bit more expensive than the Netgear, are there any similar options to setting the connected device names or is there a setting I am missing to be able to properly identify the connected devices?
    Hopefully, I am missing something small but I have spent 10+ hours trying to figure this our to no avail.
    Thanks for any help.

    Richard,
    I have used the RV220W at home since it was released. I have noticed the same thing, on mine the only host names that I see are computers and network attached storage devices. I have several IP cameras, printers, etc. and they all show as "Unknown". This has been the same on every firmware release. I have not found any settings in the router or LAN devices that can change this, it appears to be a limitation of the router.
    I will say that I have found this limitation easy to overlook as the RV220W is stellar in every other way that is important to me, especially with the latest firmware installed. It was expensive for a home router but it has served me well. It also has a limited lifetime warranty which is not easy to find in a consumer model.
    - Marty

  • Terminal Host Name unknown####

    Whenever i log into my termianl i noticed that i see that my hostname says unkown040ccedf8e88: ny name, is this normal? because i know that my friends MPA's have a different host name, and when i type in "hostname" on terminal, it gives me that unkown###

    You can change the hostname in the System Preferences of Lion (client):
    Go to:
    - System Preferences -> Sharing
    - See "computer name" at the top, enter something other than what's there.
    - If you click "Edit" underneath, you should get something like hostname.domain. I usually see: computername.local
    When you use hostname, you should get the value given when you click "Edit", e.g computername.local
    It could be that what's currently there is too long and/or contains an illegal character. While a bit old and refers to a specific case of binding to Active Directory, according to this:
    Use computer names and passwords that are less than 16 characters in length, and which only contain alphanumeric (A–Z, a–z), numbers (0–9), - (dash) and/or _ (underscore) characters when binding with Directory Utility
    I would try a new computer name in accordance with that those rules to see if it corrects the problem: alphanumeric (A–Z, a–z), numbers (0–9), - (dash) and/or _ (underscore)
    I don't use spaces either.

  • Hostname change - db_connect failed, unknown host name, Return Code 000256

    check SAP Note 403708 - Changing an IP address and make sure there are no space, special characters in the hostname.

    Hi Simon
    Run Config Tool and change DB connection settings there in Secure Store. Update admin/host & jdbc/Url properties wherever you find the old host name. Then save the changes and restart the cluster.
    BR, Sergei

  • Cannot resolve host names on local network

    It is a local network with router, few Windows computers with shared drives and one Mac.
    Windows shares appear correctly in SHARED and can be used without any problems, like iTunes and iPhoto libraries are on those shared drives and work properly, even if ip address of those computers would change.
    BUT - if I am trying to use VNC and connect to hostname:port, it says that server is not specified. If I try to ping hostname it says Unknown host.
    At the same time, similar ping from Windows computer work without any problems.
    It could be possible that router does not support something standard and communicates with Windows using something windows-specific, but what confuses me is that I can see computer names resolved in the finder already! Also, as I said iTunes and iPhoto can work with shared files on dynamic ip's which would be not possible if host names would be not resolved.
    Thanks.

    Domain Name Resolution for local IP addresses require a Local DNS server running on your network.
    Bonjour names will resolve without a Local DNS server. So this is why iTunes and iPhoto works as they use bonjour technology.
    A bonjour name ends in .local so in your macs sharing preferences you give the mac a name of imac its bonjour address is imac.local
    Other than that you are best giving your devices fixed IP address and adding there hostnames to your hosts file.
    the contents of /etc/hosts on your mac would look like
    # Host Database
    # localhost is used to configure the loopback interface
    # when the system is booting. Do not change this entry.
    127.0.0.1 localhost
    255.255.255.255 broadcasthost
    ::1 localhost
    fe80::1%lo0 localhost
    so at the above that you could add for example
    192.168.1.5 mypc
    192.168.1.6 myprinter
    Then you could ping 192.168.1.5 by
    ping mypc
    So would have to add these entries to each hosts file on every computer on your lan.
    Or you could setup a local dns server and give each computer on your LAN a fully qualified domain name.

  • Changing the Host Name in Lite Database

    Hi,
         I am using oracle 10g Database release 2 and oracle 10g Lite Database Release 3
    OS is Windows 2003 Server
    I changed the host name
    “Old Name Oracle10g New Name OracleTENR1”
    Also change the host name in Listener.ora and tnsname.ora after that i restart the machine
    I checked the Database status (it is in OPEN STATE only )
    And then I start the mobile server it's not working ….
    How to change the host name in the oracle 10g Lite Database ?
    Please Advice
    Thank U
    SHAN

    hi,
    Thanks Fot the Reply ......
    I have changed the hostname in webtogo.ora
    Mobile Server is Working...
    But the Problem is "with the Browser http://localhost/webtogo it shows this error message in the Screen"
    500 Internal Server Error
    java.lang.NullPointerException     at oracle.lite.web.util.TaggedHtml.parse(Unknown Source)     at oracle.lite.web.util.TaggedHtml.init(Unknown Source)     at oracle.lite.web.WebtogoLogonPage.init(Unknown Source)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.loadServlet(HttpApplication.java:2231)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.findServlet(HttpApplication.java:4617)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.findServlet(HttpApplication.java:4541)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2821)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:740)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     at java.lang.Thread.run(Thread.java:595)
    Please Advice.....
    thank U
    SHAN

  • BusinessObjects Enterprise HOST NAME PROBLEMS

    As we can find in other posts, we know that BO has problems with underscore in the host name.
    I read in some posts that the problem can be solved by writing the IP address instead of the host name when we use Infoview or whatever we need.
    I've done two BO enterprise installations in two different Vitual Machines (made with Virtual PC).
    I know that SAP guarantees that BO works fine only on VMware platform with the host name without underscores.
    The host on the first Virtual Machine was named correctly, but after the installation I changed it inserting an underscore; after this the Infoview login interface didn't work. So I tried to write the IP address and It worked properly.
    Trying to use Designer and Translation Manager I had  only to use the IP address instead of the current host name.
    The host on the second Virtual Machine was named with an underscore, and after the installation I launched the Infoview login interface that didn't work. Again I tried to write the IP address and It worked properly, but in this case I couldn't launch the Designer and I couldn't import the universe from cms with the Translation Manager!!!
    I got this exception opening the Designer:
    1 processor P Family 6 Model 15 Stepping 6
    Windows 2000 Server (Terminal Server) v5.2 build 3790 (S)
    Physical Total/Avail: 1.546.728 Kb / 878.328 Kb
    Temp directory C:\DOCUME1\ADMINI1\IMPOST~1\Temp\ (1 Kb available)
    'Unknown' video card
       808 x 688 in true color
    Unhandled Exception
      Code: e06d7363
      Description unavailable
    Call stack:
    Module  at   0x7c800000: C:\WINDOWS\system32\kernel32.dll  v 5.2.3790.3959 <i>
        address: 0x7c80bee7
    Module  at   0x7c340000: C:\WINDOWS\system32\MSVCR71.dll  v 7.10.3052.4 <i>
        address: 0x7c359aed
    Module  at   0x49920000: C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\cpi18n.dll  v 12.0.0.683 <i>
        address: 0x4994c1e3
    Module  at   0x00f20000: C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\xerces-c_2_7.dll  v 2.7.0.0 <i>
        address: 0x01007261
        address: 0x01c281f0
        address: 0x01006e65
    Application:
    3980 "
      current thread 0x814
    started: martedu00EC 21 luglio 2009 at 10.06
    ends:    martedu00EC 21 luglio 2009  at 10.06
      User mode: 330 ms   Kernel mode: 450 ms
    Loaded modules:
        0x00320000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\io-vc-mt.dll      v 0.0.0.0
        0x00330000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\thread-vc-mt.dll      v 0.0.0.0
        0x00350000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\cpcoll.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x00360000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\TraceLog.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x003A0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\dlg1.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x003B0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\dlgdll.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x003C0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\boDeploy.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x003F0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\security-vc-mt.dll      v 0.0.0.0
        0x00400000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\designer.exe      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x005A0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\btuc320vc71.dll      v 3.2.0.0      [Inglese (Stati Uniti)]
        0x006D0000     C:\WINDOWS\system32\MFC71U.DLL      v 7.10.3077.0      [Inglese (Stati Uniti)]
        0x007E0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\tools.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x00960000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\zlib.dll      v 0.0.0.0
        0x00980000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\cxlibw-4-0.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x00AD0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\libOCAHelperw-4-0.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x00DD0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\libxml2.dll      v 0.0.0.0
        0x00EC0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\cpxml.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x00EE0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\network-vc-mt.dll      v 0.0.0.0
        0x00F00000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\time-vc-mt.dll      v 0.0.0.0
        0x00F20000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\xerces-c_2_7.dll      v 2.7.0.0      [Inglese (Stati Uniti)]
        0x010E0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\wstkCommon.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x01140000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\bo_storage.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x01170000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\unvtools.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x011E0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\cpqry.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x01210000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\streaming-vc-mt.dll      v 0.0.0.0
        0x01240000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\pdflib.dll      v 7.0.1.1      [Inglese (Stati Uniti)]
        0x01F00000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\BOCP_1252.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x10000000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\file-vc-mt.dll      v 0.0.0.0
        0x12000000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\xerces-c_2_1_0.dll      v 2.1.0.0      [Inglese (Stati Uniti)]
        0x49650000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\repo_proxy.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x497D0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\cplib.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x49920000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\cpi18n.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x499E0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\msgsrv.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x49AA0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\boconfig.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x49C50000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\i18n.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x4A800000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\icuuc30.dll      v 3.0.0.0      [Lingua di sistema]
        0x4A900000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\icuin30.dll      v 3.0.0.0      [Lingua di sistema]
        0x4AD00000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\icudt30.dll      v 3.0.0.1      [Lingua di sistema]
        0x53000000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\fssl-1-2-1-3.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x53210000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\cs_helpers.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x53430000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\cube.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x53900000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\cs_tools.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x53B10000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\kagtux.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x53F60000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\cnxsrv.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x54150000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\desengine.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x541C0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\ksqldg.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x542C0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\sessmgr.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x544F0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\uitools.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x546C0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\rptdisp.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x54740000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\krptdlg.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x547E0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\BOFCEngine.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x54AB0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\category.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x54D40000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\RepAttr.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x54D70000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\bofcui.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x55290000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\kquery.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x55640000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\BOFCDialogs.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x556E0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\vartools.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x56970000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\FCRepoProxy.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x597C0000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\libOCASecurityw-3-0.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x5D360000     C:\WINDOWS\system32\MFC71ITA.DLL      v 7.10.3077.0      [Italiano (Italia)]
        0x63000000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\etc-1-0-12-5.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x64000000     C:\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\ebus-3-3-2-6.dll      v 12.0.0.683      [Inglese (Stati Uniti)]
        0x6D7C0000     C:\WINDOWS\system32\dbghelp.dll      v 5.2.3790.3959      [Inglese (Stati Uniti)]
        0x71950000     C:\WINDOWS\System32\mswsock.dll      v 5.2.3790.3959      [Italiano (Italia)]
        0x719E0000     C:\WINDOWS\system32\WSOCK32.dll      v 5.2.3790.0      [Italiano (Italia)]
        0x71A20000     C:\WINDOWS\system32\WS2HELP.dll      v 5.2.3790.3959      [Italiano (Italia)]
        0x71A30000     C:\WINDOWS\system32\WS2_32.dll      v 5.2.3790.3959      [Inglese (Stati Uniti)]
        0x72EA0000     C:\WINDOWS\system32\WINSPOOL.DRV      v 5.2.3790.3959      [Italiano (Italia)]
        0x743D0000     C:\WINDOWS\system32\MSCTF.dll      v 5.2.3790.3959      [Italiano (Italia)]
        0x744C0000     C:\WINDOWS\system32\msi.dll      v 3.1.4000.3959      [Lingua di sistema]
        0x76080000     C:\WINDOWS\system32\MSASN1.dll      v 5.2.3790.3959      [Inglese (Stati Uniti)]
        0x760A0000     C:\WINDOWS\system32\CRYPT32.dll      v 5.131.3790.3959      [Italiano (Italia)]
        0x76170000     C:\WINDOWS\system32\MSIMG32.dll      v 5.2.3790.0      [Inglese (Stati Uniti)]
        0x761A0000     C:\WINDOWS\system32\comdlg32.dll      v 6.0.3790.3959      [Italiano (Italia)]
        0x76670000     C:\WINDOWS\system32\hlink.dll      v 5.2.3790.3959      [Inglese (Stati Uniti)]
        0x76DC0000     C:\WINDOWS\system32\DNSAPI.dll      v 5.2.3790.3959      [Italiano (Italia)]
        0x76E00000     C:\WINDOWS\system32\WLDAP32.dll      v 5.2.3790.3959      [Italiano (Italia)]
        0x76E40000     C:\WINDOWS\system32\Secur32.dll      v 5.2.3790.3959      [Inglese (Stati Uniti)]
        0x76E60000     C:\WINDOWS\System32\winrnr.dll      v 5.2.3790.3959      [Inglese (Stati Uniti)]
        0x76E70000     C:\WINDOWS\system32\rasadhlp.dll      v 5.2.3790.3959      [Inglese (Stati Uniti)]
        0x77340000     C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.3959_x-ww_D8713E55\comctl32.dll      v 6.0.3790.3959      [Inglese (Stati Uniti)]
        0x774F0000     C:\WINDOWS\system32\ole32.dll      v 5.2.3790.3959      [Italiano (Italia)]
        0x779B0000     C:\WINDOWS\system32\WININET.dll      v 6.0.3790.3959      [Italiano (Italia)]
        0x77A60000     C:\WINDOWS\system32\urlmon.dll      v 6.0.3790.3959      [Italiano (Italia)]
        0x77B60000     C:\WINDOWS\system32\VERSION.dll      v 5.2.3790.3959      [Inglese (Stati Uniti)]
        0x77B70000     C:\WINDOWS\system32\msvcrt.dll      v 7.0.3790.3959      [Inglese (Stati Uniti)]
        0x77BD0000     C:\WINDOWS\system32\GDI32.dll      v 5.2.3790.3959      [Inglese (Stati Uniti)]
        0x77C20000     C:\WINDOWS\system32\RPCRT4.dll      v 5.2.3790.3959      [Inglese (Stati Uniti)]
        0x77CD0000     C:\WINDOWS\system32\OLEAUT32.dll      v 5.2.3790.3959      [Inglese (Stati Uniti)]
        0x77D70000     C:\WINDOWS\system32\ADVAPI32.dll      v 5.2.3790.3959      [Italiano (Italia)]
        0x77E20000     C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_5.82.3790.3959_x-ww_78FCF8D0\COMCTL32.dll      v 5.82.3790.3959      [Inglese (Stati Uniti)]
        0x77EC0000     C:\WINDOWS\system32\SHLWAPI.dll      v 6.0.3790.3959      [Italiano (Italia)]
        0x77F30000     C:\WINDOWS\system32\USER32.dll      v 5.2.3790.3959      [Italiano (Italia)]
        0x7C140000     C:\WINDOWS\system32\MFC71.DLL      v 7.10.3077.0      [Inglese (Stati Uniti)]
        0x7C340000     C:\WINDOWS\system32\MSVCR71.dll      v 7.10.3052.4      [Inglese (Stati Uniti)]
        0x7C3A0000     C:\WINDOWS\system32\MSVCP71.dll      v 7.10.3077.0      [Inglese (Stati Uniti)]
        0x7C800000     C:\WINDOWS\system32\kernel32.dll      v 5.2.3790.3959      [Italiano (Italia)]
        0x7C910000     C:\WINDOWS\system32\ntdll.dll      v 5.2.3790.3959      [Italiano (Italia)]
        0x7C9E0000     C:\WINDOWS\system32\SHELL32.dll      v 6.0.3790.3959      [Italiano (Italia)]
    I got this exception importing the universe from cms in the Translation Manager:
    [repo_proxy 37] UniverseFacade::importUniverse - (Helpers::InfoStore::ObjectFileHandle::extractContent) Local file copy has failed Errore del File Repository Server: La directory C:\Documents and Settings\Administrator\Dati applicazioni\Business Objects\Business Objects 12.0\Universes\@l3_dwhsrv_6400\Folder 95/Universes\ richiesta u00E8 inesistente.(hr=#0x80042a4a)
    I'd like to know if:
    1) Is this a problem because of the Virtual PC virtual machine?
    2) Is this a problem because of the BO problem with underscore in the host name?
    and
    3) How can I resolve this problem without changing the host name?
    Thank you for your attention,
    Giorgio
    Edited by: Agliano Giorgio on Jul 21, 2009 12:28 PM

    Hi Agliano,
    changing the Hostname of a Server after BO is installed is a bad idea ! The WAR files for your Tomcat are in some sort "hardcoded".
    I would suggest re- deploying your war files on the Tomcat would fix this issue. Check SAP Note - 1308027 for assistance.
    Regards
    -Seb.

  • Email host name for mailbean

    Hi, I have a problem about finding my own email host name when I am trying to send an email within JSP. I have tried many names such as: "mail.gmail.com"," yahoo.com", and the one included in the code blow. I think I have a misunderstanding about this host name, could anyone explain for me please? Thanks a lot.
    Blow is my code
    * Mail.java
    * Created on 2006&#24180;8&#26376;14&#26085;, &#19979;&#21320;2:59
    package myclass;
    import java.io.*;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.event.*;
    import javax.mail.internet.*;
    * @author weiming514
    public final class MailBean extends Object implements Serializable{
    private String to = null;
    private String from = null;
    private String subject = null;
    private String message = null;
    public static Properties props = null;
    public static Session session = null;
    static{
    /** Setting Properties for STMP host **/
    props = System.getProperties();
    props.put("mail.smtp.host", "hostname");
    session = Session.getDefaultInstance(props, null);
         /* Setter Methods */
         public void setTo(String to) {
              this.to = to;
         public void setFrom(String from) {
              this.from = from;
         public void setSubject(String subject) {
              this.subject = subject;
         public void setMessage(String message) {
              this.message = message;
    /* Sends Email */
    public void sendMail() throws Exception{
    if(!this.everythingIsSet())
    throw new Exception("Could not send email.");
    try{
    MimeMessage message = new MimeMessage(session);
    message.setRecipient(Message.RecipientType.TO, new InternetAddress(this.to));
    message.setFrom(new InternetAddress(this.from));
    message.setSubject(this.subject);
    message.setText(this.message);
    Transport.send(message);
    catch(MessagingException e){
    throw new Exception(e.getMessage());
    /* Checks whether all propertises have been set or not */
         private boolean everythingIsSet() {
              if((this.to == null) || (this.from == null) ||
              (this.subject == null) || (this.message == null))
                   return false;
              if((this.to.indexOf("@") == -1) ||
                   (this.to.indexOf(".") == -1))
                   return false;
              if((this.from.indexOf("@") == -1) ||
                   (this.from.indexOf(".") == -1))
                   return false;
              return true;
    Error:
    unknown smtp host: hostname

    and the one included in the code blow.You have written "hostname" in the code below. Since "hostname" is certainly NOT a valid SMTP host name,
    that's why you get the error: unknown smtp host: hostname.
    What did you expect? You must provide a valid SMTP host name, NOT "hostname". You see the difference right?
    Try with your ISP (Internet Service Provider) SMTP host name.
    It should be something like: stmp.somename.com.
    That's the one you must set in your email client (Outlook, Thunderbird, Eudora, Lotus Notes, whatever) to send your emails.
    Next time please paste your code between &#91;code&#93; tags with the help of the code button just above the edit message area.
    Regards

  • WRT150N host name lookup problem

    When I try to access a computer on my LAN using the host name I get a unknown host message. When I use the computer's dynamically obtained ip address it works fine.
    Does anyone know if there is a way to make a WRT150N router resolve the host name. My old router used to doit, but i can figure out how to make the WRT150N do it.

    Let me know the Firmware you are using on WRT150N?
    Try uploding the latest firmware on the website 1.01.9 ....
    Try this link ....

  • Telneting in to Postfix reports back with old host name

    Hi.
    I am setting up a home server for my family (4 users) running a late 2010 Mac mini server with OSX Server 3.0.1
    I am computer literate but am new to server hosting. I have successfully navigated setting up DNS properlly the way I want it, but am now running into a problem setting up a family mail server.
    When I first got the machine I just played around with the server settings under Snow Leopard and turned on some services without really intending to use them as we were all using Google services at the time. I now want to get off those services, such as mail, etc. and host them myself.
    Anyway, I've registered a domain and pointed it to my machine, and everything appears to be working properly. I used GoDaddy.com to register the domain.
    But after setup of the Mail server, getting my ISPs mail relay server configured, etc. I get the following when I test using telnet to connect to port 25:
    server:~ admin$ telnet 127.0.0.1 25
    Trying 127.0.0.1...
    Connected to localhost.
    Escape character is '^]'.
    220 <oldhostname>.org ESMTP Postfix
    421 4.4.2 <oldhostname>.org Error: timeout exceeded
    Connection closed by foreign host.
    server:~ admin$ sudo changeip -checkhostname
    Password:
    Primary address     = 10.0.1.254
    Current HostName    = <newhostname>.org
    DNS HostName        = <newhostname>.org
    The names match. There is nothing to change.
    dirserv:success = "success"
    server:~ admin$ hostname -f
    <newhostname>.org
    You'll notice I then double checked that my DNS was set up correctly, and then checked the host name again for good measure. However, Postfix is calling my outgoing SMTP by the old and never really used host name still.
    I would really appreciate any help you knowledgable people could give me! Is there a library file that needs updating and if so how do I do that? I found a similar problem here but this is on a linux box, which I have no experience with whatsoever, and can't figure out how to do what he did.
    Thank you again in advance for any input.

    Also Getting the following in Console:
    04/01/14 18:04:59,806 kdc[62640]: AS-REQ [email protected] from 127.0.0.1:57943 for krbtgt/[email protected]
    04/01/14 18:04:59,808 kdc[62640]: UNKNOWN -- [email protected]: no such entry found in hdb
    04/01/14 18:05:00,294 servermgrd[20002]: nsc_smb XPC: handle_event error : < Connection invalid >
    And my sudo postconf -c /Library/Server/Mail/Config/postfix -n output:
    alias_maps = hash:/etc/aliases
    always_bcc =
    biff = no
    command_directory = /usr/sbin
    config_directory = /Library/Server/Mail/Config/postfix
    content_filter = smtp-amavis:[127.0.0.1]:10024
    daemon_directory = /usr/libexec/postfix
    data_directory = /Library/Server/Mail/Data/mta
    debug_peer_level = 2
    debugger_command = PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin xxgdb $daemon_directory/$process_name $process_id & sleep 5
    dovecot_destination_recipient_limit = 1
    enable_server_options = yes
    header_checks = pcre:/Library/Server/Mail/Config/postfix/custom_header_checks
    html_directory = /usr/share/doc/postfix/html
    imap_submit_cred_file = /Library/Server/Mail/Config/postfix/submit.cred
    inet_interfaces = all
    inet_protocols = all
    local_recipient_maps = proxy:unix:passwd.byname $alias_maps
    mail_owner = _postfix
    mailbox_size_limit = 0
    mailbox_transport = dovecot
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    message_size_limit = 10485760
    mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
    mydomain = grabko.org
    mydomain_fallback = localhost
    myhostname = server.grabko.org
    mynetworks = 127.0.0.0/8
    newaliases_path = /usr/bin/newaliases
    postscreen_dnsbl_sites = zen.spamhaus.org*2
    queue_directory = /Library/Server/Mail/Data/spool
    readme_directory = /usr/share/doc/postfix
    recipient_canonical_maps = hash:/Library/Server/Mail/Config/postfix/system_user_maps
    recipient_delimiter = +
    relayhost = smtprelay1.telia.com
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = _postdrop
    smtp_sasl_auth_enable = no
    smtp_sasl_password_maps =
    smtpd_client_restrictions = permit_mynetworks permit_sasl_authenticated reject_rbl_client zen.spamhaus.org permit
    smtpd_enforce_tls = no
    smtpd_helo_required = yes
    smtpd_helo_restrictions = reject_invalid_helo_hostname reject_non_fqdn_helo_hostname
    smtpd_pw_server_security_options = cram-md5,digest-md5,gssapi
    smtpd_recipient_restrictions = permit_sasl_authenticated permit_mynetworks reject_unauth_destination check_policy_service unix:private/policy permit
    smtpd_sasl_auth_enable = yes
    smtpd_tls_CAfile = /etc/certificates/server.grabko.org.1C04ED269951F447E3422EB93680FCEDAE448203.ch ain.pem
    smtpd_tls_cert_file = /etc/certificates/server.grabko.org.1C04ED269951F447E3422EB93680FCEDAE448203.ce rt.pem
    smtpd_tls_exclude_ciphers = SSLv2, aNULL, ADH, eNULL
    smtpd_tls_key_file = /etc/certificates/server.grabko.org.1C04ED269951F447E3422EB93680FCEDAE448203.ke y.pem
    smtpd_use_pw_server = yes
    smtpd_use_tls = yes
    tls_random_source = dev:/dev/urandom
    unknown_local_recipient_reject_code = 550
    use_sacl_cache = yes
    virtual_alias_domains = $virtual_alias_maps
    virtual_alias_maps = $virtual_maps
    And my sudo serveradmin fullstatus mail:
    mail:startedTime = "2014-01-01 11:58:58 +0000"
    mail:setStateVersion = 1
    mail:state = "RUNNING"
    mail:protocolsArray:_array_index:0:status = "ON"
    mail:protocolsArray:_array_index:0:kind = "INCOMING"
    mail:protocolsArray:_array_index:0:protocol = "IMAP"
    mail:protocolsArray:_array_index:0:state = "RUNNING"
    mail:protocolsArray:_array_index:0:service = "MailAccess"
    mail:protocolsArray:_array_index:0:error = ""
    mail:protocolsArray:_array_index:1:status = "OFF"
    mail:protocolsArray:_array_index:1:kind = "INCOMING"
    mail:protocolsArray:_array_index:1:protocol = "POP3"
    mail:protocolsArray:_array_index:1:state = "RUNNING"
    mail:protocolsArray:_array_index:1:service = "MailAccess"
    mail:protocolsArray:_array_index:1:error = ""
    mail:protocolsArray:_array_index:2:status = "ON"
    mail:protocolsArray:_array_index:2:kind = "INCOMING"
    mail:protocolsArray:_array_index:2:protocol = "SMTP"
    mail:protocolsArray:_array_index:2:state = "RUNNING"
    mail:protocolsArray:_array_index:2:service = "MailTransferAgent"
    mail:protocolsArray:_array_index:2:error = ""
    mail:protocolsArray:_array_index:3:status = "ON"
    mail:protocolsArray:_array_index:3:kind = "OUTGOING"
    mail:protocolsArray:_array_index:3:protocol = "SMTP"
    mail:protocolsArray:_array_index:3:state = "RUNNING"
    mail:protocolsArray:_array_index:3:service = "MailTransferAgent"
    mail:protocolsArray:_array_index:3:error = ""
    mail:protocolsArray:_array_index:4:status = "OFF"
    mail:protocolsArray:_array_index:4:kind = "INCOMING"
    mail:protocolsArray:_array_index:4:protocol = ""
    mail:protocolsArray:_array_index:4:state = "STOPPED"
    mail:protocolsArray:_array_index:4:service = "ListServer"
    mail:protocolsArray:_array_index:4:error = ""
    mail:protocolsArray:_array_index:5:status = "ON"
    mail:protocolsArray:_array_index:5:kind = "INCOMING"
    mail:protocolsArray:_array_index:5:protocol = ""
    mail:protocolsArray:_array_index:5:state = "RUNNING"
    mail:protocolsArray:_array_index:5:service = "JunkMailFilter"
    mail:protocolsArray:_array_index:5:error = ""
    mail:protocolsArray:_array_index:6:status = "ON"
    mail:protocolsArray:_array_index:6:kind = "INCOMING"
    mail:protocolsArray:_array_index:6:protocol = ""
    mail:protocolsArray:_array_index:6:state = "RUNNING"
    mail:protocolsArray:_array_index:6:service = "VirusScanner"
    mail:protocolsArray:_array_index:6:error = ""
    mail:protocolsArray:_array_index:7:status = "ON"
    mail:protocolsArray:_array_index:7:kind = "INCOMING"
    mail:protocolsArray:_array_index:7:protocol = ""
    mail:protocolsArray:_array_index:7:state = "RUNNING"
    mail:protocolsArray:_array_index:7:service = "VirusDatabaseUpdater"
    mail:protocolsArray:_array_index:7:error = ""
    mail:logPaths:Server Error Log = "/Library/Logs/Mail/mail-err.log"
    mail:logPaths:IMAP Log = "/Library/Logs/Mail/mail-info.log"
    mail:logPaths:Server Log = "/Library/Logs/Mail/mail-info.log"
    mail:logPaths:POP Log = "/Library/Logs/Mail/mail-info.log"
    mail:logPaths:SMTP Log = "/var/log/mail.log"
    mail:logPaths:List Server Log = "/Library/Logs/Mail/listserver.log"
    mail:logPaths:Migration Log = "/Library/Logs/MailMigration.log"
    mail:logPaths:Virus Log = "/Library/Logs/Mail/clamav.log"
    mail:logPaths:Amavisd Log = "/Library/Logs/Mail/amavis.log"
    mail:logPaths:Virus DB Log = "/Library/Logs/Mail/freshclam.log"
    mail:imapStartedTime = "2014-01-01 11:58:58 +0000"
    mail:postfixStartedTime = "2014-01-01 11:59:32 +0000"
    mail:servicePortsRestrictionInfo = _empty_array
    mail:servicePortsAreRestricted = "NO"
    mail:connectionCount = 0
    mail:readWriteSettingsVersion = 1
    mail:serviceStatus = "ENABLED"
    I am only running one zone for the domain, my mind is boggled...

  • How to changing host name

    how do i changing host name after install. it never asked me for one and now its stuck on unknown.

    Recent forum threads have started like this one,
    then got completely out-of-focus and derailed.
    e.g.
    http://forum.sun.com/jive/thread.jspa?threadID=106335 from Sept '06,
    which references a thread from Aug '06, with 80+ replies inside it ...
    http://forum.sun.com/jive/thread.jspa?threadID=105923
    Your Ethernet connection and your system hostname are not going to work,
    if you don't have a compatible network adapter.
    You won't connect to anything, and the OS can't associate its FQDN,
    without hardware that works.
    Have you reviewed the HCL, and compared it with your hardware?
    http://www.sun.com/bigadmin/hcl/
    You may need to install 3rd party drivers for the NIC,
    or you may need to buy a replacement card that is compatible.
    Boot the system. From a terminal window, as root user, do ...
    # ifconfig -a <enter>
    Does the output from that command list anything in addition to the virtual loopback adapter?
    Copy and paste the complete output back here into the forum thread,
    so that others can see what you are seeing.
    If the loopback LO0 is all you have, then you're going to have to fix that
    before going any further in this discussion.

  • Feild name : null. unknown error / Unable to check..... Store is temp...

    Ok I bought a movie a few days ago and couldn't download it, System told me to try later. Ok no biggy. I log on the next morning and try again to get the message Unable to check purchases Itunes store is temporarily unavailable. Its been almost a week same message but the store works fine I have bought 2 albums and they downloaded fine. I get the bill for the movie today try to use the "report problem" link and im told Feild name: null. unknown error. Same thing when i try to log into view my account.
    I call apple support to be told that all support for the store is online only. Here is where i get a bit mad. If your online support wont let you login how can you get support?
    I have restarted, turned off and back one, deleted itunes and reinstalled. I've deleted the keychain and had it rebuilt. For a product thats advertised to "just work" it isn't working as intended.
    < Edited by Host for language >

    Hey, I feel your pain...I've been going through this all evening long...I keep resetting my password and then 2 minutes later it doesn't recognize my password and I get the same weird message that you get....Ive sent a message to their "support" lets see how quick they get back to me.....
    If anyone has gotten a reply from Apple letting us know the problem ,please let us know.

Maybe you are looking for