cancel
Showing results for 
Search instead for 
Did you mean: 

AWS as Vitualization Manager

Former Member
0 Kudos

I am no longer able to connect to AWS as a virtualization manager. I have also tried connecting using the LVM Trail from CAL. I get the following error.

Has anyone else had this problem ?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Which NetWeaver version are you using ?

it looks like an error for AWS certificate validation. Amazon updated their certificates validation process for HTTP requests. Please follow the steps below and import/update the AWS certificates:

  • copy the AWS certificates to the machine where LVM is running. Assume that you copy the certificates for your AWS account into /tmp. In our case, we have three certificate files, symantec.cer, us-west-1.cer and verisign.cer
  • $cd /usr/sap/<SID>/SYS/exe/jvm/linuxx86_64/sapjvm_<version>/sapjvm_<version>/jre/lib/security  (please adjust the directory path according to your installation)
  • ../../bin/keytool -importcert -trustcacerts -file /tmp/verisign.cer -keystore cacerts -alias "verisign"
  • ../../bin/keytool -importcert -trustcacerts -file /tmp/symantec.cer -keystore cacerts -alias "symantec"
  • ../../bin/keytool -importcert -trustcacerts -file /tmp/us-west-1.cer -keystore cacerts -alias "uswest"
  • restart LVM by running : su - <SID>adm; stopsap; startsap

Thanks