Saturday, 18 April 2020

Starting Gemfire in SAS

Gemfire is available in both Compute and Mid. The default port is 41415. If you have many gemfire, you may have port numbers incremented by 1, for example: 41416.

Gemfire is located under Web.

<SASCONFIG>/Web/gemfire.

To Start:
<SASCONFIG>/Web/gemfire/instances/ins_41415/gemfire-locator.sh start

To check Status:
<SASCONFIG>/Web/gemfire/instances/ins_41415/gemfire-locator.sh status

To stop:
<SASCONFIG>/Web/gemfire/instances/ins_41415/gemfire-locator.sh stop


If it doesn;t start check port number is occupied by any other process.

lsof -i tcp:41415


If you only have one instance then 41415 will be default. If you have Lev2 then it will be 41416

No comments:

Post a Comment

Golang - Email - Secure code warrior

 package mail import ( "net/smtp" "gobin/config" ) var ( emailConfig config.Email ) type Mail struct { Destinati...