{"id":130,"date":"2019-07-08T16:34:40","date_gmt":"2019-07-08T16:34:40","guid":{"rendered":"https:\/\/www.ssls.com\/knowledgebase\/?p=130"},"modified":"2019-07-29T15:27:36","modified_gmt":"2019-07-29T15:27:36","slug":"how-to-generate-a-csr-code-on-glassfish","status":"publish","type":"post","link":"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/","title":{"rendered":"How to generate a CSR code on GlassFish"},"content":{"rendered":"<p><span style=\"font-weight: 400;\">GlassFish uses keystores (<\/span><strong>.jks<\/strong><span style=\"font-weight: 400;\"> files) to store certificates and private keys. For Glassfish, it is recommended to generate a CSR using the <\/span><strong>keytool<\/strong><span style=\"font-weight: 400;\"> command line utility.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">First, a new keystore needs to be created. The following command can be used to generate a new keystore with a private key:<\/span><\/p>\n<p><em><strong>keytool -genkey -alias <\/strong><strong>myalias<\/strong><strong> -keyalg <\/strong><strong>RSA<\/strong><strong> -keysize <\/strong><strong>2048<\/strong><strong> -keystore <\/strong><strong>mykeystore<\/strong><strong>.jks<\/strong><\/em><\/p>\n<p><span style=\"font-weight: 400;\">It is recommended to replace <\/span><em><strong>myalias<\/strong><\/em><span style=\"font-weight: 400;\"> and <\/span><em><strong>mykeystore<\/strong><\/em><span style=\"font-weight: 400;\"> with the alias and filename of your choice.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">You will be prompted to set a password for this keystore (at least 6 characters are required). <\/span><strong>Note<\/strong>: The keystore password and private key password must be the same as the Glassfish master password for the domain.<span style=\"font-weight: 400;\"> The default master password is \u201c<em>changeit<\/em>\u201d and can be changed by running the <\/span><em><strong>change-master-password <\/strong><\/em><span style=\"font-weight: 400;\">subcommand of the <\/span><em><strong>asadmin<\/strong><\/em><span style=\"font-weight: 400;\"> utility.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">After that keytool will ask you to fill out some contact details. Here are the fields that will need to be filled out:<\/span><\/p>\n<p><strong>What is your first and last name?<\/strong><span style=\"font-weight: 400;\"> (Common Name) <\/span><span style=\"font-weight: 400;\">&#8211;<\/span><span style=\"font-weight: 400;\"> this is where the domain needs to be specified. For <a href=\"https:\/\/www.ssls.com\/domain-type\/single-domain-ssl-certificates\">single-domain<\/a> or <a href=\"https:\/\/www.ssls.com\/ssl-certificates\/comodo-multi-domain-ssl\">multi-domain<\/a> certificates, you can enter <em>example.com<\/em> (or <em>sub.example.com<\/em> for a subdomain). For <a href=\"https:\/\/www.ssls.com\/domain-type\/wildcard-ssl-certificates\">wildcard certificates<\/a>, it should be specified in the following format: <em>*.example.com<\/em> (or <em>*.sub.example.com<\/em>).<\/span><\/p>\n<p><strong>What is the name of your organizational unit?<span style=\"font-weight: 400;\"> (Organization Unit) &#8211;<\/span><span style=\"font-weight: 400;\"> the company department requesting the certificate; this field can be skipped.<\/span><\/strong><\/p>\n<p><strong>What is the name of your organization?<\/strong><span style=\"font-weight: 400;\"> (Organization) &#8211;<\/span><span style=\"font-weight: 400;\"> the company name goes here; if there is no company, you can enter <em>NA<\/em>.<\/span><\/p>\n<p><strong>What is the name of your City or Locality?<\/strong><span style=\"font-weight: 400;\"> (Locality)<\/span><\/p>\n<p><strong>What is the name of your State or Province?<\/strong><span style=\"font-weight: 400;\"> (State)<\/span><\/p>\n<p><strong>What is the two-letter country code for this unit?<\/strong><span style=\"font-weight: 400;\"> (Country) <\/span><span style=\"font-weight: 400;\">&#8211; <\/span><span style=\"font-weight: 400;\">the country needs to be entered as a <a href=\"https:\/\/countrycode.org\">2-letter ISO-compliant<\/a><\/span> <span style=\"font-weight: 400;\">country code<\/span><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">All entered details will be displayed for a review; if everything is correct <\/span><span style=\"font-weight: 400;\">&#8211; <\/span><span style=\"font-weight: 400;\">enter <em><strong>yes<\/strong><\/em> or just <em><strong>y<\/strong><\/em>.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">You will also be asked to set a key password which will be used to secure the private key. You can press Enter to make this password the same as the keystore password.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Below is an example of filling out these fields:<\/span><\/p>\n<p><span style=\"font-weight: 400;\"><img decoding=\"async\" src=\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/glsf_csr_1.png\"><\/span><\/p>\n<p><span style=\"font-weight: 400;\">Now there is a keystore file containing the private key in the directory where the command was run, and a CSR can be generated with the next keytool command:<\/span><\/p>\n<p><em><strong>keytool -certreq -alias <\/strong><strong>myalias<\/strong><strong> -file <\/strong><strong>domain.csr<\/strong><strong> -keystore <\/strong><strong>mykeystore<\/strong><strong>.jks<\/strong><\/em><\/p>\n<p><span style=\"font-weight: 400;\">In this command, <\/span><em><strong>myalias<\/strong><\/em><span style=\"font-weight: 400;\"> and <\/span><em><strong>mykeystore<\/strong><strong>.jks<\/strong><\/em><span style=\"font-weight: 400;\"> are the same as in the first command, and <\/span><em><strong>domain.csr<\/strong><\/em><span style=\"font-weight: 400;\"> should be replaced with a custom filename. After running the command, you will have a <\/span><em><strong>domain.csr<\/strong><\/em><span style=\"font-weight: 400;\"> file in the same directory with the keystore.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">You can open the CSR file with any text editor (e.g., <\/span><a href=\"https:\/\/en.wikipedia.org\/wiki\/GNU_nano\"><span style=\"font-weight: 400;\">nano<\/span><\/a><span style=\"font-weight: 400;\">), or output it to the console using the cat command:<\/span><\/p>\n<p><span style=\"font-weight: 400;\"><img decoding=\"async\" src=\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/glsf_csr_2.png\"><\/span><\/p>\n<p><span style=\"font-weight: 400;\">Before submitting the CSR, we recommend checking it for possible issues by decoding it on <a href=\"https:\/\/decoder.link\/\">decoder.link<\/a>.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Now that you have a CSR, you can proceed with <\/span><a href=\"https:\/\/www.ssls.com\/knowledgebase\/okay-so-i-ordered-an-ssl-how-do-i-get-it-to-work-on-my-domain\"><span style=\"font-weight: 400;\">certificate activation<\/span><\/a><span style=\"font-weight: 400;\"> in your SSLs.com account.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Additionally, you can visit <\/span><a href=\"https:\/\/docs.oracle.com\/javase\/6\/docs\/technotes\/tools\/windows\/keytool.html\"><span style=\"font-weight: 400;\">the official Oracle documentation<\/span><\/a><span style=\"font-weight: 400;\"> for more detailed instructions on keytool usage.<\/span><\/p>\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>GlassFish uses keystores (.jks files) to store certificates and private keys. For Glassfish, it is recommended to generate a CSR using the keytool command line utility. First, a new keystore needs to be created. The following command can be used to generate a new keystore with a private key: keytool -genkey -alias myalias -keyalg RSA ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[],"class_list":["post-130","post","type-post","status-publish","format-standard","hentry","category-csr-generation-instructions"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to generate a CSR code on GlassFish \u2013 HelpDesk | SSLs.com<\/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:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to generate a CSR code on GlassFish \u2013 HelpDesk | SSLs.com\" \/>\n<meta property=\"og:description\" content=\"GlassFish uses keystores (.jks files) to store certificates and private keys. For Glassfish, it is recommended to generate a CSR using the keytool command line utility. First, a new keystore needs to be created. The following command can be used to generate a new keystore with a private key: keytool -genkey -alias myalias -keyalg RSA ..Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/\" \/>\n<meta property=\"og:site_name\" content=\"SSL Certificate Knowledgebase | SSLs.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/SSLsCom\" \/>\n<meta property=\"article:published_time\" content=\"2019-07-08T16:34:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-07-29T15:27:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/glsf_csr_1.png\" \/>\n<meta name=\"author\" content=\"sslbizdev\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@SSLscom\" \/>\n<meta name=\"twitter:site\" content=\"@SSLscom\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"sslbizdev\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/\"},\"author\":{\"name\":\"sslbizdev\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/person\/7e29a188929740c7a59d9a1c15c18806\"},\"headline\":\"How to generate a CSR code on GlassFish\",\"datePublished\":\"2019-07-08T16:34:40+00:00\",\"dateModified\":\"2019-07-29T15:27:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/\"},\"wordCount\":517,\"publisher\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/glsf_csr_1.png\",\"articleSection\":[\"CSR generation instructions\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/\",\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/\",\"name\":\"How to generate a CSR code on GlassFish \u2013 HelpDesk | SSLs.com\",\"isPartOf\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/glsf_csr_1.png\",\"datePublished\":\"2019-07-08T16:34:40+00:00\",\"dateModified\":\"2019-07-29T15:27:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/#primaryimage\",\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/glsf_csr_1.png\",\"contentUrl\":\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/glsf_csr_1.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.ssls.com\/knowledgebase\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to generate a CSR code on GlassFish\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#website\",\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/\",\"name\":\"SSL Certificate Knowledgebase | SSLs.com\",\"description\":\"SSL Knowledgebase | SSLs.com\",\"publisher\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.ssls.com\/knowledgebase\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#organization\",\"name\":\"SSLs.com\",\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/8WCg7Uph_400x400-1.png\",\"contentUrl\":\"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/8WCg7Uph_400x400-1.png\",\"width\":400,\"height\":400,\"caption\":\"SSLs.com\"},\"image\":{\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/SSLsCom\",\"https:\/\/x.com\/SSLscom\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/person\/7e29a188929740c7a59d9a1c15c18806\",\"name\":\"sslbizdev\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g\",\"caption\":\"sslbizdev\"},\"url\":\"https:\/\/www.ssls.com\/knowledgebase\/author\/sslbizdev\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to generate a CSR code on GlassFish \u2013 HelpDesk | SSLs.com","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:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/","og_locale":"en_US","og_type":"article","og_title":"How to generate a CSR code on GlassFish \u2013 HelpDesk | SSLs.com","og_description":"GlassFish uses keystores (.jks files) to store certificates and private keys. For Glassfish, it is recommended to generate a CSR using the keytool command line utility. First, a new keystore needs to be created. The following command can be used to generate a new keystore with a private key: keytool -genkey -alias myalias -keyalg RSA ..Read more","og_url":"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/","og_site_name":"SSL Certificate Knowledgebase | SSLs.com","article_publisher":"https:\/\/www.facebook.com\/SSLsCom","article_published_time":"2019-07-08T16:34:40+00:00","article_modified_time":"2019-07-29T15:27:36+00:00","og_image":[{"url":"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/glsf_csr_1.png","type":"","width":"","height":""}],"author":"sslbizdev","twitter_card":"summary_large_image","twitter_creator":"@SSLscom","twitter_site":"@SSLscom","twitter_misc":{"Written by":"sslbizdev","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/#article","isPartOf":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/"},"author":{"name":"sslbizdev","@id":"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/person\/7e29a188929740c7a59d9a1c15c18806"},"headline":"How to generate a CSR code on GlassFish","datePublished":"2019-07-08T16:34:40+00:00","dateModified":"2019-07-29T15:27:36+00:00","mainEntityOfPage":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/"},"wordCount":517,"publisher":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/#organization"},"image":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/#primaryimage"},"thumbnailUrl":"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/glsf_csr_1.png","articleSection":["CSR generation instructions"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/","url":"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/","name":"How to generate a CSR code on GlassFish \u2013 HelpDesk | SSLs.com","isPartOf":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/#primaryimage"},"image":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/#primaryimage"},"thumbnailUrl":"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/glsf_csr_1.png","datePublished":"2019-07-08T16:34:40+00:00","dateModified":"2019-07-29T15:27:36+00:00","breadcrumb":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/#primaryimage","url":"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/glsf_csr_1.png","contentUrl":"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/glsf_csr_1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ssls.com\/knowledgebase\/how-to-generate-a-csr-code-on-glassfish\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.ssls.com\/knowledgebase\/"},{"@type":"ListItem","position":2,"name":"How to generate a CSR code on GlassFish"}]},{"@type":"WebSite","@id":"https:\/\/www.ssls.com\/knowledgebase\/#website","url":"https:\/\/www.ssls.com\/knowledgebase\/","name":"SSL Certificate Knowledgebase | SSLs.com","description":"SSL Knowledgebase | SSLs.com","publisher":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.ssls.com\/knowledgebase\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.ssls.com\/knowledgebase\/#organization","name":"SSLs.com","url":"https:\/\/www.ssls.com\/knowledgebase\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/logo\/image\/","url":"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/8WCg7Uph_400x400-1.png","contentUrl":"https:\/\/www.ssls.com\/knowledgebase\/wp-content\/uploads\/2019\/07\/8WCg7Uph_400x400-1.png","width":400,"height":400,"caption":"SSLs.com"},"image":{"@id":"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/SSLsCom","https:\/\/x.com\/SSLscom"]},{"@type":"Person","@id":"https:\/\/www.ssls.com\/knowledgebase\/#\/schema\/person\/7e29a188929740c7a59d9a1c15c18806","name":"sslbizdev","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b43c2e48b8cf4c353e91aa8232dac0c56e490f3f1eff58a7652c7d9a866e3f66?s=96&d=mm&r=g","caption":"sslbizdev"},"url":"https:\/\/www.ssls.com\/knowledgebase\/author\/sslbizdev\/"}]}},"publishpress_future_action":{"enabled":false,"date":"2026-04-14 17:17:52","action":"change-status","newStatus":"draft","terms":[],"taxonomy":"category","extraData":[]},"publishpress_future_workflow_manual_trigger":{"enabledWorkflows":[]},"_links":{"self":[{"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/130","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/comments?post=130"}],"version-history":[{"count":5,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/130\/revisions"}],"predecessor-version":[{"id":1632,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/130\/revisions\/1632"}],"wp:attachment":[{"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/media?parent=130"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/categories?post=130"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ssls.com\/knowledgebase\/wp-json\/wp\/v2\/tags?post=130"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}