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:
...
- 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.
Execute one of the following commands, where
<PRODUCT_HOME>
is the directory where you installed the product distribution:OS Command On Windows <PRODUCT_HOME>\bin\wso2server.bat --run
On Linux/Solaris sh <PRODUCT_HOME>/bin/wso2server.sh
Info title Starting 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 can enable the worker node for your product by executing configuring the following command:
- On Windows:
On Linux/Solaris:<PRODUCT_HOME>\bin\wso2server.bat --run -DworkerNode
sh <PRODUCT_HOME>/bin/wso2server.sh -DworkerNode
property in the product startup script:
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 with -DworkerNode
. See more information about starting the product using profiles. . 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".
- On Windows:
...