faq Is there a way to try out all of the supported products at once - padogrid/padogrid GitHub Wiki

Is there a way to try out all of the supported products at once without manually verifying port conflicts?

Yes, the following link shows all of the default port numbers used by each product and lists the commands that you can copy and paste into your terminal to fire up the product clusters.

Starting All Products

You can start most of the products using the default settings without concern for having port number conflicts. There are a few exceptions, of course, that would require you to change the port numbers. For example, Geode and GemFire use the same default port number 10334. With PadoGride, you can change the port number on the fly by specifying the -port option in the create_cluster command. This option automatically bumps up all of the port numbers used by the specified product. We can handle the port number conflicts in Geode and GemFire like the following example.

# Use the default port 10334 for locator and all other default ports, i.e., 40404 for server 1, etc.
create_cluster -product geode

# Use 10434 for locator and bump up other ports by 100 (10434-10334), i.e., 40504 for server 1, etc.
create_cluster -product gemfire -port 10434

✏️ Auto-completion provides the default port number for the specified product. For example, if you type create_cluster -product gemfire -port <tab>, it will fill the command with 10343.

⚠️ **GitHub.com Fallback** ⚠️