To run WSO2 DAS, you start the DAS 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:
The Management console uses the default HTTP-NIO transport, which is configured in the catalina-server.xml
file in the <DAS_HOME>/repository/conf/tomcat
directory. This transport must be properly configured in this file for the Management console to be accessible.
Starting the server
To start the server, you run the script wso2server.bat
(on Windows) or wso2server.sh
(on Linux/Solaris) from the bin
folder. Alternatively, you can install and run the server as a Windows service.
To start and stop the server in the background mode of Linux, run wso2server.sh
start and wso2server.sh stop
commands.
- 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 in to the text Linux console.
- Execute one of the following commands, where
<DAS_HOME>
is the directory where you installed the DAS distribution: - On Windows:
<DAS_HOME>/bin/wso2server.bat --run
On Linux/Solaris:
sh <DAS_HOME>/bin/wso2server.sh
If you want to provide access to the production environment without allowing any user group (including admin) to log into the management console, execute one of the following commands.
- On Windows:
<DAS_HOME>\bin\wso2server.bat --run -DworkerNode
- On Linux/Solaris:
sh <DAS_HOME>/bin/wso2server.sh -DworkerNode
If you want to check any additional options available to be used with the startup commands, type
-help
after the command, such as:sh <DAS_HOME>/bin/wso2server.sh -help.
- On Windows:
The operation log appears. When the DAS server is running, the log displays the message "WSO2 Carbon started in 'n' seconds."
Running the Management Console
Once the server has started, you can run the Management Console by opening a Web browser and typing in the management console's URL. You can find the URL in the start script's log. For example:
The URL should be in the following format: https://<Server Host>:9443/carbon
You can use this URL to access the Management Console on this computer from any other computer connected to the Internet or LAN. When accessing the Management Console from the same server where it's installed, you can type localhost instead of the IP address: https://localhost:9443/carbon
The Management Console URL can be changed by modifying the value of the MgtHostName
in the <DAS_HOME>/repository/conf/carbon.xml
file.
<MgtHostName>localhost</MgtHostName>
At the sign-in screen, sign in to the Management Console using admin as both the username and password. You can then use the Management Console to manage the DAS. The tabs and menu items in the navigation pane on the left may vary depending on the features you have installed. To view information about a particular page, click the Help link at the top right corner of that page , or click the Docs link to open this documentation for full information on managing the DAS.
Restricting Access to the Management Console and Web Applications:
Stopping the server
To stop the server, press Ctrl+C in the command window, or click the Shutdown/Restart link in the navigation pane in the Management Console.