Skip to content

Instantly share code, notes, and snippets.

View amolkahat's full-sized avatar
🌄
Working from home

Amol Kahat amolkahat

🌄
Working from home
View GitHub Profile
@amolkahat
amolkahat / satellite_cert_generator.sh
Last active September 3, 2018 09:56 — forked from ntkathole/satellite_cert_generator.sh
Script to generate certificates for satellite server
country=IN
state=Maharashtra
locality=Pune
organization=redhat
organizationalunit=QE
commonname=$(hostname)
openssl genrsa -out rootCA.key 2048
openssl req -x509 -new -nodes -key rootCA.key -sha256 -days 1024 -out rootCA.pem -subj "/CN=CA Cert/O=$organization/OU=$organizationalunit"
openssl req -new -newkey rsa:2048 -nodes -keyout server.key -out server.csr -subj "/C=$country/ST=$state/L=$locality/O=$organization/OU=$organizationalunit/CN=$commonname"