Questions tagged [cacerts]

78 questions
0
votes
0 answers

Self signed certificate in keystore not working

I am runnig a Gitlab and a Jenkins server as Docker Containers. I am trying to add my Gitlab server to my Jenkins server using the Gitlab Plugin. I've created a self signed certificate for Gitlab and added it to the java keystore in Jenkins with…
klukama
  • 25
  • 8
0
votes
0 answers

Error while loading cacerts in java project-Caused by: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty

I am trying to access one HTTPS url from my local for which I have added the certificate in my cacerts using below command from cmd. keytool -import -file "C:\Users\loren\customerapi.cer" -keystore "C:\Program…
Loren
  • 320
  • 1
  • 10
  • 25
0
votes
0 answers

Certificate error "javax.net.ssl.SSLHandshakeException: PKIX path building failed"

I'm using JSOUP to connect to a web page and get some content via web scraping method. Everything seems to work fine for months but recently this error started to appear. ERROR: javax.net.ssl.SSLHandshakeException: PKIX path building failed:…
Kevin Valdez
  • 359
  • 4
  • 17
0
votes
1 answer

need to check which cacerts and jks, Application deployed on weblogic programs is using from backend [linux Server]

In my weblogic console, i am seeing location of identity, truststore and cacerts. But there are some other cacerts which Apps running in Weblogic is using. Is there any command in linux to check which all cacerts and keystore location is in use. As…
0
votes
1 answer

proper use of SSL certificate with Soup in javascript

I would like to ask how to properly use Soup in gnome-shell extension with a certificate on the client site. The snippet of my code looks like this: const Soup = imports.gi.Soup; const GObject = imports.gi.GObject; const Gio = imports.gi.Gio; const…
smurfik
  • 3
  • 2
0
votes
0 answers

How to manage certificates in migration case when we are migrating from old url to new url

I will list down point wise scenario . We have one app is running in current production say on URL 1 . Now we are setting up our app to new infra on new URL say URL2 . We have over 50k+ customers using our old url and we dont want to ask to our…
Deepak
  • 2,287
  • 1
  • 23
  • 30
0
votes
0 answers

API or any source to download all CA certificates

Hope you are doing fine! My question is on CA trusted certificate list. I have a middle-ware written in Java Spring with Apache Camel, the interface are connecting between different source and target system using web API ( can expect both sync and…
0
votes
2 answers

How to get ca certificates for python requests?

I am trying to run a python script that connects to myhost.comapny.com:8443 but it is giving SSL certificate error while running (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self…
user124
  • 423
  • 2
  • 7
  • 26
0
votes
1 answer

Why Python isn't loading the ca certificate?

I've added a bundle certificate to python default file >>> import ssl; print(ssl.get_default_verify_paths()) DefaultVerifyPaths(cafile='/usr/lib/ssl/cert.pem', capath='/usr/lib/ssl/certs', openssl_cafile_env='SSL_CERT_FILE',…
Gigi
  • 353
  • 3
  • 10
0
votes
0 answers

PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested

I have the following java code to send a POST request. When executed it is returning the following error: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested…
jkfe
  • 549
  • 7
  • 29
0
votes
1 answer

x509 certificate signed issue in terraform planing

terraform throws the following error in logs in debug mode when planing terraform. I use aws cli 2.0 on a windows machine. The error comes up only for aws west region deployment. the east is working fine. I tried updating the certificate chain in…
0
votes
1 answer

Ingress client certificate authenticate requires CA certificate to be stored in secret?

I want to enable client-certificate authentication in my AKS cluster and I have a basic question which I just don't seem to understand. As per the docs, ingress requires the CA certificate to be stored in a secret. My question is: Assuming that I…
0
votes
0 answers

Execute CURL command with CA CERT file in JAVA

I have an http POST request which I need to send from my JAVA webservice to a job queueing service. My request in the following CURL format works: curl --cacert ca-cert.txt -u user:password -H "content-type:application/json" -X POST -d…
Uri Shapira
  • 369
  • 1
  • 2
  • 17
0
votes
0 answers

How can I specify a cacerts file in gradle jibDockerBuild?

I have a spring boot app from which I am making an https call to another application whose certificate I need to add to my cacerts in order for the connection to succeed. Otherwise, it throws the following Exception Caused by:…
horatius
  • 784
  • 1
  • 12
  • 30
0
votes
1 answer

Java 14 javax.net.ssl.SSLException occurs only on some computers with identical cacerts files

I have a Java 14 application where some computers throw a javax.net.ssl.SSLHandshakeException or javax.net.ssl.SSLException when trying to access https://nomads.ncep.noaa.gov/cgi-bin/filter_gfs_1p00.pl. It works fine for me, and all computers are…
Andrew L
  • 243
  • 1
  • 11