Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Port 9080 applications #228

Open
cezarsg opened this issue Oct 22, 2020 · 4 comments
Open

Port 9080 applications #228

cezarsg opened this issue Oct 22, 2020 · 4 comments

Comments

@cezarsg
Copy link

cezarsg commented Oct 22, 2020

I cant acesss deployed applications at port 9080. How should it work? Look like this port is not exposed ou is it another port??

@BradleyMayo
Copy link
Collaborator

BradleyMayo commented Oct 22, 2020

Are you mapping the ports when you do docker run? From the main README:

Running the image by using the default values

   docker run --name was-server -h was-server -p 9043:9043 -p 9443:9443 -d \
   websphere-traditional:latest

@srbala
Copy link

srbala commented Nov 22, 2020

Usually WebSphere uses four different ports in its deployment by default, 9043, 9060, 9080 and 9443. Extending @BradleyMayo answer, full bind will be...

   docker run --name was-server -h was-server -p 9043:9043 -p 9060:9060 -p 9080:9080 -p 9443:9443 -d \
   websphere-traditional:latest

Few tips to note for those new to docker...

  • When working in Office/VPN environment, docker for desktop seems binds to IP address of your PC/host, and not be available at localhost based URLs. But, links will be available via host name/IP address. For example, http://pcname:9060/ibm/console for admin console, http://pcname:9080/appname/
  • the port mapping in command line, -p hostport:dockerport, so -p 11080:9080, application will be available at http://pcname:11080/appname/

@srbala
Copy link

srbala commented Dec 11, 2020

@cezarsg this is not an issue, try the responses above and close the issue

@srbala
Copy link

srbala commented Dec 18, 2020

@cezarsg any update?

@BradleyMayo this is not an issue, please review and close

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants