Versions Compared

Key

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

...

Note

Skip this step if you wish to use PPaaS with the internal database, such as when you are using the PPaaS installer to install PPaaS.

Panel

For testing purposes you can run your PPaaS setup on the internal database (DB), which is the H2 DB. In the latter mentioned scenario, you do not need to setup the internal DB. However, in a production environment it is recommend to use an external RDBMS (e.g., MySQL).

Expand
titleClick here to instructions...

Include Page
Configuring PPaaS with External Databases
Configuring PPaaS with External Databases

...

Step 6 - Start the PPaaS server

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

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

...