Questions tagged [self-signed-certificate]

Questions about self-signed SSL certificates, e.g. they will not validate in browsers and other systems with default SSL checking and key stores.

265 questions
1
vote
0 answers

Nifi - SSLError CertificateError - hostname 'dev.example.com' doesn't match 'nifi-node1'

I'm running 3 node docker cluster on a single host lets say dev.example.com I have followed https://nifi.apache.org/docs/nifi-docs/html/walkthroughs.html#creating-and-securing-a-nifi-cluster-w... but added every node into a seperate docker…
1
vote
2 answers

Trusting self signed certificate inside pod

In our company's internal network we have self-signed certificates used for applications that runs on DEV or staging environments. For our local machines it's already trusted because Active Directory provides that using Group Policy Objects. But in…
1
vote
1 answer

Azure AD: Does the app registration process takes time to register self-signed certificate?

I am creating an application in Azure tenant with Microsoft graph API. At the same time, I am also uploading a self-signed certificate for an application. The OAuth client can request an access token by providing the user assertion. User assertion…
1
vote
0 answers

k8s ingress self-signed certificate won't be accepted

I am trying to run microk8s on my local server and hosting nextcloud in it. However hosting of nextcloud itself works, the part with ingress is going to be pain in my neck. I run into HSTS problems and can't figure out why my self-signerd…
1
vote
0 answers

add a hostname verifier to DownloadManger

I want to download an apk file from https://url . when i first tried downloading , it said java.security.cert.CertPathValidatorException: Trust anchor for certification path not found. so i searched internet and addd , network_secuirty_config.xml…
1
vote
1 answer

Genearte ENCRYPTED PRIVATE KEY from PRIVATE KEY

I got .key and .crt file form DigiCert. Content of my xyz_com.key file is PRIVATE KEY. head xyz_com.key -n2 -----BEGIN PRIVATE KEY----- MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDqFD0YmmeKyVbg Before that I am using self signed certificate,…
Manthan Tilva
  • 3,135
  • 2
  • 17
  • 41
1
vote
1 answer

Create React App: HTTPS and self signed certificate

I'm trying to run a react app created with create-react-app template in HTTPS mode: set SSL_CRT_FILE=.cert/server.pfx&&set HTTPS=true&&npm start I created this certificate using Power Shell. Although there are lot's of explanations how to run react…
Nikita Fedorov
  • 790
  • 1
  • 12
  • 40
1
vote
1 answer

Setting custom CA cert with cloud_proxy_sql

I'm trying to use GCP's cloud_proxy_sql via one of our proxy server with custom CA signed certificates. I tried setting the cert using the config custom_ca_certs_file of gcloud config. Also double checked if the ca cert is set, using the command…
1
vote
3 answers

How to make browser to accept /trust Self Signed Cert

How do i make my local server to accept self signed certificate and remove the red line across HTTPS. I used the guide found on DigitalOcean on how to setup the self signed SSL. I just need to make this work. PS. i also tried to check other stack…
Mr. Kenneth
  • 384
  • 1
  • 2
  • 14
1
vote
0 answers

x509: certificate signed by unknown authority problem when registering a runner even with self-certificate

I have a server running on linux OS. Docker is installed along with a container on which gitlab is installed too. Everything is working fine. I intend to install and register a runner on a windows 10 to use through my CI CD process (the reason is…
1
vote
1 answer

How to configure(SSL) self signed certificate in Alfresco 6.2 test environment after docker based installation?

I have installed Alfresco 6.2 using docker based installation and it's working fine with http. Now, I have to run same set-up on https and i have to apply self signed certificate for this. Can someone please provide the steps to generate this…
1
vote
2 answers

Testing TLS in localhost: Certificate is invalid for given domain

I am trying to test SSL with a spring boot app running on my personal computer. I generated a PKCS12 certificate using keytool with the following parameters. CN = localhost:8080 OU = localhost:8080 O = localhost:8080 L = Galle S = Galle C = LK I…
1
vote
0 answers

Android: java.security.cert.CertPathValidatorException: Trust anchor for certification path not found

I'm using a private CA certificate that is self-signed. I've imported the certificate to my Android device. I'm able to see it under Settings -> Security -> Trusted Credentials -> User. I'm able to reach a website that is using the certificate…
1
vote
1 answer

Self signed SSL certificate generated by New-SelfSignedCertificateEx isn't trusted in Ubuntu

I used this tool in this link to generate a self-signed certificate for a Windows webserver. The command to generate the cert is like following New-SelfSignedCertificateEx -Subject "CN=192.168.56.111" -SAN "192.168.56.111" -IsCA $true -EKU "Server…
1
vote
0 answers

How to create certificate with private and public key and also stored in windows store using NodeJs?

I looked into many npm packages but I can't get any better solutions. I found one package which is selfsigned. var selfsigned = require('selfsigned'); var attrs = [{ name: 'commonName', value: 'contoso.com' }]; var pems = selfsigned.generate(attrs,…