Activate DNS on Solaris 10

Good afternoon
I installed a program from the console and displays an error with DNS, wanted resolve.conf file in the folder / etc and is not.
I want to know if this is in another folder on Solaris 10 or What can I do to activate the DNS?

You will need to edit the /etc/nsswitch file and add dns to the hosts entry for example "hosts: dns nis files"
You also need to create a /etc/resolv.conf file with the dns domain of your system, the nameserver entry (IP address) and the search criteria if you have multiple domains. (each on a separate line)
#vi /etc/resolv.conf
domain domain.com
nameserver 132.456.78.9
nameserver 132.456.78.8
search domain.com subdomain.com
Make sure that your name-services and your name-service-cache is online and enabled on Solaris10 or the named daemon is running if it is a Solaris 8 box.
#svcs | grep name (Solaris 10)
#ps -ef | grep name (Solaris 8)

Similar Messages

  • DNS in Solaris 10

    Hi Freinds,
    I am trying installing DNS on Solaris 10 10/09 s10s_u8wos_08a SPARC. I could not find named.conf file in the entire harddisk. So #svcadm enable /network/dns/server:default
    makes the dns server service in to "maintenance" mode. Can anybody guide me to find a good guide for configuring DNS on this syetm? How can I find named.conf file?
    Thanks,
    abelk_12

    An old thread provides some guidance: [http://forums.sun.com/thread.jspa?threadID=5074659]
    [Introduction to the Domain Name System|http://www.sun.com/bigadmin/features/articles/intro_dns.jsp]

  • Activate network in Solaris 10

    Hi All,
    I install my solaris 10, nonnetworked system, now I need activate nework in it.
    i would like know, how I do this?
    Thanks...

    Login as Root and execute sys-unconfig command in terminal- dont be scared to input Yes.

  • Set up a DNS on Solaris 8(SPARC)

    Hi,
    We have a ultra 5 machine. I am now trying to install Sun Internet Mail Server. One of the requirement for this is setting up of LDAP server. This does not install until a DNS is found. I intend to install the DNS on the solaris box itself. Can some one help me with the DNS installation and also the Mail Server setup.
    Regards
    Sunil

    I can help you on setting up the dns, but this process
    will be very long and I'll explain it to you.
    Firstly , Install BIND v.9 from http://www.sunfreeware.com (package)or you can download the source from http://www.isc.org/products/BIND/ .
    Installing package is quite simple, download the appropriate file and do #pkgadd -d bind-program
    or if you download the source, then you need to configure and make the software.
    I assume you have done this. Once you have successfully installed BIND, you need to check on your /etc/named or /var/named directory for the named files.
    A sample configuration of BIND is below
    $ cat /etc/named.conf
    options {
    directory "/var/named";
    forward only;
    listen-on port 53 {
    192.168.x.1;
    forwarders {
    // ISP NS IP's here.
    aaa.bbb.ccc.ddd;
    allow-query {
    192.168.x.0/24;
    127.0.0.1/32;
    logging {
    category lame-servers { null; };
    key controlkey {
    algorithm hmac-md5;
    secret "J5D_hKfy73f&#hfjek&*efke";
    controls {
    inet 127.0.0.1 allow {
    localhost;
    } keys {
    controlkey;
    // zones you wish to master go after this marker ;)
    zone "localhost" IN {
    type master;
    file "caching-example/localhost.zone";
    allow-update { none; };
    zone "0.0.127.in-addr.arpa" IN {
    type master;
    file "caching-example/named.local";
    allow-update { none; };
    When you have created this file (named.conf) then you need to create hosts on your respective directory which you have defined , either /var/named or /etc/named this is where all the hosts will be and you can create this files manually and the format is like below.
    Create a file called mydomain.com.hosts
    and insert this
    $ttl 38400
    mydomain.com. IN SOA ns.mydomain.com. dnsadmin.mydomain.com. (
    2001030701
    3600
    900
    3600000
    3600 )
    www IN A 192.168.1.1
    server1 IN A 192.168.1.20
    ns IN A 192.168.1.2
    mydomain.com. IN NS ns.mydomain.com.
    mydomain.com. IN MX 10 mail.mydomain.com
    For each domain create a file like this, you can add additional hosts in one file above.
    Once you have done this you can start the name server , if this dns system is only going to be for internal use, it would be even simpler.
    If you have any problems please mail me as posting here will take too much space.
    Alphademon

  • Big question about dns in solaris 10

    hi,
    in solaris 10 dns[client] is working fine even though the service is in disabled state.
    bash-3.00# svcs -a | grep dns
    disabled Oct_07 svc:/network/dns/server:default
    disabled 20:13:50 svc:/network/dns/client:default
    bash-3.00#
    still i can able to resolve the ip address.
    *my question is will this affect anything.. like autofs [net/<machine name>] concept.*
    Thanks.

    In short, no. Hostname resolution is guided by the /etc/nsswitch.conf file, and the /etc/resolv.conf file tells the resolver which DNS servers to contact.
    The network/dns/client service is actually part of the DNS server. If you start the DNS service with "svcadm enable network/dns/server", then the client service will start also (try it yourself).

  • DNS - CHROOT - SOLARIS 10

    Hello Campers!!!
    I am trying to set up a chroot environment on a DNS machine, however I am expeiencing some difficulty.
    I have Solaris 10 (latest 10 Recommended) and named 9.7.2-p3.
    When i run the command line named -g -t /DNS ...
    socket.c:3917 unexpected error
    open (/dev/poll) failed: no such file or directory
    ./main.c:589: unexpected error
    isc_socketmgr_create() failed: file not found
    create_managers() failed: unexpected error
    I have googled alot lately and have not found a good answer. Is this behaviorly indicative of missing files or bad permissions inthe chroot directory structure? If so what am I missing (or how do I fugure it out?)?
    Also - I had to modify the /lib/svc/method/dns-server script and /var/svc/manifiest/network/dns/server.xml to get this to run via the SMF facility (with the same results....)
    Thanks,
    Jerry

    Hi.
    I create test environment. It's look like work.
    # find /DNS -ls
    611522 1 drwxr-xr-x 5 root root 512 Feb 23 14:00 /DNS
    611523 1 drwxr-xr-x 2 root root 512 Feb 23 14:07 /DNS/etc
    611526 1 -rw-r--r-- 1 root root 244 Feb 23 14:02 /DNS/etc/named.conf
    611533 1 -rw------- 1 root root 77 Feb 23 14:07 /DNS/etc/rndc.key
    611524 1 drwxr-xr-x 4 root root 512 Feb 23 14:04 /DNS/var
    611525 1 drwxr-xr-x 2 noaccess root 512 Feb 23 14:02 /DNS/var/named
    611527 1 -rw-r--r-- 1 root root 138 Feb 23 13:59 /DNS/var/named/test.db
    611530 0 -rw-r--r-- 1 noaccess root 0 Feb 23 14:02 /DNS/var/named/root.cache
    611531 1 drwxrwxrwt 2 root root 512 Feb 23 14:07 /DNS/var/run
    611528 1 drwxr-xr-x 2 root root 512 Feb 23 14:05 /DNS/dev
    611529 0 crw-r--r-- 1 root root 138, 0 Feb 23 14:07 /DNS/dev/poll
    611532 0 crw-r--r-- 1 root root 190, 0 Feb 23 14:05 /DNS/dev/random
    Start:
    # named -g -t /DNS -u noaccess
    23-Feb-2011 14:11:39.166 starting BIND 9.3.6-P1 -g -t /DNS -u noaccess
    23-Feb-2011 14:11:39.166 found 2 CPUs, using 2 worker threads
    23-Feb-2011 14:11:39.169 using up to 4096 sockets
    23-Feb-2011 14:11:39.204 loading configuration from '/etc/named.conf'
    23-Feb-2011 14:11:39.210 using default UDP/IPv4 port range: [1024, 65535]
    23-Feb-2011 14:11:39.215 using default UDP/IPv6 port range: [1024, 65535]
    23-Feb-2011 14:11:39.229 listening on IPv4 interface lo0, 127.0.0.1#53
    23-Feb-2011 14:11:39.231 listening on IPv4 interface ce0, XXX.XXX.XXX.197#53
    23-Feb-2011 14:11:39.232 listening on IPv4 interface ce1, XXX.XXX.XXX.20#53
    23-Feb-2011 14:11:39.241 command channel listening on 127.0.0.1#953
    23-Feb-2011 14:11:39.241 couldn't add command channel ::1#953: address not available
    23-Feb-2011 14:11:39.242 ignoring config file logging statement due to -g option
    23-Feb-2011 14:11:39.245 test.db:1: no TTL specified; using SOA MINTTL instead
    23-Feb-2011 14:11:39.246 zone test.com/IN: loaded serial 2007121137
    23-Feb-2011 14:11:39.248 running
    23-Feb-2011 14:11:39.248 zone test.com/IN: sending notifies (serial 2007121137)
    23-Feb-2011 14:11:39.252 client XXX.XXX.XXX.197#42654: received notify for zone 'test.com'
    ^C23-Feb-2011 14:11:49.586 shutting down
    23-Feb-2011 14:11:49.586 stopping command channel on 127.0.0.1#953
    23-Feb-2011 14:11:49.589 no longer listening on 127.0.0.1#53
    23-Feb-2011 14:11:49.590 no longer listening on XXX.XXX.XXX.197#53
    23-Feb-2011 14:11:49.590 no longer listening on XXX.XXX.XXX.20#53
    23-Feb-2011 14:11:49.596 exiting
    major and minor number found:
    # ls -lL /dev/pool
    crw-rw-rw- 1 root sys 226, 1 Feb 22 22:49 /dev/pool
    # ls -lL /dev/random
    crw-r--r-- 1 root sys 190, 0 Feb 22 22:46 /dev/random
    Hope it's help.
    Regards.

  • Unable to activate domains on solaris 10

    Hi all, I have installed guardian 1.1 on my local machine (Win XP). I am using java 1.5_06. I was able to activate 9.2.1 domains on my machine, but not the domains running on Solaris 10. It keeps saying "The agent is not properly deployed to all running servers in the domain. Guardian requires that the version of the agent installed in the client be deployed to the admin and all running servers" I have deployed the guardian application several times on admin and managed servers. I still get the error mentioned above.
    Has anyone faced this problem before. Please help me with this.
    Thanks

    When I try to access the application directly using the URL (http://host:port/bea-guardian-agent) from the browser I get at 500 error (Error 500--Internal Server Error). In the weblogic server logs I see the following error message:
    ####<Apr 10, 2008 10:03:04 AM CDT> <Error> <HTTP> <c2r7u01> <AdminServer> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1207839784253> <BEA-101017> <[weblogic.servlet.internal.WebAppServletContext@c0d1d2 - name: 'bea-guardian-agent.war', context-path: '/bea-guardian-agent'] Root cause of ServletException.
    javax.servlet.ServletException: Username and password are required.
    at com.bea.guardian.agent.weblogic.DispatchServlet.doPost(DispatchServlet.java:369)
    at com.bea.guardian.agent.weblogic.GuardianServlet.doGet(GuardianServlet.java:79)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:214)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:120)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:272)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:165)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3022)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1925)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1848)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1288)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:179)
    >
    Surprisingly, I see the same error message in server logs on Windows but am able to activate the domains.

  • Dynamic DNS on Solaris 10 or Solaris developer edition

    Hi ,
    How do we can configure Dynamic DNS server on Solaris 10 OS , in Linux boxes we can use "dnssec-kegen" and associate with dhcpd.conf , how like same we can do with solaris ,
    any help will be highly appreciable
    Thanks in advance
    Kinshuk

    Hi ,
    How do we can configure Dynamic DNS server on Solaris
    10 OS , in Linux boxes we can use "dnssec-kegen" and
    associate with dhcpd.conf , how like same we can do
    with solaris ,
    any help will be highly appreciable http://docs.sun.com/app/docs/doc/816-4554/6maoq01sv?l=en&a=view&q=dynamic+dns

  • Solaris 10 zone configuration with sysidcfg and dhcp and hostname

    Hi
    Excuse me if I look like a n00b... it's probably because I'm a n00b.
    I've been struggling in the dark for more than 2 days now and I'm wondering if I'm thinking about this all wrong...
    I have stand-alone server where I need to run zones. I want to create zones and automagically configure them at boot (read: by running a script). So here's what I need...
    A zone
    starting from unconfigured state
    whose hostname is not the same as the zone name
    using corporate DHCP to get its IP address
    with DNS config coming from the DHCP server
    registering its address the DNS
    with a preconfigured root password
    (I don't own the corporate DHCP or DNS servers, I can't put my own DHCP or DNS servers on the network.)
    I would lke to create the zone, throw some config at it, then boot the zone and walk away. I am using zones with exclusive-IP. I can construct the zones and manually configure them once they're started to have DHCP, my own name, registered IP address with DNS and everything else I have specified above. But I don't want to do it manually...
    Sysidcfg seems to do some of what I want but not entirely.
    In sysidcfg I can set the root_password, the primary interface using DHCP, DNS server. I can't set a hostname in sysidcfg AND use configure it for DHCP. So the hostname is not what I want it to be after the zone is started and ready to go. The DHCP server is providing the DNS configuration, Solaris does not seem to honour it, but i'll ignore that for the moment.
    I have tried various combinations of using sysidcfg, /etc/nodename, /etc/hostname.+interface+ and /etc/dhcp.+interface+ but I can't find any combination that actually works.
    I can write to the zonestorage/etc/nodename to set the nodename, that works. But it does not match the DHCP address, so I get prompted for a new name service because it can't find a DNS entry for the name.
    I can write to the zonestorage/etc/hostname.+interface+ and /etc/dhcp.+interface+ (to get the system to register its name with the DNS server after getting its DHCP address) but then I get a system with no root password and no DNS configuration, even though they are set in the sysidcfg file.
    I can write a script that gets part of the way using sysidcfg and /etc/... files, then boots the zone and then runs a bunch of voodoo via zlogin commands to fix all the stuff that couldn't be done 'properly', but that's not a 'boot and walk away' environment. I can write a script that uses sysidcfg and hacks around with other files in /etc (like nsswitch.conf, resolv.conf), but that just feels likes a dirty hack to fix something that wasn't done properly in the first place.
    So where am I going wrong and how do I do it right (within the constraints defined)? Why can't I configure, boot and walk away?
    Thanks

    Thanks abrante
    Thanks for your response!
    I don't think the config is messed up after the installation. I think the installation is fine, it's just not what I want :-)
    I'm trying to decouple the zonename from the system name and get DNS registrations working. After installation, a DHCP client can get its hostname from DNS but I'm trying to do it the other way around. I want the DHCP client specify its own hostname, get an address from the DHCP server and then register its hostname with DNS. If the system gets its name from DNS/DHCP then I have to configure those to provide the system name and I don't own the DHCP/DNS infrastructure. These zones are for a development/QA environment, so we create and reconfigure these frequently. Hence the need to specify the system name within the zone and register that name in the DNS.
    I have tried fiddling with the PARAM_REQUEST_LIST but it does not seem to be working as I expect. :-$ Removing 12 did not help with setting the hostname from the system. DNS does not have a registered name for this system anyway, so even if it tried to get a name for this system, it would get nothing.
    I also do want the DHCP to change the DNS server and domain name, but this does not happen even though my dhcpagent includes 6 and 15 in the PARAM_REQUEST_LIST. I still have to set them in the sysidcfg file because it is always ignored in Solaris (S10u8 with 10_Recommended 30-Jul-2010)
    As stated, I know I can hack around with the system after it has booted. But I'm trying to configure the system before it starts and let it take care of itself and not have to touch it. Frankly I'm surprised that the sysidcfg does not allow you to set a hostname name when you are using DHCP, that the default DHCP configuration does not register the system name with the DNS server, and the DNS config from the DHCP response is ignored. Even a sys-unconfiged system requires DNS configuration during initial boot, when I know that the DHCP response contains DNS information.
    FYI: Windows systems using DHCP work as expected in this respect by default, i.e. set system name, use DHCP --> system gets address from corporate DHCP, DNS settings are set from DHCP information, DNS registration is made for system name.
    I'm working around this at the moment... I call my zone by the system name I want, I hardcode the DNS settings in the sysidcfg file and I create the hostname.+nic+ and dhcp.+nic+ files in the zone storage to get the system to register its name with DNS, them boot.
    Edited by: cydonian on Aug 19, 2010 7:45 PM

  • Solaris 9 IPSec support

    I am currently attempting to activate IPSecurity on Solaris and I am having a host of issues. I am hoping someone on the forums have done this before.
    Here are the steps that I have figured out:
    1) Create Certificates and add them into the database: I am fairly certain that this has been done correctly since when the in.iked daemon comes up it reads in my CA certificate and my server certificate that I have created.
    2) Edit the /etc/inet/ike/config file. I have edited this file but there is an odd thing here. Looking at the man page it says that I should be able to do use AES for the phase 1 SA. However when I use the key word for the aes it tells me it is an error. <Question> Is the AES support only on 10? Is there away I can tell the version of the in.iked daemon I am working with?
    3) Activate the in.iked server with the config file. I have done this and used the -p2 -d options so I can see the log file that goes with it.
    4)Update the /etc/inet/ipsec.init file: I have done this but here is another instance that things do not make sense. I create a phase 2 proposal devoid of all encryption algorithms and the default one came up. It only had AES and Blowfish. There was no Triple DES option available even though in the man page is there. <question> how do I get the version number of the ipsecconf command.
    5)I then use the ipsecconf command to suck in the ipsec.init profile. I have done this successfully with AES and can do a list display.
    Usage<<<< I attempt to run a traffic from my solaris to my partner machine that matches the phase 2 traffic descriptors however when the traffic arrives it is not encrypted and the solaris did not attempt to negotiate a tunnel.
    When I attempt to initiate a VPN from the other side all I get is parameter mismatch on the Solaris side however the parameters that I have configured all seem to match.
    <Questions>
    1) Is there some better messages available above -p2 -d
    2) Is there a way to initiate a phase 1 negotiation on the SA. ikeadm command does not seem to have that.
    3) Is there a service that I have to activate to start the IPSecurity pieces?

    http://www.sun.com/servers/coolthreads/t2000/specs.xml
    no.
    Darren

  • Server dns service will not turn on

    Im using Server app 4.0.3
    I entered all the info and tried to activate DNS service but it will not turn on.  The on button immediately slides back to off.  I have watched several tutorials and have tried both basic and advanced setups exactly as shown but the service will not start.

    Did you check your restriction settings? Go to Settings/General/Restrictions ->location services
    If deactivated in restrictions, you might not be able to  activate the service in the settings.

  • Card ethernet not found on Solaris10

    Hello to all, I have installed Solaris 10 on a laptop Acer aspire 1360, but the kernel does not recognize the card ethernet .
    dmesg
    Feb  2 15:10:43 Solaris reboot: [ID 662345 auth.crit] rebooted by root
    Feb  2 15:10:43 Solaris pseudo: [ID 129642 kern.info] pseudo-device: lofi0
    Feb  2 15:10:43 Solaris genunix: [ID 936769 kern.info] lofi0 is /pseudo/lofi@0
    Feb  2 15:10:46 Solaris genunix: [ID 773945 kern.info]  UltraDMA mode 5 selected
    Feb  2 15:10:46 Solaris genunix: [ID 935449 kern.info]  ATA DMA off: disabled. Control with "atapi-cd-dma-enabled" property
    Feb  2 15:10:46 Solaris genunix: [ID 882269 kern.info]  PIO mode 4 selected
    Feb  2 15:10:46 Solaris genunix: [ID 935449 kern.info]  ATA DMA off: disabled. Control with "atapi-cd-dma-enabled" property
    Feb  2 15:10:46 Solaris genunix: [ID 882269 kern.info]  PIO mode 4 selected
    Feb  2 15:10:46 Solaris genunix: [ID 935449 kern.info]  ATA DMA off: disabled. Control with "atapi-cd-dma-enabled" property
    Feb  2 15:10:46 Solaris genunix: [ID 882269 kern.info]  PIO mode 4 selected
    Feb  2 15:10:46 Solaris genunix: [ID 935449 kern.info]  ATA DMA off: disabled. Control with "atapi-cd-dma-enabled" property
    Feb  2 15:10:46 Solaris genunix: [ID 882269 kern.info]  PIO mode 4 selected
    Feb  2 15:10:46 Solaris pcplusmp: [ID 637496 kern.info] pcplusmp: asy (asy) inst ance 0 vector 0x4 ioapic 0x1 intin 0x4 is bound to cpu 0
    Feb  2 15:10:46 Solaris isa: [ID 202937 kern.info] ISA-device: asy0
    Feb  2 15:10:46 Solaris genunix: [ID 936769 kern.info] asy0 is /isa/asy@1,2f8
    Feb  2 15:10:46 Solaris pseudo: [ID 129642 kern.info] pseudo-device: ramdisk1024
    Feb  2 15:10:46 Solaris genunix: [ID 936769 kern.info] ramdisk1024 is /pseudo/ra mdisk@1024
    Feb  2 15:10:46 Solaris pseudo: [ID 129642 kern.info] pseudo-device: llc10
    Feb  2 15:10:46 Solaris genunix: [ID 936769 kern.info] llc10 is /pseudo/llc1@0
    Feb  2 15:10:46 Solaris pseudo: [ID 129642 kern.info] pseudo-device: fcp0
    Feb  2 15:10:46 Solaris genunix: [ID 936769 kern.info] fcp0 is /pseudo/fcp@0
    Feb  2 15:10:46 Solaris pseudo: [ID 129642 kern.info] pseudo-device: fcsm0
    Feb  2 15:10:46 Solaris genunix: [ID 936769 kern.info] fcsm0 is /pseudo/fcsm@0
    Feb  2 15:10:47 Solaris pseudo: [ID 129642 kern.info] pseudo-device: fssnap0
    Feb  2 15:10:47 Solaris genunix: [ID 936769 kern.info] fssnap0 is /pseudo/fssnap @0
    Feb  2 15:10:47 Solaris pseudo: [ID 129642 kern.info] pseudo-device: winlock0
    Feb  2 15:10:47 Solaris genunix: [ID 936769 kern.info] winlock0 is /pseudo/winlo ck@0
    Feb  2 15:10:47 Solaris pseudo: [ID 129642 kern.info] pseudo-device: pm0
    Feb  2 15:10:47 Solaris genunix: [ID 936769 kern.info] pm0 is /pseudo/pm@0
    Feb  2 15:11:17 Solaris syslogd: going down on signal 15
    Feb  2 15:11:17 Solaris rpcbind: [ID 564983 daemon.error] rpcbind terminating on  signal.
    Feb  2 15:11:24 Solaris genunix: [ID 672855 kern.notice] syncing file systems...
    Feb  2 15:11:24 Solaris genunix: [ID 904073 kern.notice]  done
    Feb  2 15:12:43 Solaris genunix: [ID 540533 kern.notice] ^MSunOS Release 5.10 Ve rsion Generic_118855-33 32-bit
    Feb  2 15:12:43 Solaris genunix: [ID 172907 kern.notice] Copyright 1983-2006 Sun  Microsystems, Inc.  All rights reserved.
    Feb  2 15:12:43 Solaris Use is subject to license terms.
    Feb  2 15:12:43 Solaris unix: [ID 126719 kern.info] features: 1027fdf<cpuid,nx,s se2,sse,sep,pat,cx8,pae,mca,mmx,cmov,pge,mtrr,msr,tsc,lgpg>
    Feb  2 15:12:43 Solaris unix: [ID 168242 kern.info] mem = 523324K (0x1ff0f000)
    Feb  2 15:12:43 Solaris rootnex: [ID 466748 kern.info] root nexus = i86pc
    Feb  2 15:12:43 Solaris rootnex: [ID 349649 kern.info] pseudo0 at root
    Feb  2 15:12:43 Solaris genunix: [ID 936769 kern.info] pseudo0 is /pseudo
    Feb  2 15:12:43 Solaris rootnex: [ID 349649 kern.info] scsi_vhci0 at root
    Feb  2 15:12:43 Solaris genunix: [ID 936769 kern.info] scsi_vhci0 is /scsi_vhci
    Feb  2 15:12:43 Solaris rootnex: [ID 349649 kern.info] isa0 at root
    Feb  2 15:12:43 Solaris pci_autoconfig: [ID 771164 kern.info] NOTICE: reprogram pci device [0/11/1] (pcic)
    Feb  2 15:12:43 Solaris pci_autoconfig: [ID 771164 kern.info] NOTICE: reprogram pci device [0/11/0] (pcic)
    Feb  2 15:12:43 Solaris pcplusmp: [ID 658230 kern.info] NOTICE: apic: local nmi:  0 1 1 1
    Feb  2 15:12:43 Solaris pcplusmp: [ID 736762 kern.info] pcplusmp: vector 0x9 ioa pic 0x1 intin 0x9 is bound to cpu 0
    Feb  2 15:12:43 Solaris rootnex: [ID 349649 kern.info] pci0 at root: space 0 off set 0
    Feb  2 15:12:43 Solaris genunix: [ID 936769 kern.info] pci0 is /pci@0,0
    Feb  2 15:12:43 Solaris pcplusmp: [ID 637496 kern.info] pcplusmp: ide (ata) inst ance 0 vector 0xe ioapic 0x1 intin 0xe is bound to cpu 0
    Feb  2 15:12:43 Solaris last message repeated 1 time
    Feb  2 15:12:43 Solaris genunix: [ID 640982 kern.info]  IDE device at targ 0, lu n 0 lastlun 0x0
    Feb  2 15:12:43 Solaris genunix: [ID 846691 kern.info]  model TOSHIBA MK4025GAS
    Feb  2 15:12:43 Solaris genunix: [ID 479077 kern.info]  ATA/ATAPI-6 supported, m ajver 0x7e minver 0x0
    Feb  2 15:12:45 Solaris pci: [ID 370704 kern.info] PCI-device: ide@0, ata0
    Feb  2 15:12:45 Solaris genunix: [ID 936769 kern.info] ata0 is /pci@0,0/pci-ide@ 11,1/ide@0
    Feb  2 15:12:45 Solaris genunix: [ID 773945 kern.info]  UltraDMA mode 5 selected
    Feb  2 15:12:45 Solaris gda: [ID 243001 kern.info] Disk0:       <Vendor 'Gen-ATA  ' Product 'TOSHIBA MK4025GA'>
    Feb  2 15:12:45 Solaris ata: [ID 496167 kern.info] cmdk0 at ata0 target 0 lun 0
    Feb  2 15:12:45 Solaris genunix: [ID 936769 kern.info] cmdk0 is /pci@0,0/pci-ide @11,1/ide@0/cmdk@0,0
    Feb  2 15:12:46 Solaris unix: [ID 190185 kern.info] SMBIOS v2.3 loaded (1071 byt es)
    Feb  2 15:12:46 Solaris pseudo: [ID 129642 kern.info] pseudo-device: dld0
    Feb  2 15:12:46 Solaris genunix: [ID 936769 kern.info] dld0 is /pseudo/dld@0
    Feb  2 15:12:47 Solaris pci: [ID 370704 kern.info] PCI-device: pci1106,b188@1, p ci_pci0
    Feb  2 15:12:47 Solaris genunix: [ID 936769 kern.info] pci_pci0 is /pci@0,0/pci1 106,b188@1
    Feb  2 15:12:47 Solaris pcplusmp: [ID 637496 kern.info] pcplusmp: i8042 (i8042) instance 0 vector 0x1 ioapic 0x1 intin 0x1 is bound to cpu 0
    Feb  2 15:12:47 Solaris pcplusmp: [ID 398438 kern.info] pcplusmp: i8042 (i8042) instance #0 vector 0xc ioapic 0x1 intin 0xc is bound to cpu 0
    Feb  2 15:12:47 Solaris i8042: [ID 526150 kern.info] 8042 device:  keyboard@0, k b8042 # 0
    Feb  2 15:12:47 Solaris genunix: [ID 936769 kern.info] kb80420 is /isa/i8042@1,6 0/keyboard@0
    Feb  2 15:12:47 Solaris i8042: [ID 526150 kern.info] 8042 device:  mouse@1, mous e8042 # 0
    Feb  2 15:12:47 Solaris genunix: [ID 936769 kern.info] mouse80420 is /isa/i8042@ 1,60/mouse@1
    Feb  2 15:12:48 Solaris pcplusmp: [ID 637496 kern.info] pcplusmp: pciclass,0c032 0 (ehci) instance 0 vector 0x15 ioapic 0x1 intin 0x15 is bound to cpu 0
    Feb  2 15:12:49 Solaris pci: [ID 370704 kern.info] PCI-device: pci1025,6e@10,3, ehci0
    Feb  2 15:12:49 Solaris genunix: [ID 936769 kern.info] ehci0 is /pci@0,0/pci1025 ,6e@10,3
    Feb  2 15:12:50 Solaris pci: [ID 370704 kern.info] PCI-device: pci1025,6e@10, uh ci0
    Feb  2 15:12:50 Solaris genunix: [ID 936769 kern.info] uhci0 is /pci@0,0/pci1025 ,6e@10
    Feb  2 15:12:51 Solaris pci: [ID 370704 kern.info] PCI-device: pci1025,6e@10,1, uhci1
    Feb  2 15:12:51 Solaris genunix: [ID 936769 kern.info] uhci1 is /pci@0,0/pci1025 ,6e@10,1
    Feb  2 15:12:52 Solaris pci: [ID 370704 kern.info] PCI-device: pci1025,6e@10,2, uhci2
    Feb  2 15:12:52 Solaris genunix: [ID 936769 kern.info] uhci2 is /pci@0,0/pci1025 ,6e@10,2
    Feb  2 15:12:53 Solaris unix: [ID 950921 kern.info] cpu0: x86 (AuthenticAMD fami ly 15 model 28 step 0 clock 1600 MHz)
    Feb  2 15:12:53 Solaris unix: [ID 950921 kern.info] cpu0: Mobile AMD Sempron(tm)  Processor 2800+
    Feb  2 15:12:53 Solaris rootnex: [ID 349649 kern.info] iscsi0 at root
    Feb  2 15:12:53 Solaris genunix: [ID 936769 kern.info] iscsi0 is /iscsi
    Feb  2 15:12:53 Solaris usba: [ID 912658 kern.info] USB 1.10 device (usb4fc,3) o perating at low speed (USB 1.x) on USB 1.10 root hub: mouse@2, hid0 at bus addre ss 2
    Feb  2 15:12:53 Solaris usba: [ID 349649 kern.info]     USB Wheel Mouse
    Feb  2 15:12:53 Solaris genunix: [ID 936769 kern.info] hid0 is /pci@0,0/pci1025, 6e@10,1/mouse@2
    Feb  2 15:12:53 Solaris genunix: [ID 408114 kern.info] /pci@0,0/pci1025,6e@10,1/ mouse@2 (hid0) online
    Feb  2 15:12:53 Solaris pcplusmp: [ID 637496 kern.info] pcplusmp: pciclass,0c001 0 (hci1394) instance 0 vector 0x13 ioapic 0x1 intin 0x13 is bound to cpu 0
    Feb  2 15:12:53 Solaris pci: [ID 370704 kern.info] PCI-device: pci1025,6e@b,2, h ci13940
    Feb  2 15:12:53 Solaris genunix: [ID 936769 kern.info] hci13940 is /pci@0,0/pci1 025,6e@b,2
    Feb  2 15:12:55 Solaris pci: [ID 370704 kern.info] PCI-device: pci1025,6e@b, pci c0
    Feb  2 15:12:55 Solaris pci: [ID 370704 kern.info] PCI-device: pci1025,6e@b,1, p cic1
    Feb  2 15:13:01 Solaris genunix: [ID 773945 kern.info]  UltraDMA mode 5 selected
    Feb  2 15:13:01 Solaris genunix: [ID 454863 kern.info] dump on /dev/dsk/c0d0s1 s ize 517 MB
    Feb  2 15:13:03 Solaris snmpd[57]: [ID 874347 user.error] libpkcs11: open /var/r un/kcfd_door: No such file or directory
    Feb  2 15:13:03 Solaris snmpd[57]: [ID 523743 user.error] libpkcs11: /usr/lib/se curity/pkcs11_softtoken.so unexpected failure in ELF signature verification. Sys tem may have been tampered with. Cannot continue parsing /etc/crypto/pkcs11.conf
    Feb  2 15:13:04 Solaris pseudo: [ID 129642 kern.info] pseudo-device: zfs0
    Feb  2 15:13:04 Solaris genunix: [ID 936769 kern.info] zfs0 is /pseudo/zfs@0
    Feb  2 15:13:07 Solaris pseudo: [ID 129642 kern.info] pseudo-device: pm0
    Feb  2 15:13:07 Solaris genunix: [ID 936769 kern.info] pm0 is /pseudo/pm@0
    Feb  2 15:13:08 Solaris pseudo: [ID 129642 kern.info] pseudo-device: power0
    Feb  2 15:13:08 Solaris genunix: [ID 936769 kern.info] power0 is /pseudo/power@0
    Feb  2 15:13:08 Solaris pseudo: [ID 129642 kern.info] pseudo-device: devinfo0
    Feb  2 15:13:08 Solaris genunix: [ID 936769 kern.info] devinfo0 is /pseudo/devin fo@0
    Feb  2 15:13:12 Solaris pseudo: [ID 129642 kern.info] pseudo-device: dtrace0
    Feb  2 15:13:12 Solaris genunix: [ID 936769 kern.info] dtrace0 is /pseudo/dtrace @0
    Feb  2 15:13:14 Solaris pcplusmp: [ID 637496 kern.info] pcplusmp: asy (asy) inst ance 0 vector 0x4 ioapic 0x1 intin 0x4 is bound to cpu 0
    Feb  2 15:13:14 Solaris isa: [ID 202937 kern.info] ISA-device: asy0
    Feb  2 15:13:14 Solaris genunix: [ID 936769 kern.info] asy0 is /isa/asy@1,2f8
    Feb  2 15:13:14 Solaris rootnex: [ID 349649 kern.info] xsvc0 at root
    Feb  2 15:13:14 Solaris genunix: [ID 936769 kern.info] xsvc0 is /xsvc
    Feb  2 15:13:15 Solaris audiosup: [ID 984688 kern.info] NOTICE: audiovia823x0: a udiovia823x0: xid=0x0201, vid1=0x5649, vid2=0x4161
    Feb  2 15:13:15 Solaris pcplusmp: [ID 637496 kern.info] pcplusmp: pci1106,3059 ( audiovia823x) instance 0 vector 0x16 ioapic 0x1 intin 0x16 is bound to cpu 0
    Feb  2 15:13:15 Solaris pci: [ID 370704 kern.info] PCI-device: pci1025,46@11,5, audiovia823x0
    Feb  2 15:13:15 Solaris genunix: [ID 936769 kern.info] audiovia823x0 is /pci@0,0 /pci1025,46@11,5
    Feb  2 15:13:16 Solaris pseudo: [ID 129642 kern.info] pseudo-device: vol0
    Feb  2 15:13:16 Solaris genunix: [ID 936769 kern.info] vol0 is /pseudo/vol@0
    Feb  2 15:13:18 Solaris pseudo: [ID 129642 kern.info] pseudo-device: pseudo1
    Feb  2 15:13:18 Solaris genunix: [ID 936769 kern.info] pseudo1 is /pseudo/zconsn ex@1
    Feb  2 15:13:19 Solaris pcplusmp: [ID 398438 kern.info] pcplusmp: ide (ata) inst ance #1 vector 0xf ioapic 0x1 intin 0xf is bound to cpu 0
    Feb  2 15:13:19 Solaris last message repeated 1 time
    Feb  2 15:13:19 Solaris genunix: [ID 640982 kern.info]  ATAPI device at targ 0, lun 0 lastlun 0xfffe
    Feb  2 15:13:19 Solaris genunix: [ID 846691 kern.info]  model TSSTcorpCD/DVDW TS -L532A
    Feb  2 15:13:19 Solaris genunix: [ID 479077 kern.info]  ATA/ATAPI-7 supported, m ajver 0xf8 minver 0x1a
    Feb  2 15:13:21 Solaris pci: [ID 370704 kern.info] PCI-device: ide@1, ata1
    Feb  2 15:13:21 Solaris genunix: [ID 936769 kern.info] ata1 is /pci@0,0/pci-ide@ 11,1/ide@1
    Feb  2 15:13:21 Solaris genunix: [ID 935449 kern.info]  ATA DMA off: disabled. Control with "atapi-cd-dma-enabled" property
    Feb  2 15:13:21 Solaris genunix: [ID 882269 kern.info]  PIO mode 4 selected
    Feb  2 15:13:21 Solaris genunix: [ID 935449 kern.info]  ATA DMA off: disabled. Control with "atapi-cd-dma-enabled" property
    Feb  2 15:13:21 Solaris genunix: [ID 882269 kern.info]  PIO mode 4 selected
    Feb  2 15:13:21 Solaris genunix: [ID 935449 kern.info]  ATA DMA off: disabled. Control with "atapi-cd-dma-enabled" property
    Feb  2 15:13:21 Solaris genunix: [ID 882269 kern.info]  PIO mode 4 selected
    Feb  2 15:13:21 Solaris genunix: [ID 935449 kern.info]  ATA DMA off: disabled. Control with "atapi-cd-dma-enabled" property
    Feb  2 15:13:21 Solaris genunix: [ID 882269 kern.info]  PIO mode 4 selected
    Feb  2 15:13:21 Solaris pseudo: [ID 129642 kern.info] pseudo-device: ramdisk1024
    Feb  2 15:13:21 Solaris genunix: [ID 936769 kern.info] ramdisk1024 is /pseudo/ra mdisk@1024
    Feb  2 15:13:21 Solaris scsi: [ID 193665 kern.info] sd0 at ata1: target 0 lun 0
    Feb  2 15:13:21 Solaris genunix: [ID 936769 kern.info] sd0 is /pci@0,0/pci-ide@1 1,1/ide@1/sd@0,0
    Feb  2 15:13:21 Solaris pseudo: [ID 129642 kern.info] pseudo-device: lockstat0
    Feb  2 15:13:21 Solaris genunix: [ID 936769 kern.info] lockstat0 is /pseudo/lock stat@0
    Feb  2 15:13:21 Solaris pseudo: [ID 129642 kern.info] pseudo-device: llc10
    Feb  2 15:13:21 Solaris genunix: [ID 936769 kern.info] llc10 is /pseudo/llc1@0
    Feb  2 15:13:22 Solaris sendmail[388]: [ID 702911 mail.crit] My unqualified host  name (localhost) unknown; sleeping for retry
    Feb  2 15:13:22 Solaris pseudo: [ID 129642 kern.info] pseudo-device: fcsm0
    Feb  2 15:13:22 Solaris genunix: [ID 936769 kern.info] fcsm0 is /pseudo/fcsm@0
    Feb  2 15:13:22 Solaris sendmail[389]: [ID 702911 mail.crit] My unqualified host  name (localhost) unknown; sleeping for retry
    Feb  2 15:13:22 Solaris pseudo: [ID 129642 kern.info] pseudo-device: lofi0
    Feb  2 15:13:22 Solaris genunix: [ID 936769 kern.info] lofi0 is /pseudo/lofi@0
    Feb  2 15:13:22 Solaris pseudo: [ID 129642 kern.info] pseudo-device: profile0
    Feb  2 15:13:22 Solaris genunix: [ID 936769 kern.info] profile0 is /pseudo/profi le@0
    Feb  2 15:13:22 Solaris pseudo: [ID 129642 kern.info] pseudo-device: systrace0
    Feb  2 15:13:22 Solaris genunix: [ID 936769 kern.info] systrace0 is /pseudo/syst race@0
    Feb  2 15:13:22 Solaris pseudo: [ID 129642 kern.info] pseudo-device: fbt0
    Feb  2 15:13:22 Solaris genunix: [ID 936769 kern.info] fbt0 is /pseudo/fbt@0
    Feb  2 15:13:22 Solaris pseudo: [ID 129642 kern.info] pseudo-device: sdt0
    Feb  2 15:13:22 Solaris genunix: [ID 936769 kern.info] sdt0 is /pseudo/sdt@0
    Feb  2 15:13:22 Solaris pseudo: [ID 129642 kern.info] pseudo-device: fasttrap0
    Feb  2 15:13:22 Solaris genunix: [ID 936769 kern.info] fasttrap0 is /pseudo/fast trap@0
    Feb  2 15:13:23 Solaris pseudo: [ID 129642 kern.info] pseudo-device: fssnap0
    Feb  2 15:13:23 Solaris genunix: [ID 936769 kern.info] fssnap0 is /pseudo/fssnap @0
    Feb  2 15:13:23 Solaris pseudo: [ID 129642 kern.info] pseudo-device: winlock0
    Feb  2 15:13:23 Solaris genunix: [ID 936769 kern.info] winlock0 is /pseudo/winlo ck@0
    Feb  2 15:13:23 Solaris pseudo: [ID 129642 kern.info] pseudo-device: pool0
    Feb  2 15:13:23 Solaris genunix: [ID 936769 kern.info] pool0 is /pseudo/pool@0
    Feb  2 15:13:23 Solaris ipf: [ID 774698 kern.info] IP Filter: v4.0.3, running.
    Feb  2 15:13:23 Solaris genunix: [ID 314293 kern.info] device pciclass,030000@0( display#0) keeps up device sd@0,0(sd#0), but the latter is not power managed
    Feb  2 15:13:23 Solaris pseudo: [ID 129642 kern.info] pseudo-device: fcp0
    Feb  2 15:13:23 Solaris genunix: [ID 936769 kern.info] fcp0 is /pseudo/fcp@0
    Feb  2 15:13:23 Solaris genunix: [ID 773945 kern.info]  UltraDMA mode 5 selected
    Feb  2 15:13:23 Solaris genunix: [ID 935449 kern.info]  ATA DMA off: disabled. Control with "atapi-cd-dma-enabled" property
    Feb  2 15:13:23 Solaris genunix: [ID 882269 kern.info]  PIO mode 4 selected
    Feb  2 15:13:23 Solaris genunix: [ID 935449 kern.info]  ATA DMA off: disabled. Control with "atapi-cd-dma-enabled" property
    Feb  2 15:13:23 Solaris genunix: [ID 882269 kern.info]  PIO mode 4 selected
    Feb  2 15:13:23 Solaris genunix: [ID 935449 kern.info]  ATA DMA off: disabled. Control with "atapi-cd-dma-enabled" property
    Feb  2 15:13:23 Solaris genunix: [ID 882269 kern.info]  PIO mode 4 selected
    Feb  2 15:13:23 Solaris genunix: [ID 935449 kern.info]  ATA DMA off: disabled. Control with "atapi-cd-dma-enabled" property
    Feb  2 15:13:23 Solaris genunix: [ID 882269 kern.info]  PIO mode 4 selected
    Feb  2 15:13:34 Solaris rootnex: [ID 349649 kern.info] xsvc0 at root
    Feb  2 15:13:34 Solaris genunix: [ID 936769 kern.info] xsvc0 is /xsvc
    Feb  2 15:13:56 Solaris java[582]: [ID 807473 user.error] pkcs11_softtoken: Keys tore version failure.
    Feb  2 15:14:22 Solaris sendmail[389]: [ID 702911 mail.alert] unable to qualify my own domain name (localhost) -- using short name
    Feb  2 15:14:22 Solaris sendmail[388]: [ID 702911 mail.alert] unable to qualify my own domain name (localhost) -- using short name
    Feb  2 15:15:35 Solaris pseudo: [ID 129642 kern.info] pseudo-device: devinfo0
    Feb  2 15:15:35 Solaris genunix: [ID 936769 kern.info] devinfo0 is /pseudo/devin fo@0
    Feb  2 15:15:35 Solaris audiosup: [ID 984688 kern.info] NOTICE: audiovia823x0: a udiovia823x0: xid=0x0201, vid1=0x5649, vid2=0x4161
    Feb  2 15:15:35 Solaris pcplusmp: [ID 637496 kern.info] pcplusmp: pci1106,3059 ( audiovia823x) instance 0 vector 0x16 ioapic 0x1 intin 0x16 is bound to cpu 0
    Feb  2 15:15:35 Solaris pci: [ID 370704 kern.info] PCI-device: pci1025,46@11,5, audiovia823x0
    Feb  2 15:15:35 Solaris genunix: [ID 936769 kern.info] audiovia823x0 is /pci@0,0 /pci1025,46@11,5
    Feb  2 15:16:45 Solaris cacao[1018]: [ID 702911 daemon.warning] com.sun.scn.jmx. impl.AbstractComponent.log : SCNClientConfigImpl.activate("Register the Solaris software without choosing an update option") -- module unlocked
    Feb  2 15:16:53 Solaris cacao[1018]: [ID 702911 daemon.warning] com.sun.scn.jmx. impl.AbstractComponent.log : SCNClientConfigImpl.deactivate("Register the Solari s software without choosing an update option") -- module locked
    Feb  2 15:39:14 Solaris usba: [ID 912658 kern.info] USB 2.0 device (usb457,151) operating at hi speed (USB 2.x) on USB 2.0 root hub: storage@1, scsa2usb0 at bus  address 2
    Feb  2 15:39:14 Solaris usba: [ID 349649 kern.info]     USB Mass Storage Device c9d613d3248731
    Feb  2 15:39:14 Solaris genunix: [ID 936769 kern.info] scsa2usb0 is /pci@0,0/pci 1025,6e@10,3/storage@1
    Feb  2 15:39:14 Solaris genunix: [ID 408114 kern.info] /pci@0,0/pci1025,6e@10,3/ storage@1 (scsa2usb0) online
    Feb  2 15:39:14 Solaris scsi: [ID 193665 kern.info] sd1 at scsa2usb0: target 0 l un 0
    Feb  2 15:39:14 Solaris genunix: [ID 936769 kern.info] sd1 is /pci@0,0/pci1025,6 e@10,3/storage@1/disk@0,0
    Feb  2 15:39:14 Solaris genunix: [ID 408114 kern.info] /pci@0,0/pci1025,6e@10,3/ storage@1/disk@0,0 (sd1) online
    Feb  2 15:39:14 Solaris genunix: [ID 314293 kern.info] device pciclass,030000@0( display#0) keeps up device sd@0,0(disk#1), but the latter is not power managedifconfig
    bash-3.00# ifconfig -a
    lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
            inet 127.0.0.1 netmask ff000000I use Free and OpenBSD. My card ethernet is a via-rhine, free and openbsd recognize it like :
    dmesg | grep vr0vr0: <VIA VT6102 Rhine II 10/100BaseTX> port 0x1800-0x18ff mem 0xc0006800-0xc00068ff irq 10 at device 18.0 on pci0
    miibus0: <MII bus> on vr0
    vr0: Ethernet address: 00:0a:e4:a6:0c:b9
    vr0: promiscuous mode enabledWhy Solaris 10 does not recognize it? Help me please !
    Uhm... Sorry my language, im Italian ..

    I have not ever had a need for gcc.
    I've never found myself in circumstances where I needed to use it.
    Were there any instructions in that download from SunFreeWare?
    I'm not going to download it to check.
    My x86 system has had Sol-7, Sol-8, Sol-9 and Solaris 10 installed to it.
    I have used the same PCI ethernet card for all those distros.
    It is an old DEC-21140 10/100 card I purchased at a computer swap meet
    for US$ 2.00, six years ago. I use it because every OS recognizes it natively.
    I've experimented with a 3COM 3C905-TX, and that one is just as compatible.
    I acquired the 3COM card for US$ 5.00 at another computer swap meet.
    It was more expensive, so I'm "saving" it. (Saving for what? Who knows ! )
    Perhaps you could consider using a completely different Ethernet adapter.
    Read the Hardware Compatibility List and use hardware that's recognized natively.

  • Sconadm failed registration!

    I verified proxy username/password works and SOAlogin/password works.
    SOAlogin is all lower case. I tried with and without subscription key.
    Please help. I want to setup this server as our Sun Connection Proxy server so we can easily patch all our servers.
    Thanks!
    # psrinfo -v
    Status of virtual processor 0 as of: 02/19/2007 16:30:35
    on-line since 02/15/2007 22:27:59.
    The sparcv9 processor operates at 1002 MHz,
    and has a sparcv9 floating point processor.
    Status of virtual processor 1 as of: 02/19/2007 16:30:35
    on-line since 02/15/2007 22:27:57.
    The sparcv9 processor operates at 1002 MHz,
    and has a sparcv9 floating point processor.
    # uname -a
    SunOS ***** 5.10 Generic_118833-33 sun4u sparc SUNW,Sun-Fire-V240
    Below is the registrationprofile.properties
    userName=*****
    password=*********
    hostName=****
    subscriptionKey=NK20185588
    portalEnabled=false
    proxyHostName=**********
    proxyPort=8080
    proxyUserName=******
    proxyPassword=********
    Below is the log file.
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.BasicReg loadPropertiesFromHomeDir
    INFO: properties file loaded from the default config.properties
    Feb 19, 2007 4:22:06 PM com.sun.scn.util.Utils getLocalHostNames
    INFO: get hostname x.x.x.x
    Feb 19, 2007 4:22:06 PM com.sun.scn.util.Utils getLocalHostNames
    INFO: get hostname myhost.x.x.x.com
    Feb 19, 2007 4:22:06 PM com.sun.scn.util.Utils getLocalHostNames
    INFO: first returned hostname x.x.x.x
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.cacao.NetworkProxyCacaoAdapter setProxy
    INFO: SCNNetworkProxyConfigMBean.setHost() = proxyhost
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.cacao.NetworkProxyCacaoAdapter setProxy
    INFO: SCNNetworkProxyConfigMBean.setPort() = 8080
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.cacao.NetworkProxyCacaoAdapter setProxy
    INFO: SCNNetworkProxyConfigMBean.setUser() = proxyuser
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.cacao.NetworkProxyCacaoAdapter setProxy
    INFO: SCNNetworkProxyConfigMBean.setPassword() = proxypasswd
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.BasicRegCLI printRegistrationProfile
    INFO: userName = SOA
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.BasicRegCLI printRegistrationProfile
    INFO: password = *****
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.BasicRegCLI printRegistrationProfile
    INFO: hostName =myhost
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.BasicRegCLI printRegistrationProfile
    INFO: subscriptionKey = ********
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.BasicRegCLI printRegistrationProfile
    INFO: portalEnabled =true
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.BasicRegCLI printRegistrationProfile
    INFO: proxyHost = proxyhost
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.BasicRegCLI printRegistrationProfile
    INFO: proxyPort = 8080
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.BasicRegCLI printRegistrationProfile
    INFO: proxyUsername = proxyuser
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.BasicRegCLI printRegistrationProfile
    INFO: proxyPassword = ****
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.BasicRegCLI run
    INFO: Authenticating user ...
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.cacao.ClientLoginCacaoAdapter getSCNClientSession
    INFO: CREATING SCNClientSession
    Feb 19, 2007 4:22:06 PM com.sun.cns.basicreg.cacao.ClientLoginCacaoAdapter$LoginAccountCallbackHandler handle
    INFO: account callback setting username: SOAlogin
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.ClientLoginCacaoAdapter loginAccount
    SEVERE: Error: login account exception: RemoteException
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.ClientLoginCacaoAdapter loginAccount
    SEVERE:
    com.sun.scn.jmx.impl.UISClientLoginModule.login(UISClientLoginModule.java:216)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:585)
    javax.security.auth.login.LoginContext.invoke(LoginContext.java:769)
    javax.security.auth.login.LoginContext.access$000(LoginContext.java:186)
    javax.security.auth.login.LoginContext$5.run(LoginContext.java:706)
    java.security.AccessController.doPrivileged(Native Method)
    javax.security.auth.login.LoginContext.invokeCreatorPriv(LoginContext.java:703)
    javax.security.auth.login.LoginContext.login(LoginContext.java:575)
    com.sun.scn.jmx.impl.UISClientLogin.login(UISClientLogin.java:198)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:585)
    com.sun.jmx.mbeanserver.StandardMetaDataImpl.invoke(StandardMetaDataImpl.java:414)
    javax.management.StandardMBean.invoke(StandardMBean.java:323)
    com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:213)
    com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220)
    com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815)
    com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
    com.sun.jdmk.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:203)
    com.sun.cacao.agent.DispatchInterceptor.invoke(DispatchInterceptor.java:662)
    com.sun.cacao.agent.auth.impl.AccessControlInterceptor.invoke(AccessControlInterceptor.java:618)
    com.sun.jdmk.JdmkMBeanServerImpl.invoke(JdmkMBeanServerImpl.java:764)
    com.sun.cacao.common.instrum.impl.InstrumDefaultForwarder.invoke(InstrumDefaultForwarder.java:106)
    javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1408)
    javax.management.remote.rmi.RMIConnectionImpl.access$100(RMIConnectionImpl.java:81)
    javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1245)
    java.security.AccessController.doPrivileged(Native Method)
    javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1348)
    javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:782)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:585)
    sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:294)
    sun.rmi.transport.Transport$1.run(Transport.java:153)
    java.security.AccessController.doPrivileged(Native Method)
    sun.rmi.transport.Transport.serviceCall(Transport.java:149)
    sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:466)
    sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:707)
    java.lang.Thread.run(Thread.java:595)
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.ClientLoginCacaoAdapter getLoginResult
    INFO: SCN Fault: RemoteException
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogs
    INFO: catalog: 0
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogs
    INFO: catalog.scopname: Sun Connection Network
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogs
    INFO: catalog.scopURI: null
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry: 0
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry name: Use Sun Update Manager and Sun Update Connection to manage updates
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry module name: com.sun.scn.offering.SoftwareUpdate
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry instance name: SoftwareUpdateOfferingInstance
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry config profile: no profile
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry: 1
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry name: Use Sun Update Manager using a local update source, such as Sun Connection Proxy
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry module name: com.sun.scn.offering.SoftwareUpdate
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry instance name: SoftwareUpdateOfferingInstance
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry config profile: no profile
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry: 2
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry name: Register the Solaris software without choosing an update option
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry module name: com.sun.scn.offering.ProductRegistration
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry instance name: ProductRegOfferingInstance
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry config profile: no profile
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter activate
    INFO: OCA activate: Use Sun Update Manager and Sun Update Connection to manage updates
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter activate
    INFO: with config: null
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.SWUPOMCacaoAdapter getSWUPOfferingFactoryMBean
    INFO:
    SWUPOfferingFactory ObjectName =
    com.sun.scn:Vendor=Sun Microsystems Inc,assetProfile=OperatingSystem,assetSubProfile=TODO,host=199.42.67.124,name=SWUPOfferingFactory,scnType=OfferingFactory
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry: 0
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry name: Use Sun Update Manager and Sun Update Connection to manage updates
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry module name: com.sun.scn.offering.SoftwareUpdate
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry instance name: SoftwareUpdateOfferingInstance
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry config profile: no profile
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry: 1
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry name: Use Sun Update Manager using a local update source, such as Sun Connection Proxy
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry module name: com.sun.scn.offering.SoftwareUpdate
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry instance name: SoftwareUpdateOfferingInstance
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry config profile: no profile
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry: 2
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry name: Register the Solaris software without choosing an update option
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry module name: com.sun.scn.offering.ProductRegistration
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry instance name: ProductRegOfferingInstance
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry config profile: no profile
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter activate
    INFO: Before activation, deactivate current activation: Use Sun Update Manager and Sun Update Connection to manage updates
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry: 0
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry name: Use Sun Update Manager and Sun Update Connection to manage updates
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry module name: com.sun.scn.offering.SoftwareUpdate
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry instance name: SoftwareUpdateOfferingInstance
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry config profile: no profile
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry: 1
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry name: Use Sun Update Manager using a local update source, such as Sun Connection Proxy
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry module name: com.sun.scn.offering.SoftwareUpdate
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry instance name: SoftwareUpdateOfferingInstance
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry config profile: no profile
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry: 2
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry name: Register the Solaris software without choosing an update option
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry module name: com.sun.scn.offering.ProductRegistration
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry instance name: ProductRegOfferingInstance
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry config profile: no profile
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter deactivate
    INFO: OCA deactivate: Use Sun Update Manager and Sun Update Connection to manage updates
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter activate
    INFO: OCA activate: Register the Solaris software without choosing an update option
    Feb 19, 2007 4:22:07 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter activate
    INFO: with config: null
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry: 0
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry name: Use Sun Update Manager and Sun Update Connection to manage updates
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry module name: com.sun.scn.offering.SoftwareUpdate
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry instance name: SoftwareUpdateOfferingInstance
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry config profile: no profile
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry: 1
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry name: Use Sun Update Manager using a local update source, such as Sun Connection Proxy
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry module name: com.sun.scn.offering.SoftwareUpdate
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry instance name: SoftwareUpdateOfferingInstance
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry config profile: no profile
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry: 2
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry name: Register the Solaris software without choosing an update option
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry module name: com.sun.scn.offering.ProductRegistration
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry instance name: ProductRegOfferingInstance
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry config profile: no profile
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter activate
    INFO: Before activation, deactivate current activation: Register the Solaris software without choosing an update option
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry: 0
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry name: Use Sun Update Manager and Sun Update Connection to manage updates
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry module name: com.sun.scn.offering.SoftwareUpdate
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry instance name: SoftwareUpdateOfferingInstance
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry config profile: no profile
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry: 1
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry name: Use Sun Update Manager using a local update source, such as Sun Connection Proxy
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry module name: com.sun.scn.offering.SoftwareUpdate
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry instance name: SoftwareUpdateOfferingInstance
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry config profile: no profile
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry: 2
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry name: Register the Solaris software without choosing an update option
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry module name: com.sun.scn.offering.ProductRegistration
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry instance name: ProductRegOfferingInstance
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter getOfferingCatalogEntries
    INFO: entry config profile: no profile
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter deactivate
    INFO: OCA deactivate: Register the Solaris software without choosing an update option
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter activate
    INFO: OCA activate: Use Sun Update Manager and Sun Update Connection to manage updates
    Feb 19, 2007 4:22:08 PM com.sun.cns.basicreg.cacao.OfferingCacaoAdapter activate
    INFO: with config: null
    Feb 19, 2007 4:22:09 PM com.sun.cns.basicreg.cacao.SWUPOMCacaoAdapter setSystemDisplayName
    INFO: CALL SWUPOfferingInstanceMBean.setSystemDisplayName(): mc1daa99
    Feb 19, 2007 4:22:09 PM com.sun.cns.basicreg.cacao.SWUPOMCacaoAdapter setSWUPPortalEnabled
    INFO: CALL SWUPOfferingInstanceMBean.setSWUPPortalEnableKey(): true
    Feb 19, 2007 4:22:09 PM com.sun.cns.basicreg.cacao.SWUPOMCacaoAdapter registerSystem
    INFO: CALL SWUPOfferingInstanceMBean.register()
    Feb 19, 2007 4:22:09 PM com.sun.cns.basicreg.cacao.SWUPOMCacaoAdapter registerSystem
    SEVERE: Error: SWUPOM register() exception: Failed to register asset with AMS. Error message is :com.sun.scn.offering.prom.AssetRegistrationException: RemoteException
    Feb 19, 2007 4:22:09 PM com.sun.cns.basicreg.cacao.SWUPOMCacaoAdapter registerSystem
    SEVERE:
    com.sun.scn.offering.swupom.SWUPOfferingInstance.register(SWUPOfferingInstance.java:398)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:585)
    com.sun.jmx.mbeanserver.StandardMetaDataImpl.invoke(StandardMetaDataImpl.java:414)
    javax.management.StandardMBean.invoke(StandardMBean.java:323)
    com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:213)
    com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220)
    com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815)
    com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
    com.sun.jdmk.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:203)
    com.sun.cacao.agent.DispatchInterceptor.invoke(DispatchInterceptor.java:662)
    com.sun.cacao.agent.auth.impl.AccessControlInterceptor.invoke(AccessControlInterceptor.java:618)
    com.sun.jdmk.JdmkMBeanServerImpl.invoke(JdmkMBeanServerImpl.java:764)
    com.sun.cacao.common.instrum.impl.InstrumDefaultForwarder.invoke(InstrumDefaultForwarder.java:106)
    javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1408)
    javax.management.remote.rmi.RMIConnectionImpl.access$100(RMIConnectionImpl.java:81)
    javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1245)
    java.security.AccessController.doPrivileged(Native Method)
    javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1348)
    javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:782)
    sun.reflect.GeneratedMethodAccessor42.invoke(Unknown Source)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:585)
    sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:294)
    sun.rmi.transport.Transport$1.run(Transport.java:153)
    java.security.AccessController.doPrivileged(Native Method)
    sun.rmi.transport.Transport.serviceCall(Transport.java:149)
    sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:466)
    sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:707)
    java.lang.Thread.run(Thread.java:595)
    Feb 19, 2007 4:22:09 PM com.sun.cns.basicreg.cacao.SWUPOMCacaoAdapter getRegisterResult
    INFO: SWUPOM Fault: Failed to register asset with AMS. Error message is :com.sun.scn.offering.prom.AssetRegistrationException: RemoteException

    Do you have the latest version of the toolset installed? -
    # $ showrev -p | egrep '^Patch: (11978[8|9]|12033[5|6]|12108[1|2])'
    # $ showrev -p | egrep '^Patch: (12111[8|9]|12145[3|4]|12156[3|4])'
    # $ showrev -p | egrep '^Patch: (12223[1|2]|12300[5|6]|124463|12461[4|5])'
    Additionally, have you tried registering the host using a different sun online account? (or have you previously registered systems using this sun online account?)

  • Trouble using nsswitch.conf

    Hello,
    In order to make some ldap replication test, I need to give an ldap service a fake IP address for a known host. It used to work on previous versions of Solaris.
    my nsswitch.conf file defines host as :
    hosts: files dns
    On Solaris 9, if I define in /etc/hosts
    1.2.3.4 www.sun.com
    and I telnet to www.sun.com
    host# telnet www.sun.com
    Trying 1.2.3.4...
    I get the correct answer
    On Solaris 10 box, there always a dns request and the /etc/hosts file is ignored.
    I tried to invalide the nscd cache with an nscd -i hosts but I still get the same behaviour.
    Any idea ?
    Regards,
    Fred.

    The problem may not be with /etc/hosts.
    This is actually a link to /etc/inet/hosts and you will also notice the file /etc/inet/ipnodes. If there is an entry in /etc/inet/ipnodes for the host in question, it will get read before /etc/inet/hosts.
    At least this is what I have encountered when trying to change the IP address of my system and not realizing that in Solaris 10 it included my host in this file even though it was only in /etc/inet/hosts under Solaris 9.

  • Does Leopard server work without an internet connection?

    Topic says it all. What a noob question but it seems like it doesn't. I didn't have a network cable plugged to the modem during installation of the Standard Server configuration and it wouldn't continue without an internet connection. Once I plugged it in everything was fine... until my internet connection was out for several hours. None of the services worked during that time and nothing was working right at all.
    Joshua.

    Hi,
    I guess here you may also ask what services the server will host. My experience since Tiger (and Leopard) is that most things involving OD and Kerberos works better (or works at all) if you have a +network with existing DNS+ set up correct before you set up the server. No need of an Internet connection thou.
    Have newer tried to set up either Tiger or Leopard as OD master and the first DNS on the network, but I guess (read right: guess) that setting it up as Standalone first, activate DNS and promote to OD master may be the way to go.
    But if it will be standalone file server - well. Should work fine with camelots configuration of network.
    And why else have a server? If you only have one computer in your configuration? But that may be a totally different story...

Maybe you are looking for

  • Please help me regarding role upload ?

    Hi All,    installed CRM business package in portal. took CUA as user base. now assigning of users to roles is a concern for me. i.e. CRM 4.0 and BW 3.5 already comes with some predefined roles for portal, for ex : PCCCAMPAIGNMANAGER* I assigned an u

  • Pvc2300: false positive with motion detection

    Hello! I bought 3 pvc 2300 cameras. I tried motion detection with camera's software and with "Active webcam" software and I received a lot of false positive mails. 1. with camera's software, I set event with motion detection & sent mail, but I receiv

  • Need to reinstall iTunes from the Canadian Website

    I just purchased a new iPad from the USA and followed the instructions to install iTunes but from the US site. Now I tried to use my canadian credit card to buy apps and it won't let me, only US CCs will be accepted. Can I reinstall iTunes?

  • Cmd command unrecognized in windows 8 command prompt

    I'm trying to create a txt file via command line on windows 8 using the following command in the root directory (C:): echo getmac for laptop > c:\data\laptop_mac.txt" cmd /c "getmac >> c:\data\laptop_mac.txt" The fist line works but the command promp

  • How hide the tab button in welcome file

    i am a portal green hand,have a basic question,how can i hide a tab button in portal welcome file,and it will be visible after i login the portal