Versions Compared

Key

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

...

  1. Click Launch -> Run Applications, type dtterm at the Prompt, and then press Enter, to open a Command Prompt.
  2. Execute the following command: <PRODUCT_HOME>/bin/bash wso2server.sh.
  3. The operation log appears in the command window. When the product server has successfully started, the log displays the message "WSO2 Carbon started in 'n' seconds".

...

 

Info

If you are starting the product in service/nohup mode in Solaris

.Open the

, do the following:

  1. Update the <PRODUCT_HOME>/bin/wso2server.sh file
in a text editor.
  1. as follows:
    1. Search for the following occurrences: nohup sh "$CARBON_HOME"/bin/wso2server.sh $args > /dev/null 2>&1 &

    2. Replace those occurrences with the following:  nohup bash "$CARBON_HOME"/bin/wso2server.sh $args > /dev/null 2>&1 &

      Tip

      The only change is replacing sh with bash. This is required only for Solaris.

  2. Update your PATH variable to have /usr/xpg4/bin/sh as the first element. This is because /usr/xpg4/bin/sh contains an sh shell that is newer than the default sh shell. You can set this variable as a system property in the wso2server.sh script or you can run the following command on a terminal:

    Code Block
    export PATH=/usr/xpg4/bin/sh:$PATH
  3. Start the product by following the above instructions.


Running the management console
Anchor
run
run

...