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

I am a Glassfish newbie, though a Java and Unix veteran. I am running the shell script to install Java EE 6 SDK, including Glassfish 3 on my Mac.

bash-3.2# sh java_ee_sdk-6u4-unix.sh

Everything goes along fine until I get to the Domain Info screen. I am sticking with the default info (except for passwords):

Domain Name: domain1
Admin Port: 4848     <- I have verified with netstat that both ports are free
Http Port: 8080      <-
Username: admin
Password: xxxxxxxxxxxx
Service Name: domain1Service
+ Start domain after creation

When I click Next, I get 2 error dialogs that tell me the following:

Admin Port: Host name not found
Http Port: Host name not found

Does anyone know how to get past this?

share|improve this question

2 Answers

Looks like something is wrong with your network config. Maybe your hosts file is missing the entry for localhost.

Check the file /private/etc/hosts for

127.0.0.1 localhost

You can also try to set your hostname with

sudo hostname localhost
share|improve this answer
So /etc/hosts and /private/etc/hosts are the same file (same inode according to ls -i). It contains the right entry for localhost. What is interesting is that the hostname command returns 'airguitar' which is the name I set for the host through the preferences (I can't find where that is stored). I can ping localhost, but I couldn't ping airguitar until I added it to /etc/hosts. I've seen some notes about having to set my hosts domain name on the web, but I have no idea what to set that to on a standalone MacBook Air. It would help if I understood what Glassfish was trying to do here. – Chuck Jan 27 at 17:26
up vote 0 down vote accepted

The answer was relatively simple. I had to add the hostname configured with MacOS Settings as an alias for localhost into my /etc/hosts file. I'm not sure where MacOS keeps the host name. But the hostname command (i.e. gethostname) was returning 'airguitar', which is what Glassfish was trying to connect to. Since it wasn't in /etc/hosts, the hostname couldn't be found.

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.