How Certificate Authority works in VMware vCenter

VMware vSphere vCenter Server Appliance (VCSA for short) contains a series of services of Platform Service Controller. VMware Certificate Authority (VMCA) is an indispensable part of it. The authentication service of vCenter Server core includes the following three components: 1) VMCA, VMware certificate management service 2)VMAFD,VMware Aut ...

Posted by eneyas on Tue, 05 Nov 2019 13:41:53 -0800

App wechat payment

I. Basic Process of wechat payment Main interaction between merchant system and wechat payment system: Step 1: the user selects the goods in the merchant APP, submits the order and selects wechat payment. Step 2: the merchant receives the user payment form at the background and calls the unified order interface of wechat payment. See also ...

Posted by bfinucan on Mon, 04 Nov 2019 08:05:21 -0800

Gausdb 200 uses GDS to import data from a remote server

Gausdb 200 supports importing data in TEXT, CSV and FIXED formats that exist on the remote server into the cluster. This article introduces the use of GDS (Gauss Data Service) tools to import data from remote servers into GaussDB 200. The environment is as follows: 1. Prepare source data Here, from the PostgreSQL database, use the copy command ...

Posted by phppssh on Sun, 03 Nov 2019 23:13:09 -0800

java calls https interface

Difference between http and https https protocol needs to apply for certificate from ca, generally there are few free certificates, so it needs a certain fee. http is hypertext transmission protocol, information is plaintext transmission, and https is ssl encrypted transmission protocol with security. ...

Posted by LearningKid on Fri, 01 Nov 2019 15:38:23 -0700

Mongodb practice 1: initial (including installation)

Mongodb series Mongodb practice 1: initial (including installation) Practice 2 of Mongodb: Practice 3 of Mongodb Practice 4 of Mongodb Practice 5 of Mongodb Practice 6 of Mongodb Practice 7 of Mongodb Practice 8 of Mongodb Preface Mongodb actually wanted to write a tutorial as early as a year ago. Because of the busy work, I didn't really use ...

Posted by benmay.org on Wed, 30 Oct 2019 23:03:49 -0700

http module of NodeJS

Article directory 1 http module 1.1 basic usage 1.1.1 module attributes 1.1.1.1 properties of HTTP request 1.1.2 module method 1.1.2.1 method of HTTP module 1.1.2.2 method of server instance 1.1.2.3 HTTP response method 1.1.3 processing GET requests 1.1.4 processing POST requests 1.2 request 1. ...

Posted by JoeF on Sat, 26 Oct 2019 20:21:27 -0700

etcd for k8s binary installation

etcd Install etcd wget https://github.com/etcd-io/etcd/releases/download/v3.3.9/etcd-v3.3.9-linux-amd64.tar.gz tar -xvf etcd-v3.3.9-linux-amd64.tar.gz mv etcd-v3.3.9-linux-amd64/etcd* /usr/local/bin/ Create etcd startup file cat > /usr/lib/systemd/system/etcd.service << EOF [Unit] Description=Etcd Server After=network.target After=net ...

Posted by vMan on Sat, 26 Oct 2019 09:23:05 -0700

Various database command line tools: mycoli litecli MSSQL cli pgcli

If you normally operate the database on the command line, it is highly recommended that you use the following command-line tools. mycli Mycli is a MySQL based command-line tool, which is directly installed by pip install mycli. For details, see https://github.com/dbcli/mycli $ mycli --help Usage: mycli [OPTIONS] [DATABASE] A MySQL terminal c ...

Posted by timmybuck on Sat, 19 Oct 2019 11:28:17 -0700

k8s component deployment of three node nodes

In the second chapter, three roles are deployed on the master, and then node nodes are deployed.Main deployment: kubelet Kube proxy I. environment preparation (the following operations are performed on the master) 1 create directory and copy two components mkdir /home/yx/kubernetes/{bin,cfg,ssl} -p # Both node nodes copy scp -r /home/yx/src/k ...

Posted by herod1 on Fri, 18 Oct 2019 11:51:58 -0700

Kafka self built cluster synchronizes data to Alibaba cloud Kafka Standard Edition through MirrorMaker

Explain:1. Only two topic s are synchronized this time, and subsequent optimization will continue to update...2. Self built cluster CDH5.8, kafka2.1.0; Alibaba cloud cluster Standard Version kafka0.10.xTrample:1. Add the CMM of kafka role instance in cdh, which should not support SSL connection.2. VPC network access. I don't know that the purc ...

Posted by midgar777 on Thu, 17 Oct 2019 21:15:50 -0700