|
1 修改端口从8080到8081,具体为:
6 修改端口 -
/opt/tc/bex5/apache-tomcat/conf下的server.xml 服务器端口8080改为8081
<Connector port="8080" URIEncoding="utf-8" maxHttpHeaderSize="8192" compression="on"
maxThreads="1500" minSpareThreads="30" maxSpareThreads="150"
enableLookups="false" redirectPort="8443" acceptCount="300"
compressionMinSize="10"
connectionTimeout="30000" disableUploadTimeout="true" compressableMimeType="text/html,text/xml,text/css,text/javascript,application/x-
javascript,application/javascript,application/xml,application/json"/>
修改为:
<Connector port="8081" URIEncoding="utf-8" maxHttpHeaderSize="8192" compression="on"
maxThreads="1500" minSpareThreads="30" maxSpareThreads="150"
enableLookups="false" redirectPort="8443" acceptCount="300"
compressionMinSize="10"
connectionTimeout="30000" disableUploadTimeout="true" compressableMimeType="text/html,text/xml,text/css,text/javascript,application/x-
javascript,application/javascript,application/xml,application/json"/>
/opt/tc/bex5/conf下server.xml服务器端口也从 8080修改为8081
<business-server>http://localhost:8080/BusinessServer</business-server>
<doc-server>http://localhost:8080/DocServer</doc-server>
<report-server>http://localhost:8080/ReportServer/reportservice</report-server>
<auth-server>http://localhost:8080/BusinessServer</auth-server>
修改为:
<business-server>http://localhost:8081/BusinessServer</business-server>
<doc-server>http://localhost:8081/DocServer</doc-server>
<report-server>http://localhost:8081/ReportServer/reportservice</report-server>
<auth-server>http://localhost:8081/BusinessServer</auth-server>
出现错误为:
提示:网络出错
编码:JUSTEP230109
|
|