Deploying High Availability rancher Cluster with Helm

Background Rancher HA is deployed in a variety of ways: Helm HA installation deploys Rancher in the existing Kubernetes cluster. Rancher will use the cluster etcd to store data and use Kubernetes scheduling to achieve high availability. RKE HA installation, using RKE tools to install a separate Kubernetes cluster, dedicated to Rancher HA depl ...

Posted by scrypted on Fri, 10 May 2019 12:44:24 -0700

Kubernetes 1.13.1 + etcd 3.3.10 + flanneld 0.10 cluster deployment

New features of Kubernetes 1.13 Using kubeadm (GA) to simplify Kubernetes cluster management Most engineers with Kubernetes should be able to use kubeadm. It is an important tool for managing the life cycle of a cluster, from creation to configuration to upgrade; now kubeadm has officially become GA. Kubeadm handles the guidan ...

Posted by phpanon on Tue, 07 May 2019 07:20:38 -0700

Pthon3 Web Crawler System Learning: First Lecture on Basic Library urllib

The common base libraries for crawlers in python3 are urllib and requests This article mainly describes the relevant content of urllib urllib consists of four modules: requests - Simulate sending requests error - exception handling module parse - Tool Module on URL Processing Robot Parser - Determine crawlable content on a site by identify ...

Posted by tempa on Thu, 02 May 2019 21:40:38 -0700

Java crawls and downloads cool dog TOP500 songs

The following methods and codes are for learning purposes only, not for other purposes.The example uses several libraries, including jsoup, HttpClient, net.sf.json, which you can download on your own. 1. Analyse if you can get TOP500 song lists First, open the cool dog homepage to see the cool dog TOP500, say 500, how can ther ...

Posted by daveyc on Mon, 29 Apr 2019 16:40:36 -0700

Deploy novel api service to Tencent cloud

The novel API version 1.0 is finished, and then it is deployed to the server, using nginx, pm2, nvm, git, OpenSSL. Server configuration: CentOS 7.4 64 bit 1 core 2 GB 1 Mbpsnode version: 8.9.0nvm version: 0.33.11npm version: 5.5.1nginx version: 1.12.2git version: 2.9.5 The first step is to add the pm2 configuration file Create a pm2.json file i ...

Posted by Jove on Sun, 28 Apr 2019 00:40:36 -0700

Nginx automatically configures and renews SSL certificates for websites through certbot

1. Background knowledge What are 1.1, http, and https? Simply put, http is a protocol for transferring web content, such as the website you see at the beginning of http http://www.163.com , the text, pictures, CSS, JS and other files on its web page are transferred to our browser through the http protocol, and then we can see them. And HTTPS ...

Posted by Jay_Seagrave on Fri, 26 Apr 2019 11:42:35 -0700

Install and configure Nginx under Centos 7

This paper is based on entos 7 installation configuration Nginx operation practice record collation. Configuration of EPEL Sources sudo yum install -y epel-release sudo yum -y update II. Installation of Nginx sudo yum install -y nginx After successful installation, the default website directory is: / usr/share/nginx/html The default configurat ...

Posted by patch2112 on Thu, 25 Apr 2019 15:21:36 -0700

HAProxy Profile and Configuration File Details (I)

Introduction to HAProxy HAProxy provides high availability, load balancing and application proxy based on TCP and HTTP, which is suitable for handling seven-tier data requests of high-load sites. Similar proxy services can shield internal real servers from attacks. HAProxy features and advantages: 1. Supporting primary SSL while supporting ...

Posted by wgordonw1 on Wed, 17 Apr 2019 09:36:34 -0700

Running DJango on IOS

Django is python's web framework, which can be used to build websites or as a backstage for web applications. Usually Django is started from the command line. Using DJango in ios needs to start from the program through code. In addition, DJango needs a certain time to start. After starting, it needs to notify the interface thread. 1. Install D ...

Posted by allyse on Thu, 11 Apr 2019 17:18:31 -0700

Talk about ActionsLog of reactor-netty

order This paper mainly studies Actor-netty's AccesssLog. Open access log For spring boot applications using tomcat, you can turn on server.tomcat.accesslog.enabled=true For spring boot applications using jetty, you can turn on server.jetty.accesslog.enabled=true For spring boot applications using undertow, you can turn on server.undertow.acce ...

Posted by Hypnos on Thu, 04 Apr 2019 11:45:31 -0700