Home : Digital Asset Management : Programming OpenEdit : Certificates
Certificates
go to godaddy.com Order Quick SSL about 29/year 1. Go to the Go Daddy home page and click "My Account." 2. Enter your log in name (or customer number) and password, then click "Secure Login," which will take you to the Account Manager where you may manage your products and services. Go to Certificate list and click on "Setup Certificate" then click on Manager Certificate Log back in with username password: 11389894 godaddy or burkey12 The SSL Page will also have you log in with username 11389894 / burkey12 Create CSR on Tomcat Run this script: /home/cburkey/httpd/cert/1certgen.sh #!/bin/bash DOMAIN="demo.openendit.org" ALIAS="demo" rm out/private.keystore echo "step 1 - generate new key for $DOMAIN" keytool -genkey -dname "cn=demo.openedit.org, ou=OpenEdit, o=OpenEdit, c=US" -keyalg RSA -alias $ALIAS -storepass qazwsxedc -keypass qazwsxedc -keystore out/private.keystore #echo "step 2 This is a one time password change try entering qazwsxedc" #keytool -storepasswd -storepass changeit -new qazwsxedc -keystore private.keystore echo "step 3 - Generate key to send to GoDaddy. If password error then run step 2 to change the store password" keytool -certreq -alias $ALIAS -storepass qazwsxedc -keypass qazwsxedc -keystore out/private.keystore echo "OpenEdit GoDaddy account id is 11389894 pw is godaddy and SSL login is godaddy1 select tomcat as the server type"
