Configuring Port Numbers
Changing WildFly Port
You can change Squore Server port number after installation. With Squore Server running, simply execute the following command:
<SQUORE_HOME>/bin/sqadm wildfly network --bind-offset n
Where:
-
n, is the binding port offset (default is 100).
The offset is the value added to the default WildFly port values:
|
See sqadm wildfly network manpage to know more.
Changing PostgreSQL Port
You can change the port used by the Squore database by editing PostgreSQL’s configuration file and modifying Squore Server’s <SQUORE_HOME>/server/standalone/configuration/standalone.xml to point to the new port. The procedure involves modifying some configuration files in a text editor and restarting the server.
-
Shutdown Squore Server and stop the database
-
Open <CLUSTER_DIR>/postgresql.conf in a text editor and search for the line where the port option is defined:
port = 4561 # (change requires restart)
-
Change the port value to the desired one for your system
-
Open <SQUORE_HOME>/server/standalone/configuration/standalone.xml in a text editor and search for the database connection URL:
<connection-url>jdbc:postgresql://localhost:4561/squore</connection-url>
-
Change the port value to match the change you made in <CLUSTER_DIR>/postgresql.conf.
-
Start Squore Server.
If you do not know where <CLUSTER_DIR> is located on your server, you can find its location by reading the value of the cluster setting in <SQUORE_HOME>/config.xml. |