This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[TOC] | |
> additional important docs: [config references](https://github.com/docker/notary/tree/master/docs/reference) | |
## 0) Setting up DB(s) | |
1. Simply boot up two database instances (`i1` for server and `i2` for signer). | |
2. create a database named `notaryserver` on `i1` and create `notarysigner` on `i2`. | |
3. run SQL commands from [here](https://github.com/docker/notary/tree/master/migrations) | |
4. later configure the database urls in the `server-config.json` and `signer-config.json` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# debugging AWS bastion connectivity issue | |
Sat. Nov 11 2017 | |
Today I was setting up a public subnet bastion server to access instances on my private subnet. I was able to ssh on to the bastion server but was unable to establish ssh connection from the bastion instance to the private instance. | |
Any suggestions? And what could I do to improve or facilitate debugging similar problems in the future? | |
Here's my setup in a concise form: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! ruby | |
require 'optparse' | |
require 'fileutils' | |
# Usage: pluralsight-course-dl.rb --input file.txt --output ~/Videos -u username -p password | |
# file.txt contains a list of urls that youtube-dl can donwload. | |
Options = {} |
OlderNewer