WebSphere Community Edition Changing the HTTP port to 80
What I need to do now is find how to change WCE do bind to a particular IP Address and port.
find . -type f | xargs grep 8080
/var/apps/wce/var/config/config.xml most probably contains my configuration. However I found that the config file uses substituted variables from a properties file
var/config/config-substitutions.properties
So I changed the following line
EndPointURI=http\://\:8080
To
EndPointURI=http\://<ipaddress>\:80
and
HTTPPort=8080
to
HTTPPort=80
You may also wish to change the attribute
from
ServerHostname=0.0.0.0
to
ServerHostname=<ipaddress>
and put your ip address to bind to a specific ip address as opposed to all ip addresses on the nic.
at last reboot server .
reference:http://www.webspheretools.com/sites/webspheretools.nsf/docs/Changing%20the%20HTTP%20port%20of%20WebSphere%20Community%20Edition
What I need to do now is find how to change WCE do bind to a particular IP Address and port.
find . -type f | xargs grep 8080
/var/apps/wce/var/config/config.xml most probably contains my configuration. However I found that the config file uses substituted variables from a properties file
var/config/config-substitutions.properties
So I changed the following line
EndPointURI=http\://\:8080
To
EndPointURI=http\://<ipaddress>\:80
and
HTTPPort=8080
to
HTTPPort=80
You may also wish to change the attribute
from
ServerHostname=0.0.0.0
to
ServerHostname=<ipaddress>
and put your ip address to bind to a specific ip address as opposed to all ip addresses on the nic.
at last reboot server .
reference:http://www.webspheretools.com/sites/webspheretools.nsf/docs/Changing%20the%20HTTP%20port%20of%20WebSphere%20Community%20Edition
本文详细介绍了如何在WebSphere Community Edition中将HTTP端口从默认的8080更改为80。通过修改配置文件和属性文件中的相关参数,用户可以将端点URI和HTTP端口更改为特定的IP地址和端口号,并将服务器主机名更改为特定的IP地址,从而实现将服务绑定到特定IP地址的目的。

2168

被折叠的 条评论
为什么被折叠?



