Versions Compared

Key

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

...

Panel
Manually Starting PPaaS

The way in which you need to start the PPaaS server varies based on your settings as follows:

Note

We recommend to start the PPaaS server in background mode, so that the instance will not

  • If you want to use the internal database (H2) and the embedded CEP, start the PPaaS server as follows:

    Code Block
    sh <PRIVATE_PAAS_HOME>/bin/wso2server.sh start
  • If you want to use an external database, start the Private PaaS server with the -Dsetup option as follows: 
    This creates the database schemas in <PRIVATE_PAAS_HOME>/dbscripts directory.

    Code Block
    sh <PRIVATE_PAAS_HOME>/bin/wso2server.sh start -Dsetup
  • If you want to use an external CEP, disable the embedded CEP when starting the PPaaS server as follows:

    Code Block
    sh <PRIVATE_PAAS_HOME>/bin/wso2server.sh start -Dprofile=cep-excluded
  • If you want to use an external database, together with an external CEP, start the Private PaaS server as follows:
    This creates the database schemas in <PRIVATE_PAAS_HOME>/dbscripts directory.

    Code Block
    sh <PRIVATE_PAAS_HOME>/bin/wso2server.sh start -Dsetup -Dprofile=cep-excluded 

     

Starting PPaaS with the Installer

You can use the PPaaS Installer to install PPaaS with ease.

Expand
titleClick here to instructions...

Insert excerpt
Running the PPaaS Installer
Running the PPaaS Installer
nopaneltrue

Tip

You can tail the log, to verify that the Private PaaS server starts without any issues.

Code Block
tail -f <PRIVATE_PAAS_HOME>/repository/logs/wso2carbon.log

...