|
DEFAULT PORTS:
The followings are the port addresses used by the Bora Builder:
Apache Web Server: ports 8080
and 8443 (the latter is only used by the secure server).
To change Apache ports, edit '$EVINCEROOT/apache/conf/httpd.conf' and
change the 'Port' parameter from 8080 to the new port address,
preferrably to port 80, the default http port. Reconfiguring
'Port' to 80 will automatically bring the secure port 8443
down to the port address 443, which is the default secure http port.
Tomcat Servlet Engine: ports 8007 and 8009.
In order to change Tomcat ports, you need to edit '
$EVINCEROOT/tomcat/conf/server.xml' file. Open the file, search for 'Connector' elements
and modify the 'port' parameter values.
PostgreSQL RDBMS Engine: port 5432.
To change the postgreSQL postmaster port, the DBA needs to provide the port address to postmaster
in boot time:
postmaster -i -p <port number>
Now, for Bora to connect to the new port, Bora Admin must provide the new port address
prior to booting Bora, thru an environment variable 'PGPORT', as in:
PGPORT=1234; export PGPORTor
setenv PGPORT 1234
depending on the shell use (where 1234 is the port number). Then the Bora Builder may be started as usual.
|