Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

To run WSO2 products, you start the product server at the command line. You can then run the Management Console application to configure and manage the product. This page describes how to run the product in the following sections:

...

  1. Open a command prompt:
    • On Windows, choose Start -> Run, type cmd at the prompt, and press Enter.
    • On Linux/Solaris, establish a SSH connection to the server or log into the text Linux console.
  2. Execute one of the following commands, where <PRODUCT_HOME> is the directory where you installed the product distribution:

    OSCommand
    On Windows
    <PRODUCT_HOME>\bin\wso2server.bat --run
    On Linux/Solaris
    sh <PRODUCT_HOME>/bin/wso2server.sh
    Info
    titleStarting the server as a Worker Node:

    If you want to provide access to the production environment without allowing any user group (including admin) to log in to the management console, you must start the product as a worker node. You  You can enable the worker node for your product by configuring the following property in the product startup script:product in two ways:

    1. Use the -DworkerNode startup command when you start the product as shown below:

    • On Windows: <PRODUCT_HOME>\bin\wso2server.bat --run -DworkerNode
    • On Linux/Solaris: sh <PRODUCT_HOME>/bin/wso2server.sh -DworkerNode

    2.You can set permanently set the -DworkerNode system property to 'true' in your product startup script. When you execute the product startup script, the worker profile will be started automatically.

    Code Block
    '-DworkerNode=false'

    Note that this profile only consists of the back-end features of the Application Server and does not include stubs or any UI features. However, in WSO2 AS, if you require any stubs to be activated in addition to the back-end features when you run the worker profile, you can manually add the relevant JARs to the web application's lib folder before starting the server. For information about other profiles available for AS, see Running the Product on a Preferred Profile.

    If you want to check any additional options available to be used with the startup commands, type -help after the command, such as: sh <PRODUCT_HOME>/bin/wso2server.sh -help.

    The operation log appears. When the product server is running, the log displays the message "WSO2 Carbon started in 'n' seconds".

...