Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a glassfish server runing. it has 3 different domains - d1,d2, and d3. now when I try to run asadmin enable-secure-admin command, how to i specify which domain i want to enable?

share|improve this question
do you mean enable-secure-admin ? and are each domains, d1,d2 &d3 stand alone (DAS) ? – ring bearer Dec 23 '11 at 17:55
oops, sorry. error corrected – neo Dec 23 '11 at 17:57
1  
i am fairly new to glassfish. I created each domain using asadmin create-domain command. not sure what DAS means... – neo Dec 23 '11 at 17:59
Please make this clear - are you trying to enable secure administration of the domains you created? like for example login/password for the admin consoles? – ring bearer Dec 23 '11 at 18:04

2 Answers

up vote 18 down vote accepted

You must specify the port the DAS (Domain Administration Server) is running on. For example:

asadmin --host localhost --port 4848 enable-secure-admin

asadmin --host localhost --port 5858 enable-secure-admin

asadmin --host localhost --port 6868 enable-secure-admin

Of course, this assumes the ports are for d1, d2, and d3 respectively.

Hope this helps.

share|improve this answer
worked. thanks and happy new year! – neo Dec 28 '11 at 17:29
Glad to help. Happy (belated) New Year! – John Clingan Jan 13 '12 at 8:41
Worked for me as well on the new glassfish version 3.1.2. Thanks a lot! – Waylander Jun 11 '12 at 8:48

Before being able to enable Security, You might be prompted with a message saying your admin password is empty and cannot enable security.

To solve the problem:

Change the password of admin this way: asadmin --host localhost --port 4848 change-admin-password

It will prompt you with user, type "admin", admin password, retype admin password

Once this is done, enable the security with the following command:

asadmin --host localhost --port 4848 enable-secure-admin

This should fix the problem.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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