Add yourself to the docker
group to be able to run containers as non-root (see Post-install steps for Linux).
L2TP on its own is not secure enough, so we’ll need to pair this protocol with IPSec.
To establish an L2TP VPN connection from the Ubuntu command line, we must first install strongswan
and xl2tpd
We’re going to use StrongSwan for IPSec.
apt-get install strongswan xl2tpd -y
I'm running into the same issue. Using python venv I was able to get certbot working using pip.
Steps: Install virtualenv
pip install virtualenv --upgrade
Create a virtualenv
virtualenv -p /usr/bin/python2.7 certbot
# Download this files | |
- openssl.conf | |
- openssl-tsa.conf | |
- testing.txt | |
- tsaserial | |
# Generate CA Certificate | |
openssl req -new -newkey rsa:4096 -nodes -out ca.csr -keyout ca.key -config openssl.conf | |
openssl x509 -trustout -signkey ca.key -days 1461 -req -in ca.csr -out ca.pem |
This procedure is tested on Mac OS X 10.10.5 with Developpers tools installed (xCode).
PHP 5.6 installed with Homebrew.
Download the following files from Oracle website (yes, you need to create an account and accept terms):
config file at /home/dokku/.dokkurc/acl
export DOKKU_SUPER_USER=root
export DOKKU_ACL_USER_COMMANDS="help version mariadb:connect"
export DOKKU_ACL_PER_APP_COMMANDS="logs urls enter ps:rebuild ps:restart ps:stop ps:start git-upload-pack git-upload-archive config config:set git-receive-pack git-hook storage:list"
At the time of writing (december 2018), there aren’t any up-to-date and easy to apply guides on how to switch between different MySQL version on a Mac using Homebrew . Or at least, I didn’t find any.
So I picked up a few things here and there and finally managed to connect all the pieces of the puzzle. I hope this guide can help you and the future me. If anyone knows of a better way to accomplish this, I do hope they will share their insight :)
The basic idea here is that you need to install all MySQL versions one at a time and assign each its own data directory.
I am using Homebrew 1.8.5. (brew -v
)