vote up 0 vote down star

With understanding of secure Internet connections limited to SSL, I'm doubtful about the security of GlassFish Admin console. Normal secure HTTP connections use http**s**://domain/ URLs but in GlassFish http://domain:4848/ is used to login to Admin console. Is there some kind of encryption going on between the browser and the server when using that administration port, or does all that communication go unsecurely, naked to possible hackers?

GlassFish documentation guide how to use the Admin console but I haven't found any mention about this security concern.

flag
2  
belongs on serverfault – cletus May 12 at 15:14
Edit: Retagged. – a paid nerd May 12 at 18:51

3 Answers

vote up 0 vote down

If it used SSL, you would access it as https://domain:4848/

You can see more information by choosing "Page info" from your browser's menu. If you have accessed the page through an https URL, you should see a small lock icon somewhere on the browser window, and that icon should be clickable.

link|flag
The console can't be accessed using https:/domain:4848/ . Browser says that the connection was lost during transfer of data. – whippersnapper May 12 at 15:47
Then no, it's not using SSL. – a paid nerd May 12 at 18:54
vote up 2 vote down

SSL can be enabled for Admin console inside Admin console -> Configurations -> HTTP Service -> HTTP Listeners -> admin-listener (responsible for listening for 4848 port)

There is a secure checkbox option that is not enabled by default. After enabling it Admin console will force the use of SSL. For example http:/domain:4848/ redirects to https://domain:4848/

..not entirely sure if just checkin secure option for admin-listener did the trick, as saving the change the console froze. After that I also changed AS_ADMIN_SECURE=true in GlassFish's config/asadminenv.conf.

link|flag
vote up 0 vote down

If you have an install script in order to be able to install your development/production environment reliably again and again, you might want to set the corresponding glassfish property at that script using this line:

asadmin set --port 4848 --user admin --passwordfile password-file.txt server.http-service.http-listener.admin-listener.security-enabled=true
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.