Azkaban3.X Multiple Excutors Installation Documents

Azkaban3.X Multiple Excutors Installation Documents 1. Compiling source code 1.1 Cloned Source Code git clone https://github.com/azkaban/azkaban.git 1.2 Compilation # Enter the azkaban directory cd azkaban; # Compiling projects using gradle ./gradlew build installDist After compilation, build directories will be generat ...

Posted by longtone on Sun, 20 Jan 2019 10:18:12 -0800

Micro Services - Using HTTPS to Build Private Dock on Nexus Repository Manager 3.0

http://ju.outofmemory.cn/entry/357233 Ways of buildingConfigure HTTPSGenerate keystore fileAdd an SSL portAdd HTTPS Support ProfileModify the HTTPS configuration fileVerificationRestart serviceWeb accessdocker configurationLogin error1 - Modify the daemon.json file2 - Configure ca-trust (centos)Reference materials Ways of buil ...

Posted by Scrank.com on Thu, 10 Jan 2019 18:03:10 -0800

Self-built https server and client certificates, nginx and spring boot applications use the same certificate, and solve the problem of chrome security warning

Reference link: Self-issued ssl certificate [spring boot] configure ssl certificate to implement https 1. Generating nginx certificates and configuring chrome security alerts 1. Install openssl 2. Generating Root Certificate openssl req -x509 -nodes -days 1461 -newkey rsa:2048 -subj "/C=CN/ST=MyProvince/L=MyCity/O=MyOrgani ...

Posted by djjjozsi on Mon, 07 Jan 2019 15:06:09 -0800

Nginx Load Balancing, ssl Principle, Generation of ssl Key Pairs, Configuration of ssl in LNMP Architecture (5)

1. Nginx load balancing Nginx load balancing means that when a proxy server resolves a customized domain name to multiple specified IP, the upstream module ensures that users can access each IP normally through the proxy server (reverse proxy multiple servers is load balancing). 1.1 Load Balancing Configuration Parameters [root@host ~]# vim /us ...

Posted by candy2126 on Mon, 07 Jan 2019 01:42:09 -0800

MINA, Netty, Twisted Learning Together (11): SSL/TLS

What is SSL/TLS Network communication without using SSL/TLS is usually plaintext transmission. Network transmission content is easy to be eavesdropped or even tampered with in the transmission process, which is very insecure. The SSL/TLS protocol is designed to solve these security problems. The SSL/TLS protocol is located on top of TCP/IP prot ...

Posted by nosheep on Sat, 05 Jan 2019 11:33:09 -0800

Spring Cloud Config - RSA Profile and Using RSA Encryption Profile

brief introduction RSA asymmetric encryption has very strong security. HTTPS's SSL encryption uses this method to encrypt HTTPS requests. RSA algorithm is called asymmetric encryption because it involves Private Key and Public Key, which are used for encryption and decryption respectively. Private Key and Public Key are interoperable, i.e. thos ...

Posted by ams007 on Thu, 03 Jan 2019 15:03:10 -0800

docker deployment nginx under centos7 using let's encrypt free certificate

Large-brand providers'SSL certificates are not cheap. They may not be much for large companies, but they are expensive for small companies and individuals. Now Let's Encrypt, a free SSL service provider, is definitely a good news for small companies or developers. Prerequisite Have a domain name, such as mydemo.com (for domestic hosts, al ...

Posted by Nymphetamine on Tue, 25 Dec 2018 13:09:06 -0800

Centos 7.3 realizes disk sharing based on iscsi+pacemaker+corosync+gfs2+clvmd

demand One of our services needs to be able to access the stored data by mounting the data directory on the shared storage, so as to achieve high availability of multi-node clusters. Previous blog posts pacemaker+drbd dual master We use drbd+gfs2 to implement it. Is there a simpler way? This article will introduce iscsi+pace ...

Posted by SWI03 on Sat, 22 Dec 2018 04:27:06 -0800

Centos + Tomcat 9 + Let's encrypt Free SSL Upgrade https (Problems encountered)

Upgrade environment: Tomcat works centos6.5 Java1.8 Tomcat9   1. Get Let's Encrypt Free SSL Certificate # Create a new ssl directory under the current directory $ mkdir ssl $ cd ssl # Download letsencrypt from github $ git clone https://github.com/letsencrypt/letsencrypt # Enter the letsencrypt directory $ cd letsencry ...

Posted by hogleg on Thu, 20 Dec 2018 09:03:05 -0800

Use and configuration of HTTPS on SL/TLS (IIS8 and iOS client)

Use and configuration of HTTPS on SL/TLS (IIS8 and iOS client) CA certificate 1. Domain Name Type SSL Certificate (DV SSL): The trust level is ordinary, only need to verify the authenticity of the website can issue certificates to protect the website; generally free. 2. Enterprise-type SSL Certificate (OV SSL): Strong trust level, ...

Posted by _theworks on Thu, 20 Dec 2018 05:48:05 -0800