Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 23 lines (17 sloc) 388 Bytes
#!/bin/bash
#
# Generate a self signed certificate
#
# Self-signed certificate for development laptops
# -----------------------------------------------
cat > data.conf << EOF
IT
IT
IT
IT
IT
IT
yes
EOF
# Everything in one line
$JAVA_HOME/bin/keytool -genkey -keyalg RSA -alias selfsigned -keystore /opt/certs/keystore.jks -storepass password -validity 360 -keysize 2048 < data.conf