JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle Solaris Administration: Basic Administration     Oracle Solaris 10 1/13 Information Library
search filter icon
search icon

Document Information

About This Book

1.  Oracle Solaris Management Tools (Road Map)

2.  Working With the Solaris Management Console (Tasks)

3.  Working With the Oracle Java Web Console (Tasks)

What's New in Administering the Oracle Java Web Console?

Oracle Java Web Console Server Management

Applications That Are Available to the Oracle Java Web Console

Oracle Java Web Console (Overview)

What Is the Oracle Java Web Console?

Oracle Java Web Console Management Commands

Supported Web Browsers

Getting Started With the Oracle Java Web Console (Task Map)

Getting Started With the Oracle Java Web Console

How to Start Applications From the Oracle Java Web Console's Launch Page

Managing the Console Service

How to Start the Console Service

How to Enable the Console Service to Run at System Start

How to Stop the Console Service

How to Disable the Console Service

Configuring the Oracle Java Web Console

How to Change Oracle Java Web Console Properties

Oracle Java Web Console User Identity

Using the Console Debug Trace Log

Troubleshooting the Oracle Java Web Console Software (Task Map)

Troubleshooting the Oracle Java Web Console Software

Checking Console Status and Properties

How to Check if the Console is Running and Enabled

How to List Console Resources and Properties

Problems Accessing the Console

Problems with Application Registration

How to Determine if an Application is a Legacy Application

How to List Deployed Applications

How to Register a Legacy Application With the Oracle Java Web Console

How to Unregister a Legacy Application From the Oracle Java Web Console

How to Register a Current Application With the Oracle Java Web Console

How to Unregister a Current Application from the Oracle Java Web Console

Oracle Java Web Console Reference Information

Oracle Java Web Console Security Considerations

Access to the Oracle Java Web Console

Access to Applications in the Oracle Java Web Console

Application Privileges

Application Access to Remote Systems

Internal Passwords That Are Used in the Console

Specifying Authorizations With the authTypes Tag

Enabling Remote Access to the Oracle Java Web Console

How to Enable Remote Access to the Oracle Java Web Console

Disabling Remote Access to the Oracle Java Web Console

How to Disable Remote Access to the Oracle Java Web Console

Changing Internal Passwords for Oracle Java Web Console

How to Change the Console's Internal Passwords

4.  Managing User Accounts and Groups (Overview)

5.  Managing User Accounts and Groups (Tasks)

6.  Managing Client-Server Support (Overview)

7.  Managing Diskless Clients (Tasks)

8.  Introduction to Shutting Down and Booting a System

9.  Shutting Down and Booting a System (Overview)

10.  Shutting Down a System (Tasks)

11.  Modifying Oracle Solaris Boot Behavior (Tasks)

12.  Booting an Oracle Solaris System (Tasks)

13.  Managing the Oracle Solaris Boot Archives (Tasks)

14.  Troubleshooting Booting an Oracle Solaris System (Tasks)

15.  x86: GRUB Based Booting (Reference)

16.  x86: Booting a System That Does Not Implement GRUB (Tasks)

17.  Working With Oracle Configuration Manager

18.  Managing Services (Overview)

19.  Managing Services (Tasks)

20.  Managing Software (Overview)

21.  Managing Software With Oracle Solaris System Administration Tools (Tasks)

22.  Managing Software by Using Oracle Solaris Package Commands (Tasks)

23.  Managing Patches

A.  SMF Services

Index

Managing the Console Service

Solaris 10 11/06: The Oracle Java Web Console service is managed through the Service Management Facility (SMF). You can start, stop, enable, and disable the console service by using SMF commands, or by using the smcwebserver script. The FMRI used in SMF for the console is system/webconsole:console.

How to Start the Console Service

This procedure starts the server temporarily. If the server was disabled from starting when the system boots, it will continue to be disabled. If the server was enabled, it will continue to be enabled.

Starting with the Solaris 10 11/06 release, the running enabled state displays as true (temporary), if the server is running while disabled.

  1. Become superuser or assume an equivalent role.

    Roles contain authorizations and privileged commands. For more information about roles, see Configuring RBAC (Task Map) in System Administration Guide: Security Services.

  2. Start the server now, without changing the enabled state.
    # smcwebserver start

How to Enable the Console Service to Run at System Start

This procedure enables the console service to run each time the system starts. The console is not started in the current session.

Starting with the Solaris 10 11/06 release, this procedure sets the general/enabled property to true in SMF, so that the server is started at the time the system boots.

  1. Become superuser or assume an equivalent role.

    Roles contain authorizations and privileged commands. For more information about roles, see Configuring RBAC (Task Map) in System Administration Guide: Security Services.

  2. Enable the server to be started at system boot.
    # smcwebserver enable

    Solaris 10 11/06: Alternatively, if you want to both start the server now, and enable the server to start when the system boots, use the command:

    # svcadm enable system/webconsole:console

    Note - If you are running the Solaris 10 11/06 release, you cannot enable the console by using the smcwebserver command. You must use the svcadm command.


How to Stop the Console Service

This procedure stops the server temporarily. If the server is disabled from starting when the system boots, it will continue to be disabled. If the server was enabled, it will continue to be enabled.

Starting with the Solaris 10 11/06 release, the running enabled state displays as false (temporary) if the server is stopped while enabled.

  1. Become superuser or assume an equivalent role.

    Roles contain authorizations and privileged commands. For more information about roles, see Configuring RBAC (Task Map) in System Administration Guide: Security Services.

  2. Stop the server now, without changing the enabled state.
    # smcwebserver stop

How to Disable the Console Service

When the console server is disabled, the server does not start when the system boots.

Starting with the Solaris 10 11/06 release, this procedure sets the console's general/enabled property to false in SMF, so that the console server does not start when the system boots.

  1. Become superuser or assume an equivalent role.

    Roles contain authorizations and privileged commands. For more information about roles, see Configuring RBAC (Task Map) in System Administration Guide: Security Services.

  2. Disable the server from starting when the system boots.
    # smcwebserver disable

    Solaris 10 11/06: Alternatively, if you want to both stop the server now, and disable the server from starting when the system boots, use the command:

    # svcadm disable system/webconsole:console

    Note - If you are running the Solaris 10 11/06 release, you cannot disable the console with the smcwebserver command. You must use the svcadm command.