Explanation of the steps for Tomcat to support https access

Explanation of the steps for Tomcat to support https access

How to make tomcat support https access

step:

(1) Generate keystore file

Command: keytool -genkey -alias tomcat -keyalg RSA -keysize 1024 -validity 365 -keystore tomcat22.keystore

The generated file is: tomcat22.keystore

(2) Place the keystore file in the conf directory

(3) Modify the server.xml file

Add to:

<Connector port="80" protocol="org.apache.coyote.http11.Http11Protocol" SSLEnabled="true"
        maxThreads="150" scheme="https" secure="true"
        clientAuth="false" sslProtocol="TLS" 
        keystoreFile="conf/tomcat22.keystore"
        keystorePass="111111"/> 

(4) Start tomcat and you can access it


The following is wrong:

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • How to set up virtual directories and configure virtual paths in Tomcat 7.0
  • Explanation of Tomcat using IDEA remote Debug
  • Example of using supervisor to manage nginx+tomcat containers
  • Tomcat uses Log4j to output catalina.out log
  • Centos7.5 configuration java environment installation tomcat explanation
  • Connector configuration in Tomcat
  • Tomcat+Mysql high concurrency configuration optimization explanation
  • Explanation on the use and modification of Tomcat's default program publishing path
  • Detailed explanation of three ways to cut catalina.out logs in tomcat
  • Explanation of several ways to run Tomcat under Linux

<<:  Detailed Example of MySQL curdate() Function

>>:  Two solutions for Vue package upload server refresh 404 problem

Recommend

Linux uses join -a1 to merge two files

To merge the following two files, merge them toge...

Attributes in vue v-for loop object

Table of contents 1. Values ​​within loop objects...

JavaScript implements constellation query function with detailed code

Table of contents 1. Title 2. Code 3. Results IV....

Detailed explanation of MySQL cursor concepts and usage

This article uses examples to explain the concept...

idea combines docker to realize image packaging and one-click deployment

1. Install Docker on the server yum install docke...

Vue front-end development auxiliary function state management detailed example

Table of contents mapState mapGetters mapMutation...

Solution to Docker disk space cleaning

Some time ago, I encountered the problem that the...

CSS sets the list style and creates the navigation menu implementation code

1. Set the list symbol list-style-type: attribute...

JS realizes the effect of picture waterfall flow

This article shares the specific code of JS to re...

Introduction to the common API usage of Vue3

Table of contents Changes in the life cycle react...

JavaScript Function Currying

Table of contents 1 What is function currying? 2 ...

Super detailed MySQL8.0.22 installation and configuration tutorial

Hello everyone, today we are going to learn about...