Posts

Showing posts from April, 2020

How To install SSL Certificate on WildFly for Windows

Welcome back to by personal blog. So today i'm going to share my knowledge about SSL implementation on Wild-fly for Windows . And also I assure that you will not find any problem in this blog post. However, if there is any mistake, please post the problem in the comment section. Assumed that I have certificate.pem and the key.pem only. Both two file has .pem extension. And I used OpenSSL commands to configure ssl certificate. You can use below link for OpenSSL. it will help you to configure OpenSSL on your windows machine. How to configure OpenSSL Step 01 : You need to create .p12 file by using above public certificate and  private key openssl pkcs12 -export -in (certificate.pem) -name (your_domain_name) -inkey (private_key.pem) -passin pass:(password) -out (output_file_name.p12) -passout pass:(password) openssl pkcs12 -export -in a235sdjg7235.pem -name xx.yy.com -inkey privatekey.pem -passin pass:asg32fj -out newcreatedcertificate.p12 -passout pass:asg32fj ...

How To install SSL Certificate on WildFly for CentOS 7

Image
Welcome back to by personal blog. So today i'm going to share my knowledge about SSL implementation on WildFly for CentOS7 . And also I assure that you will not find any problem in this blog post. However, if there is any mistake, please post the problem in the comment section. Assume that I have two certificate files and the key.pem only. As bellow image shows. Fist one is the root certificate and the other one is intermediate certificate. Both two file has .crt extention. And I used openssl comands to configure SSL certificate. Step 01: So first we need to convert our godaddy certificate to .pem format b using bellow command. openssl x509 -in (intermediatecertificate.crt) -out (outputfilename.pem) openssl x509 -in gd_bundle-g2-g1.cer -out godaddy.pem Step 02 : Now we create .p12 file by using above two certificates and the private key. Inhere we use root certifate and godaddy.pem file which we created at Step 01. openssl pkcs12 -export –in (rootcertificate.cr...