Client error occurred while calling UploadServerCertificate operation (SignatureDoesNotMatch)

Trying to install ssl multidomain certificate over AWSCLI using OpenSSL, this is Comodo PositiveSSL Multidomain certificate.

I followed all the instructions on aws tutorials and on the web. I spent about 2 hours with Comodo tech support making sure I had the correct files, etc., re-issuing certificates, etc. and so far no luck.

I keep getting this error when trying to download using the command here and here and there is not much information about this error.

A client error (SignatureDoesNotMatch) occurred when calling the UploadServerCertificate operation: Signature not yet current: 20150704T040234Z is still later than 20150704T032257Z (20150704T030757Z + 15 min.)

Does anyone know why this is happening?

+3


source to share


2 answers


Make



sudo ntpdate -s time.nist.gov

      

+12


source


I was trying to pull RI and Autoscaling details from my AWS account using Boto3 and it gave me the following error:

botocore.exceptions.ClientError: An error occurred (SignatureDoesNotMatch) when calling the DescribeAutoScalingGroups operation: Signature not yet current: 20170206T130536Z is still later than 20170206T130524Z (20170206T130024Z + 5 min.)

      



My instance timing was wrong and because of this I am giving an error. The execution of the command below is fixed:

    root@ip-x-x-x-x:~# sudo ntpdate -s time.nist.gov

      

0


source







All Articles