Reputation:
Please help;
Am trying to deploy a web application. The build is returning successful,and am not getting any errors on the sever.log however am getting a http 503 error:the requested service() is not currently available and also my Java DB Database Process has this message Warning: UnknkownHostException: intracare: intracare. Could not listen on port 1527 on host localhost.
am using glassfish v3 prelude
Upvotes: 0
Views: 387
Reputation: 424
Mayby string you are typing as a host name is wrong? Maybe it is firewall problem?
Upvotes: 0
Reputation: 75386
Check the DNS settings on the host. Your short names do not resolve correctly.
Upvotes: 0
Reputation: 4303
I think that UnknownHostException is related that intracare can't be resolved to an IP.
I would:
Regards.
Upvotes: 1
Reputation: 99385
Possibly you already have another application (perhaps another JavaDB instance?) listening on port 1527 - that could explain the "could not listen" message. Use netstat
to check.
Upvotes: 1