tomcat的8080,8009,8443,8005都是什么端口

news/2024/7/4 9:30:50

 

<Server port="8005" shutdown="SHUTDOWN">    远程停服务端口
<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" URIEncoding="UTF-8"/> 其中8080为HTTP端口,8443为HTTPS端口
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" /> 8009为AJP端口

APACHE能过AJP协议访问TOMCAT的8009端口。

转载于:https://www.cnblogs.com/godlovelian/p/4809012.html


http://www.niftyadmin.cn/n/4231760.html

相关文章

Python之时间和日期使用小结

对于日期的操作可以说是比较常见的case了,日期与格式化字符串互转&#xff0c;日期与时间戳互转&#xff0c;日期的加减操作等&#xff0c;下面主要介绍下常见的需求场景如何实现 1. 基本包引入 主要需要引入时间和日期的处理包&#xff0c;后面的基本操作都是基于此 import …

Hibernate之deleted object would be re-saved by casc

2019独角兽企业重金招聘Python工程师标准>>> 在Hibernate中&#xff0c;删除存在关联关系的一个对象时&#xff0c;会出现 org.hibernate.ObjectDeletedException: deleted object would be re-saved by cascade (remove deleted object from associations)这个异常…

SpringBoot文件上传异常之提示The temporary upload location xxx is not valid

原文: 一灰灰Blog之Spring系列教程文件上传异常原理分析 SpringBoot搭建的应用&#xff0c;一直工作得好好的&#xff0c;突然发现上传文件失败&#xff0c;提示org.springframework.web.multipart.MultipartException: Failed to parse multipart servlet request; nested exc…

【转】【Flex】#010 操作XML文件(E4X)

该教程转载来自于&#xff1a;http://blog.chinaunix.net/uid-14767524-id-2785506.html 【看到这边文章的位置&#xff0c;具体原作者未知】 经过一些排版的修改&#xff0c;其他内容没变。【版权属于原作者】 一 在介绍Flex中操作XML之前&#xff0c;首先简单介绍下XML中…

代码随想录——376. 摆动序列

本题要考虑三种情况&#xff1a; 上下坡中有平坡数组首尾两端单调坡中有平坡 class Solution {public int wiggleMaxLength(int[] nums) {if(nums.length < 1) return nums.length;int curdiff 0;int prediff 0;int result 1;for(int i 1; i< nums.length;i){curdi…

SpringBoot文件上传异常之temporary upload location not valid

SpringBoot搭建的应用&#xff0c;一直工作得好好的&#xff0c;突然发现上传文件失败&#xff0c;提示org.springframework.web.multipart.MultipartException: Failed to parse multipart servlet request; nested exception is java.io.IOException: The temporary upload l…

200多个js技巧代码(四)

121.集中为按钮改变颜色<style>button{benc:expression(this.onfocus function(){this.style.backgroundColor#E5F0FF;})}</style><button>New</button>//122.判断是左键还是右键被按下<body οnmοusedοwnif(event.button1)alert("左键&quo…

SpringBoot高级篇MongoDB之如何新增文档

本篇博文为mongodb的curd中一篇&#xff0c;前面介绍简单的查询使用&#xff0c;这一篇重点则放在插入数据; I. 基本使用 首先是准备好基本环境&#xff0c;可以参考博文 181213-SpringBoot高级篇MongoDB之基本环境搭建与使用190113-SpringBoot高级篇MongoDB之查询基本使用姿…