I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| import java.awt.EventQueue; | |
| import java.io.*; | |
| import java.math.BigInteger; | |
| import java.util.ArrayList; | |
| import java.util.Random; | |
| import java.util.Scanner; | |
| /** | |
| * Quick and dirty implementation of the RSA algorithm |
| $ cat /etc/systemd/system/jenkins.service | |
| [Unit] | |
| Description=Jenkins - open source automation server | |
| Before=multi-user.target | |
| After=network-online.target | |
| [Service] | |
| ExecStart=/etc/init.d/jenkins start | |
| ExecStop=/etc/init.d/jenkins stop | |
| CapabilityBoundingSet=~CAP_SYS_PTRACE |
| # This is how you add a Jenkins slave | |
| # On master: | |
| sudo -u jenkins -H ssh-keygen | |
| # On slave | |
| adduser --system --group --home=/var/lib/jenkins-slave --no-create-home --disabled-password --quiet --shell /bin/bash jenkins-slave | |
| install -d -o jenkins-slave -g jenkins-slave /var/lib/jenkins-slave |