2
votes

I have installed Glassfish application server Openshift cloud servers. I can only use :8080 port because of Openshift restrictions. It won't let me run admin console on :4848 port and I will somehow configure datasource, file realm and security realm manually from configuration files.

a-) Is it possible to do configuration without the admin console?

b-) Can admin console run on :8080 port along with applications?

Note: It is not possible to allocate any port for admin console Openshift won't let me do it.

Thanks

1

1 Answers

4
votes

a) You can configure Glassfish with the asadmin tool

b) You can change the port for the admin console in glassfish/domains/[yourdomain]/config/domain.xml: search for

<network-listener port="4848" protocol="admin-listener" transport="tcp" name="admin-listener" thread-pool="admin-thread-pool"></network-listener>

But I doubt it is possible to use port 8080 for admin gui AND other applications.