The way in which you need to start the PPaaS server varies based on the DB setting 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