部署到websphere上的项目默认的端口号9080,修改成8080要修改2个文件
1.在WAS console中,环境-》虚拟主机-》default_host
然后编辑9080的端口为8080保存
2.
WebSphere/AppServer/profiles/AppSrv01/config/cells/localhostNode01Cell/nodes/localhostNode01/serverindex.xml
<specialEndpoints xmi:id="NamedEndPoint_1213602610369" endPointName="WC_defaulthost">
<endPoint xmi:id="EndPoint_1213602610369" host="*" port="9080"/>
</specialEndpoints>
把9080改成8080
linux修改文件方式
$vim a.txt 然后按i来编辑文档a.txt,编辑完成后,按Esc进入命令行,按shift键,然后键入冒号wq(:wq),表示保存你所作的修改并退出,如果不想保存所作的修改可以键入冒号q!(:q!),表示强制退出。 随后可以用 cat命令来查看你所做的修改。