A minor problem with superset nginx reverse proxy configuration

When using nginx to configure superset reverse proxy and map to distribute through cookie s, we encounter very strange problems. When visiting the home page, we are always redirected to the domain name of upstream with the same name. upstream release { server 127.0.0.1:8088 weight=1 max_fail ...

Posted by Zoofu on Thu, 03 Oct 2019 20:20:33 -0700

Building Etcd Cluster

Article directory I. About ETCD II. Stand-alone Installation 3. Building Clusters Official website: https://etcd.io/ Github: https://github.com/etcd-io/etcd/releases I. About ETCD etcd is an open source, distributed key-to-value data storage system that provides shared configuration, service ...

Posted by thorpe on Wed, 02 Oct 2019 01:58:37 -0700

Providing an external http interface API based on grpc through grpc-gateway

The advantages of grpc are no longer described, but how to provide Restful interface to the outside world and how to use grpc-gateway to convert grpc to Restful API when there is no desire to develop the same function repeatedly. install go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway go get -u github.com/micro/protobuf ...

Posted by kmussel on Mon, 30 Sep 2019 16:21:48 -0700

Request and response of DRF Wizard

src From this section we begin to really touch on the core of rest framework. First, let's learn some necessary knowledge. 1. Request Object -- Request object The rest framework introduces a Request object inherited from HttpRequest, which provides more flexible parsing of requests. The core part of t ...

Posted by sneamia on Wed, 25 Sep 2019 21:16:17 -0700

Connecting the public cloud Kubernetes cluster through kubectl

Kubectl is a command-line tool for Kubernetes cluster. Through kubectl, the cluster itself can be managed and the container application can be installed and deployed on the cluster. It can not only deploy master and node nodes, but also manage Kubernetes on other machines. Official documents: https://kubernetes.io/docs/tasks/tools/install-kube ...

Posted by mikesab on Fri, 20 Sep 2019 01:23:57 -0700

Install software and build production environment under linux non-root users

Previous lab servers, for some reason, used users without root privileges. linux non-root users many software can not be installed, very inconvenient. My approach is to use brew instead of the package management tool of the system. Brew is the first package management tool to be used on mac, which can host all packages in user local environment ...

Posted by insight on Tue, 17 Sep 2019 03:51:46 -0700

Nginx Common Questions

1. Nginx multi-Server priority When starting to process an http request, nginx takes out the Host variable in the header header and matches each server_name in nginx.conf to determine which server will handle the request. However, how nginx configures multiple identical server_names can lead to priority access conflicts in server_name. 1.1 Prep ...

Posted by tobykw13 on Mon, 02 Sep 2019 06:57:33 -0700

Improvement of Kafka Connector in Version 2.3

In version 2.3 of Kafka, the Kafka connector has been greatly improved. First, when adding and deleting connectors, the way Kafka connectors handle tasks is modified. Previously, this action brought the whole system to a standstill, which has been criticized by the development and maintenance personnel. In addition, other problems frequently me ...

Posted by Mig on Fri, 30 Aug 2019 02:53:57 -0700

Kubernetes Command Line Management Tool-Kubectl

Enclosed: Meow a Mimi's blog: w-blog.cn Kubernetes official documents: https://kubernetes.io/docs/reference/ Kubernetes official Git address: https://github.com/kubernetes/kubernetes PS: This series uses Kubernetes V1.8 Rancher V1.6.14 I. Installation of Kubectl in China The installation commands provided by the official website are: curl ...

Posted by jannz on Thu, 29 Aug 2019 00:53:21 -0700

Summary of Nginx usage

Summary of the Use of Nginx (IV) rewrite configuration The rewrite configuration of nginx is the core part of nginx configuration. rewrite can implement domain name jump (redirection), URL rewrite (pseudo-static), dynamic and static separation ...

Posted by rubric on Tue, 27 Aug 2019 18:10:45 -0700