I need to update my certificate but also need to change the O (organization) item
All supported releases
To change the entries from the existing certificate, you would need to add the following switch to the keytool -certreq command:
-dname "CN=hostname, OU=PerformanceCenter, O=PerformanceManagement, L=CityName, S=NY, C=US"
Either enter the same entries as already exist or add a new entry for the ones you want to overwrite.
To list the existing DNAME:
<pathTo>/keytool -list -keystore <pathTo>/keystore -alias <alias> -v | grep "Owner"
You may see multiple Owners, the first one contains the DN of the certificate for use in the resolution above.
Change fields as noted.