> > You need to check if the SMF service is running:
>
> >  # svcadm -v enable webconsole
> >  svc:/system/webconsole:console enabled.
> >  # svcs webconsole
> >  STATE          STIME    FMRI
> >  online         19:07:24 svc:/system/webconsole:console
>
> Can the service be enabled for remote connection?

Yes, you need to set the corresponding SMF property.  Check
for the value of "options/tcp_listen":

  # svcprop -p options/tcp_listen webconsole
  true

If it says "false", you need to set it to "true".  Here's a snippet
from the Sun documentation:

  # svccfg
  svc:> select system/webconsole
  svc:/system/webconsole> setprop options/tcp_listen=true
  svc:/system/webconsole> quit
  # /usr/sbin/smcwebserver restart
  # netstat -a | grep 6789

I think you could also use "svcadm" to restart the service instead
of the "smcwebserver" script.

The last line is just to verify that something is listening on
the webconsole port.


Hope this helps -- Volker
-- 
------------------------------------------------------------------------
Volker A. Brandt                  Consulting and Support for Sun Solaris
Brandt & Brandt Computer GmbH                   WWW: http://www.bb-c.de/
Am Wiesenpfad 6, 53340 Meckenheim                     Email: [EMAIL PROTECTED]
Handelsregister: Amtsgericht Bonn, HRB 10513              Schuhgröße: 45
Geschäftsführer: Rainer J. H. Brandt und Volker A. Brandt
_______________________________________________
zfs-discuss mailing list
zfs-discuss@opensolaris.org
http://mail.opensolaris.org/mailman/listinfo/zfs-discuss

Reply via email to