Linux Centos8 Create CA Certificate Tutorial

Linux Centos8 Create CA Certificate Tutorial

Install Required Files

Yum install openssl-* -y

Create database index files

Enter the certificate serial number as 01

Generate a private key file

Create a CA certificate using a private key

openssl req -new -x509 -key /etc/pki/CA/private/cakey.pem -days 3650 -out /etc/pki/CA/cacert.pem

Issue a certificate to the user (taking the /data/skills directory as an example)

Apply for a private key

Apply for a certificate using the requested private key file

openssl -req -new -key /data/skills/skills.key -out /data/skills/skills.csr

Create a certificate using the csr just now

openssl ca -in /data/skills/skills.csr -out /etc/pki/CA/certs/skills.crt -days

Check the validity of the certificate

openssl ca -status 01 shows the following success

Transfer the parent ca and ca to Windows

Trust

This is the end of this article about the tutorial on how to create a CA certificate in Centos8 on Linux. For more information about how to create a CA certificate in Centos8, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to deploy nginx SSL certificate under CentOS 6.7
  • Generate OpenSSL certificates in Linux environment
  • How to add self-signed certificate TLS to Nginx in Linux
  • How to configure SSL certificate for Nginx under Linux

<<:  Graphical explanation of the solutions for front-end processing of small icons

>>:  Solution to the problem of child element margin-top causing parent element to move

Recommend

Vue-Element-Admin integrates its own interface to realize login jump

1. First look at the request configuration file, ...

Differences between proxy_pass in two modules in nginx

1. The proxy_pass directive of the 1.ngx_stream_p...

Example of deploying Laravel application with Docker

The PHP base image used in this article is: php:7...

Simple principles for web page layout design

This article summarizes some simple principles of...

CSS3 overflow property explained

1. Overflow Overflow is overflow (container). Whe...

Detailed graphic explanation of mysql query control statements

mysql query control statements Field deduplicatio...

Detailed explanation of VUE Token's invalidation process

Table of contents Target Thought Analysis Code la...

Javascript basics about built-in objects

Table of contents 1. Introduction to built-in obj...

How to use JavaScript and CSS correctly in XHTML documents

In more and more websites, the use of XHTML is rep...

Tutorial on deploying nginx+uwsgi in Django project under Centos8

1. Virtual environment virtualenv installation 1....

Detailed explanation of flex layout in CSS

Flex layout is also called elastic layout. Any co...

MySql grouping and randomly getting one piece of data from each group

Idea: Just sort randomly first and then group. 1....

Detailed explanation of Vue px to rem configuration

Table of contents Method 1 1. Configuration and i...

HTML table markup tutorial (16): title horizontal alignment attribute ALIGN

By default, the table title is horizontally cente...