Monday, January 6, 2020

SSL Certificate on Tomcat server creation;




openssl req -new -sha256 -nodes -out \your-new-domain.com.csr -newkey rsa:2048 -keyout \your-new-domain.com.key -config <( cat <<-EOF [req] default_bits = 2048 prompt = no default_md = sha256 req_extensions = req_ext distinguished_name = dn [ dn ] C=US ST=New York L=Rochester O=Organization OU=Department/Domain emailAddress=your-administrative-address@your-awesome-existing-domain.com CN = www.your-new-domain.com [ req_ext ] subjectAltName = @alt_names [ alt_names ] DNS.1 = your-new-domain.com DNS.2 = www.your-new-domain.com EOF )


Submit the request over to some Authority like Entrust Authority for digital identity.



No comments: