{"id":5027,"date":"2013-02-10T09:41:08","date_gmt":"2013-02-10T13:41:08","guid":{"rendered":"http:\/\/onlineappsdba.com\/?p=5027"},"modified":"2017-03-24T09:05:24","modified_gmt":"2017-03-24T13:05:24","slug":"ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic","status":"publish","type":"post","link":"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/","title":{"rendered":"SSL in WebLogic Server &#8211; Part II : Create KeyStore, generate CSR, Import CERT and configure KeyStore with WebLogic"},"content":{"rendered":"<p>This is part II of <strong>SSL in WebLogic Server<\/strong> that covers <strong>creating KeyStore<\/strong>, <strong>generating Certificate Signing Request (CSR)<\/strong>, <strong>importing Certificate in KeyStore<\/strong>, and finally using this<strong> keyStore with WebLogic Server<\/strong>. I strongly recommend to go through Part I <a href=\"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/05\/ssl-in-weblogic-ca-keystore-identity-trust-store-things-you-must-know-part-i\/\">&#8220;<strong>SSL in WebLogic KeyStore, Identity &amp; Trust Store, Root and Intermediate CA<\/strong>&#8220;<\/a><\/p>\n<p>&nbsp;<\/p>\n<p><strong>High Level Steps to configure SSL in WebLogic Server are<\/strong><\/p>\n<p><strong>1.<\/strong> Create Java KeyStore (JKS) and generate key<br \/>\n<strong>2.<\/strong> Generate Certificate Signing Request \u00a0(CSR)<br \/>\n<strong>3.<\/strong> Send this certificate request file to CA to issue certificate<br \/>\n<strong>4.<\/strong> Import Root CAs certificate<br \/>\n<strong>5.<\/strong> Import intermediate CAs certificate (If any)<br \/>\n<strong>6.<\/strong> Import certificate issued by CA<br \/>\n<strong>7.<\/strong> List content of keystore<br \/>\n<strong>8.<\/strong> Configure SSL in WebLogic Server<br \/>\n&#8212;<strong>8.1<\/strong> Change KeyStore type in WebLogic Server<br \/>\n&#8212;<strong>8.2<\/strong> Specify path of Identity KeyStore and Trust KeyStore<br \/>\n&#8212;<strong>8.3<\/strong> Specify Private Key Alias in WebLogic Server<br \/>\n&#8212;<strong>8.4<\/strong> Enable SSL in WebLogic Server<br \/>\n<strong>9.<\/strong> Test SSL in WebLogic Server<\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"text-decoration: underline;\"><strong>Low Level Steps to configure SSL in WebLogic Server<\/strong><\/span><\/p>\n<p><strong>1. Create Java KeyStore and generate key<\/strong>: First step is to create KeyStore and private key (<span style=\"color: #ff0000;\">If you already have a keyStore then you can use that to generate key<\/span>)<\/p>\n<p>keytool -genkey -alias <strong>myAlias<\/strong> -keyalg RSA -keysize 2048 -dname &#8220;CN=serverName, OU=MyOrganizationUnit, O=myOrganization,L=myLocation, ST=myState, C=myCountry&#8221; -keypass [privat_key_password] -keystore [keystore_name].jks -storepass [keystore_password]<\/p>\n<p>____<\/p>\n<p><span style=\"color: #ff0000;\">[aiam@innowave21 ~]$ keytool -genkey -alias innowave21 -keyalg RSA -keysize 2048 -dname &#8220;CN=innowave21.focusthread.com, OU=DBATeam, O=onlineAppsDBA, L=London, ST=London,C=GB&#8221; -keypass welcome1 -keystore innowave21.jks -storepass welcome1<\/span><\/p>\n<p><span style=\"color: #ff0000;\">[aiam@innowave21 ~]$ ls *.jks<\/span><br \/>\n<span style=\"color: #ff0000;\">innowave21.jks<\/span><\/p>\n<p>_____<\/p>\n<p>Note:<br \/>\n<strong>a)<\/strong> This step will create Keystore [keystore_name].jks<br \/>\n<strong>b)<\/strong> keytool utility is a Key and Certificate Management Tool and is available in $JAVA_HOME\/bin<br \/>\n<strong>c)<\/strong> -genkey option signifies that we are generating private keys<br \/>\n<strong>d)<\/strong> -alias myAlias : Each entry in KeyStore (JKS) is represented by Alias. <span style=\"color: #ff0000;\">When you import signed certificate (issued by CA) in KeyStore then you should use same alias (used during key generation)<\/span><br \/>\n<strong>e)<\/strong> -keyalg RSA : is algorithm used to generate keyPair (default algorithm is DSA)<br \/>\n<strong>f)<\/strong> -keysize 2048 : is size of key used to generate private key<br \/>\n<strong>g)<\/strong> -dname : represents name of server to which certificate key is created. If you are generating keys for server innowave21.focusthread.com then use <strong>CN=innowave21.focusthread.com, OU=&#8230;&#8230;&#8230;<\/strong><\/p>\n<p><strong>2. Generate Certificate Signing Request: <\/strong>Next step it so generate Certificate Signing Request (CSR) for Key (with alias innowave21) generated in previous step<\/p>\n<p>keytool -certreq -alias myAlias -keystore\u00a0[keystore_name].jks \u00a0-storepass [keystore_password]\u00a0-file [certificate_request].csr<\/p>\n<p>_____<\/p>\n<p><span style=\"color: #ff0000;\">keytool -certreq -alias innowave21 -keystore innowave21.jks -storepass welcome1 -file innowave21.csr<\/span><\/p>\n<p><span style=\"color: #ff0000;\">[aiam@innowave21 ~]$ ls *csr<\/span><br \/>\n<span style=\"color: #ff0000;\">innowave21.csr<\/span><\/p>\n<p>_____<br \/>\n<strong>a)<\/strong> This step will create certificate signing request file<br \/>\n<strong>b)<\/strong> -certreq signifies that we are generating certificate signing request file<br \/>\n<strong>c)<\/strong> -alias myAlias must be same as one used during key generation in previous step<\/p>\n<p>&nbsp;<\/p>\n<p><strong>3. Send this certificate request file to Certifying Authority (CA) to issue certificate<\/strong><\/p>\n<p><strong>4. Import Root CA certificate.<\/strong><br \/>\nOnce you receive certificate for your server then you must import certificate of Authority issued the certificate (before importing certificate issued by CA)<\/p>\n<p><strong>keytool -import -trustcacerts -alias rootcacert -keystore [keystore_name].jks -file rootCA.cer -storepass [keyStorePassword]<br \/>\n<\/strong><\/p>\n<p><strong>a)<\/strong> This step will import certificate of Certifying Authority (CA) with alias as rootcacert in KeyStore<br \/>\n<strong>b)<\/strong> -import signifies that we are importing certificate in keystore<br \/>\n<strong>c)<\/strong> -trustcacerts\u00a0signifies that we are importing <strong>trusted certificates<\/strong> (<span style=\"color: #ff0000;\">In this case KeyStore is acting as trust Store, remember <strong>trust store<\/strong> and<strong> identity store<\/strong> discussed in part I ??<\/span>). If you don&#8217;t use option -trustcacerts then it will try to import certificate as Identity Certificate<br \/>\n<strong>d)<\/strong> -alias must be <strong>different<\/strong>\u00a0from one used during key generation<br \/>\n<strong>e)<\/strong> -file rootCA.cer is file that contains certificate of Root Certifying Authority (r<span style=\"color: #ff0000;\">emember Root and Intermediate Certifying Authority discussed in part I ??<\/span>\u00a0)<\/p>\n<p>&nbsp;<\/p>\n<p><strong>5. Import intermediate CA (If Any) certificate<\/strong><\/p>\n<p>If there are more than one Certifying Authority (CA) then you must import any intermediate CA<\/p>\n<p><strong>keytool -import -trustcacerts -alias intermediatecacert -keystore [keystore_name].jks -file intermediateCA.cer -storepass [keyStorePassword]<\/strong><\/p>\n<p><strong>a)<\/strong> -import signifies that we are importing certificate in keystore<br \/>\n<strong>b)<\/strong> -trustcacerts\u00a0signifies that we are importing\u00a0<strong>trusted certificates<\/strong>\u00a0(In this case KeyStore is acting as trust Store, remember\u00a0<strong>trust store<\/strong>\u00a0and<strong>\u00a0identity store<\/strong>\u00a0discussed in part I ??). If you don&#8217;t use option -trustcacerts then it will try to import certificate as Identity Certificate<br \/>\n<strong>c)<\/strong> -alias must be\u00a0<strong>different<\/strong>\u00a0from one used during key generation or while importing root CA<br \/>\n<strong>d)<\/strong> -file intermediateCA.cer is file that contains certificate of Intermediate Certifying Authority<\/p>\n<p>&nbsp;<\/p>\n<p><strong>6. Import Server Certifucate<\/strong><\/p>\n<p>Next step is to import Server Certifictae<\/p>\n<p><strong>keytool -import -alias myAlias -keystore [keystore_name].jks -file servercert.cer -keypass [keyPassword]\u00a0-storepass [keyStorePassword]<\/strong><\/p>\n<div>\n<p><strong>a)<\/strong> -import signifies that we are importing certificate in keystore<br \/>\n<strong>b)<\/strong> -alias myAlias <strong>should match<\/strong> with Alias used during generation of Key<br \/>\n<strong>c)<\/strong> -file servercert.cer is file that contains certificate of server issue by CA<\/p>\n<div><\/div>\n<\/div>\n<div><strong>7. List content of keystore<\/strong><\/div>\n<p>If you want to view certificate stored in KeyStore then you can use option -list like below<\/p>\n<p><strong>keytool -list -v \u00a0-keystore [keystore_name].jks -storepass [keyStorePassword]<\/strong><\/p>\n<p>&nbsp;<\/p>\n<p><strong>8. Configure SSL in WebLogic Server<\/strong><\/p>\n<p>In steps above <strong>Trust Store<\/strong> (<span style=\"color: #ff0000;\">store containing Root and Intermediate CA<\/span>) and<strong> Identity Store<\/strong> (<span style=\"color: #ff0000;\">store containing Server Certificate<\/span>) are same i.e. \u00a0<strong>[keystore_name].jks . <\/strong><\/p>\n<p><strong>8.1<\/strong> Change KeyStore type from &#8220;<strong>Demo Identity and Demo Trust&#8221;<\/strong> to &#8220;<strong>Custom Identity and Custom Trust<\/strong>&#8221;<\/p>\n<p>WebLogic Server Console -&gt; Name of Server (for which you wish to configure SSL) -&gt; Configuration -&gt; KeyStores -&gt; change (next to Key Stores)<\/p>\n<p><a href=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_7.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-5031\" title=\"ssl_7\" src=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_7.png\" alt=\"\" width=\"388\" height=\"334\" srcset=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_7.png 388w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_7-300x258.png 300w\" sizes=\"auto, (max-width: 388px) 100vw, 388px\" \/><\/a><\/p>\n<p><strong>8.2 Specify path of Identity KeyStore and Trust KeyStore<\/strong><\/p>\n<p><span style=\"color: #ff0000;\">In steps above Trust Store (store containing Root and Intermediate CA) and Identity Store (store containing server certificate) are same i.e. \u00a0<strong>[keystore_name].jks <\/strong>(innowave21.jks in my case)<\/span><strong>.<\/strong><\/p>\n<ul>\n<li>Specify passphrase as password used for KeyStore<\/li>\n<\/ul>\n<p><a href=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_8.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-5032\" title=\"ssl_8\" src=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_8.png\" alt=\"\" width=\"450\" height=\"576\" srcset=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_8.png 450w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_8-234x300.png 234w\" sizes=\"auto, (max-width: 450px) 100vw, 450px\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<p><strong>8.3 Specify Private Key Alias in WebLogic Server<\/strong><\/p>\n<p>Enter the Alias you used during creation of certificate request and password of KeyStore<\/p>\n<p>WebLogic Server Console -&gt; Name of Server (for which you wish to configure SSL) -&gt; Configuration -&gt; SSL<\/p>\n<p>&nbsp;<\/p>\n<p><a href=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_9.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-5035\" title=\"ssl_9\" src=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_9.png\" alt=\"\" width=\"446\" height=\"511\" srcset=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_9.png 446w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_9-261x300.png 261w\" sizes=\"auto, (max-width: 446px) 100vw, 446px\" \/><\/a><\/p>\n<p><strong>8.4 Enable SSL in WebLogic Server\u00a0<\/strong><\/p>\n<p>Finally enable SSL in WebLogic Server ;\u00a0WebLogic Server Console -&gt; Name of Server (for which you wish to configure SSL) -&gt; Configuration -&gt; General<\/p>\n<p>&nbsp;<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" title=\"Enable SSL in WebLogic Server\" src=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_2.png\" alt=\"\" width=\"323\" height=\"618\" \/><\/p>\n<p>&nbsp;<\/p>\n<p><strong>9. Test SSL in WebLogic Server\u00a0<\/strong><\/p>\n<p>https:\/\/:<\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"text-decoration: underline;\"><strong>References<\/strong><\/span><\/p>\n<ul>\n<li><a href=\"http:\/\/docs.oracle.com\/javase\/6\/docs\/technotes\/tools\/windows\/keytool.html\">Keytool &#8211; Key and Certificate Management Tool<\/a><\/li>\n<li><a href=\"http:\/\/docs.oracle.com\/cd\/E23943_01\/web.1111\/e13707\/ssl.htm#SECMG384\">Configure SSL in WebLogic Server<\/a><\/li>\n<li>My Oracle Support Note : 1230333.1 How to Create a Java Keystore via Keytool in FMW 11g<\/li>\n<li><a href=\"http:\/\/docs.oracle.com\/cd\/E23943_01\/apirefs.1111\/e13952\/taskhelp\/security\/ConfigureKeystoresAndSSL.html\">Configure Key Store<\/a><\/li>\n<\/ul>\n<p>Did you get a chance to download Free Interview Questions related to WebLogic? If not, download it here\u00a0<a href=\"http:\/\/k21academy.com\/weblogic-interview-question\">http:\/\/k21academy.com\/weblogic-interview-question<\/a><\/p>\n<p>&nbsp;<\/p>\n<p><a href=\"http:\/\/k21academy.com\/weblogic-interview-question\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-large wp-image-11731\" src=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/weblogic-banner-1024x154.png\" alt=\"weblogic banner\" width=\"1024\" height=\"154\" srcset=\"https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/weblogic-banner-1024x154.png 1024w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/weblogic-banner-150x23.png 150w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/weblogic-banner-300x45.png 300w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/weblogic-banner-80x12.png 80w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/weblogic-banner-220x33.png 220w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/weblogic-banner-250x38.png 250w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/weblogic-banner-280x42.png 280w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/weblogic-banner-510x77.png 510w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/weblogic-banner-750x113.png 750w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/weblogic-banner-975x147.png 975w, https:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/weblogic-banner-1190x179.png 1190w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/p>\n<div style=\"padding: 15px; margin-bottom: 15px; background: #ffffde; border: 1px solid #ddd; width: 85%;\" align=\"center\">\n<h2 align=\"left\">Learn Oracle Weblogic Server Administration<\/h2>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>If you want to learn Oracle WebLogic Server Administration with tons of additional features like Live Interactive Sessions, Life time access to membership portal, Free re-taking sessions for next one year, Dedicated Machine to practice, On Job Support and much more<\/p>\n<p><a href=\"https:\/\/k21academy.com\/weblogic\">Click here to\u00a0know more<\/a><\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>This is part II of SSL in WebLogic Server that covers creating KeyStore, generating Certificate Signing Request (CSR), importing Certificate [&hellip;]<\/p>\n","protected":false},"author":115,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[39,217],"tags":[],"class_list":["post-5027","post","type-post","status-publish","format-standard","hentry","category-ssl","category-weblogic"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>SSL in WebLogic Server - Part II : Create KeyStore, generate CSR, Import CERT and configure KeyStore with WebLogic -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SSL in WebLogic Server - Part II : Create KeyStore, generate CSR, Import CERT and configure KeyStore with WebLogic -\" \/>\n<meta property=\"og:description\" content=\"This is part II of SSL in WebLogic Server that covers creating KeyStore, generating Certificate Signing Request (CSR), importing Certificate [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/\" \/>\n<meta property=\"article:published_time\" content=\"2013-02-10T13:41:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-03-24T13:05:24+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_7.png\" \/>\n<meta name=\"author\" content=\"Masroof Ahmad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Masroof Ahmad\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/\",\"url\":\"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/\",\"name\":\"SSL in WebLogic Server - Part II : Create KeyStore, generate CSR, Import CERT and configure KeyStore with WebLogic -\",\"isPartOf\":{\"@id\":\"https:\/\/onlineappsdba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_7.png\",\"datePublished\":\"2013-02-10T13:41:08+00:00\",\"dateModified\":\"2017-03-24T13:05:24+00:00\",\"author\":{\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\"},\"breadcrumb\":{\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/#primaryimage\",\"url\":\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_7.png\",\"contentUrl\":\"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_7.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineappsdba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SSL in WebLogic Server &#8211; Part II : Create KeyStore, generate CSR, Import CERT and configure KeyStore with WebLogic\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/onlineappsdba.com\/#website\",\"url\":\"https:\/\/onlineappsdba.com\/\",\"name\":\"\",\"description\":\"Oracle Implementation &amp; Training Experts\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/onlineappsdba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb\",\"name\":\"Masroof Ahmad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g\",\"caption\":\"Masroof Ahmad\"},\"url\":\"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SSL in WebLogic Server - Part II : Create KeyStore, generate CSR, Import CERT and configure KeyStore with WebLogic -","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/","og_locale":"en_US","og_type":"article","og_title":"SSL in WebLogic Server - Part II : Create KeyStore, generate CSR, Import CERT and configure KeyStore with WebLogic -","og_description":"This is part II of SSL in WebLogic Server that covers creating KeyStore, generating Certificate Signing Request (CSR), importing Certificate [&hellip;]","og_url":"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/","article_published_time":"2013-02-10T13:41:08+00:00","article_modified_time":"2017-03-24T13:05:24+00:00","og_image":[{"url":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_7.png","type":"","width":"","height":""}],"author":"Masroof Ahmad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Masroof Ahmad","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/","url":"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/","name":"SSL in WebLogic Server - Part II : Create KeyStore, generate CSR, Import CERT and configure KeyStore with WebLogic -","isPartOf":{"@id":"https:\/\/onlineappsdba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/#primaryimage"},"image":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/#primaryimage"},"thumbnailUrl":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_7.png","datePublished":"2013-02-10T13:41:08+00:00","dateModified":"2017-03-24T13:05:24+00:00","author":{"@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb"},"breadcrumb":{"@id":"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/#primaryimage","url":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_7.png","contentUrl":"http:\/\/onlineappsdba.com\/wp-content\/uploads\/2013\/02\/ssl_7.png"},{"@type":"BreadcrumbList","@id":"https:\/\/onlineappsdba.com\/index.php\/2013\/02\/10\/ssl-in-weblogic-server-part-ii-create-keystore-generate-csr-import-cert-and-configure-keystore-with-weblogic\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineappsdba.com\/"},{"@type":"ListItem","position":2,"name":"SSL in WebLogic Server &#8211; Part II : Create KeyStore, generate CSR, Import CERT and configure KeyStore with WebLogic"}]},{"@type":"WebSite","@id":"https:\/\/onlineappsdba.com\/#website","url":"https:\/\/onlineappsdba.com\/","name":"","description":"Oracle Implementation &amp; Training Experts","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/onlineappsdba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/909a876ed58d400faf82caf81d61bfdb","name":"Masroof Ahmad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineappsdba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/10f9db7bdbbd7f9ccfbe9b2d208e5978fc28315e9c704383e639a926ea0fce5f?s=96&d=mm&r=g","caption":"Masroof Ahmad"},"url":"https:\/\/onlineappsdba.com\/index.php\/author\/masroof\/"}]}},"_links":{"self":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/5027","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/users\/115"}],"replies":[{"embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/comments?post=5027"}],"version-history":[{"count":0,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/posts\/5027\/revisions"}],"wp:attachment":[{"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/media?parent=5027"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/categories?post=5027"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineappsdba.com\/index.php\/wp-json\/wp\/v2\/tags?post=5027"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}