{"id":4280,"date":"2018-06-13T00:10:02","date_gmt":"2018-06-13T08:10:02","guid":{"rendered":"https:\/\/cheapsslsecurity.com\/blog\/?p=4280"},"modified":"2021-01-26T07:31:21","modified_gmt":"2021-01-26T15:31:21","slug":"install-ssl-certificate-on-oracle-glassfish-server","status":"publish","type":"post","link":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/","title":{"rendered":"Oracle GlassFish SSL Installation: Here\u2019s How to do it"},"content":{"rendered":"<h2><span lang=\"EN-US\">Step-by-step instructions to install an SSL certificate on Oracle GlassFish<\/span><\/h2>\n<p>Oracle GlassFish server, also known as GlassFish, is an open-source application server. The GlassFish project was started by Sun Microsystems for the Java platform and now it\u2019s sponsored by Oracle Corporation. The first version of GlassFish was launched in 2007 and the version 5, released in 2017 is the latest one.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter wp-image-4288\" src=\"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2018\/06\/oracle-glassfish.png\" alt=\"oracle glassfish ssl installation\" width=\"713\" height=\"326\" \/><\/p>\n<p>Enough with the introduction, let\u2019s get to the point you\u2019re here for\u2014SSL installation on Oracle GlassFish server. Follow the below steps to generate a CSR and install an SSL certificate on GlassFish.<\/p>\n<h2>Generate Private Key<\/h2>\n<pre>#keytool -keysize 2048 -genkey -alias s1as -keyalg RSA -dname \"CN=*.<strong>mydomain.com<\/strong>,<strong>O=Myorganization<\/strong>,<strong>L=city<\/strong>,<strong>S=state<\/strong>,<strong>C=country<\/strong>\" -keypass changeit -storepass changeit -keystore keystore.jks<\/pre>\n<p>&nbsp;<\/p>\n<p>You\u2019ll need to replace the bold parts of the above syntax with your details. Here\u2019s what the details represent:<\/p>\n<p><strong>CN:<\/strong> www.yourdomaninname.com or yourdomainname.com<\/p>\n<p><strong>O:<\/strong> Write the full name of your organization without any special characters. If you want to issue an OV or an EV SSL certificate, you must type in the legal name of your organization.<\/p>\n<p><strong>L:<\/strong> Write the full name of your or your organization\u2019s city.<\/p>\n<p><strong>S:<\/strong> Write the full name of your or your organization\u2019s state.<\/p>\n<p><strong>C:<\/strong> Your 2-digit country code<\/p>\n<p><em><strong>Note: <\/strong>Once you run the above command, you will be asked to enter the password of keystore. Make sure that the keystore password is same as the GlassFish\u2019s master password. If you have forgotten your password and hadn\u2019t changed it from the beginning, <strong>changeit<\/strong> should be your default password.<\/em><\/p>\n<p>Once you enter the details, you will be asked to verify the accuracy of the details you just entered. To confirm, type <strong>y<\/strong> and hit enter. Now you\u2019ll be asked to enter the key password. Press enter to keep the key password same as the keystore password.<\/p>\n<p>&nbsp;<\/p>\n<h2>Generate CSR<\/h2>\n<p>Run the below command to generate a CSR:<\/p>\n<pre>&gt; keytool -certreq -alias youralias -file yourcsrname.csr -keystore yourkeystorename.jks<\/pre>\n<p>&nbsp;<\/p>\n<h2>Download Certificate Files<\/h2>\n<p>Your certificate authority (CA) would\u2019ve sent you the certificate files. Ideally, it will be sent in a zip file and it\u2019d have three files.<\/p>\n<p>&nbsp;<\/p>\n<h2>Import Certificate Files<\/h2>\n<p>Once you\u2019ve downloaded your certificate files, you\u2019d need to import them into the keystore. Enter the below commands for different files.<\/p>\n<pre>keytool -import -trustcacerts -alias root -file (ROOT CERTIFICATE FILE NAME) -keystore domain.key<\/pre>\n<p>&nbsp;<\/p>\n<pre>keytool -import -trustcacerts -alias intermed -file (INTERMEDIATE CA FILE NAME) -keystore domain.key<\/pre>\n<p>&nbsp;<\/p>\n<pre>keytool -import -alias mydomain.com -keystore keystore.jks -trustcacerts -file mydomain.com.crt<\/pre>\n<p>&nbsp;<\/p>\n<h2>Import Files into the default keystore<\/h2>\n<p>It helps in developing scalable and portable applications. To import files from the original keystore to the default keystore, you\u2019d need to run the following command:<\/p>\n<pre>&gt; keytool -importkeystore -srckeystore yourkeystorename.jks -destkeystore keystore.jks<\/pre>\n<p>&nbsp;<\/p>\n<h2>Enable HTTPS in HTTP-Listener-2<\/h2>\n<p>To enable HTTPS in GlassFish\u2019s HTTP-Listener, follow the outlined steps:<\/p>\n<ul>\n<li>First, go to the GlassFish admin console.<\/li>\n<li>Now go to <strong>Configurations -&gt; Server Config -&gt; http-listener-2.<\/strong><\/li>\n<li>Go to the <strong>General <\/strong>tab and change the port to 443.<\/li>\n<li>In the <strong>SSL <\/strong>tab, change the <strong>Certificate NickName <\/strong>from s1as to the alias of your main certificate file.<\/li>\n<li>Save the changes you made.<\/li>\n<\/ul>\n<p>All done? Well, congratulations! You just installed an SSL certificate on Oracle GlassFish.<\/p>\n<h2>Important Resource<\/h2>\n<ul>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/ssltools\/ssl-checker.php\">SSL Certificate Installation checking<\/a><\/li>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/ssltools\/why-no-padlock.php\">Why no Padlock Checking<\/a><\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h2>Related Posts<\/h2>\n<ul>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-oracle-wallet-manager\/\">Install SSL Certificate on Oracle Wallet Manager<\/a><\/li>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-oracle-iplanet-web-server\/\">Install SSL Certificate on Oracle iPlanet Web Server<\/a><\/li>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-bea-weblogic-server\/\">Install SSL Certificate on BEA WebLogic Server<\/a><\/li>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-f5-firepass-ssl-vpn\/\">Install SSL Certificate on F5 FirePass SSL VPN<\/a><\/li>\n<li><a href=\"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificates-on-aep-netilla-ssl-vpn\/\">Install SSL Certificates on AEP Netilla SSL VPN<\/a><\/li>\n<\/ul>\n<div class=\"graysection\">\n<h2>Save Up to 89% on SSL Certificates<\/h2>\n<p>Oracle Glasshfish only accepts SSL Certificate from a genuine and trusted SSL Certificate Authority. Buy trusted SSL Certificate at a cheap price with heavy discounts. <\/p>\n<p><a class=\"comparebtn\" href=\"https:\/\/cheapsslsecurity.com\/comodo\/positivessl.html\">Purchase a Comodo Positive SSL at $5.45 Per Year<\/a><\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Step-by-step instructions to install an SSL certificate on Oracle GlassFish Oracle GlassFish server, also known as GlassFish, is an open-source application server. The GlassFish project was started by Sun Microsystems for the Java platform and now it\u2019s sponsored by Oracle Corporation. The first version of GlassFish was launched in 2007 and the version 5, released<\/p>\n","protected":false},"author":8,"featured_media":4288,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[5],"tags":[],"class_list":["post-4280","post","type-post","status-publish","format-standard","has-post-thumbnail","category-ssl-pki"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Install SSL certificate on Oracle GlassFish server - CheapSSLsecurity<\/title>\n<meta name=\"description\" content=\"Want to generate CSR and install an SSL certificate on your Oracle GlassFish server? Want to do it within 10 minutes? We bring you easy-to-do, step-by-step instructions to do so.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install SSL certificate on Oracle GlassFish server - CheapSSLsecurity\" \/>\n<meta property=\"og:description\" content=\"Want to generate CSR and install an SSL certificate on your Oracle GlassFish server? Want to do it within 10 minutes? We bring you easy-to-do, step-by-step instructions to do so.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/\" \/>\n<meta property=\"og:site_name\" content=\"Savvy Security\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/cheapsslsecurities\" \/>\n<meta property=\"article:published_time\" content=\"2018-06-13T08:10:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-26T15:31:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2018\/06\/oracle-glassfish.png\" \/>\n\t<meta property=\"og:image:width\" content=\"832\" \/>\n\t<meta property=\"og:image:height\" content=\"371\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Savvy Security\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@sslsecurity\" \/>\n<meta name=\"twitter:site\" content=\"@sslsecurity\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Savvy Security\" \/>\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:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-on-oracle-glassfish-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-on-oracle-glassfish-server\\\/\"},\"author\":{\"name\":\"Savvy Security\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/#\\\/schema\\\/person\\\/1ce9a5743b7f25b5be6e4972864b4493\"},\"headline\":\"Oracle GlassFish SSL Installation: Here\u2019s How to do it\",\"datePublished\":\"2018-06-13T08:10:02+00:00\",\"dateModified\":\"2021-01-26T15:31:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-on-oracle-glassfish-server\\\/\"},\"wordCount\":573,\"image\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-on-oracle-glassfish-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/06\\\/oracle-glassfish.png\",\"articleSection\":[\"SSL &amp; PKI\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-on-oracle-glassfish-server\\\/\",\"url\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-on-oracle-glassfish-server\\\/\",\"name\":\"Install SSL certificate on Oracle GlassFish server - CheapSSLsecurity\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-on-oracle-glassfish-server\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-on-oracle-glassfish-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/06\\\/oracle-glassfish.png\",\"datePublished\":\"2018-06-13T08:10:02+00:00\",\"dateModified\":\"2021-01-26T15:31:21+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/#\\\/schema\\\/person\\\/1ce9a5743b7f25b5be6e4972864b4493\"},\"description\":\"Want to generate CSR and install an SSL certificate on your Oracle GlassFish server? Want to do it within 10 minutes? We bring you easy-to-do, step-by-step instructions to do so.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-on-oracle-glassfish-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-on-oracle-glassfish-server\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-on-oracle-glassfish-server\\\/#primaryimage\",\"url\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/06\\\/oracle-glassfish.png\",\"contentUrl\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/06\\\/oracle-glassfish.png\",\"width\":832,\"height\":371},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/install-ssl-certificate-on-oracle-glassfish-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle GlassFish SSL Installation: Here\u2019s How to do it\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/\",\"name\":\"Savvy Security\",\"description\":\"Practical cybersecurity advice\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/#\\\/schema\\\/person\\\/1ce9a5743b7f25b5be6e4972864b4493\",\"name\":\"Savvy Security\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g\",\"caption\":\"Savvy Security\"},\"description\":\"Welcome to Savvy Security, a blog focused on providing practical cybersecurity advice for website owners and small businesses. Our team brings you the latest news, best practices and tips you can use to protect your business...without a multi-million dollar budget or 24\\\/7 security teams.\",\"sameAs\":[\"blogadmin\"],\"url\":\"https:\\\/\\\/cheapsslsecurity.com\\\/blog\\\/author\\\/blogadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install SSL certificate on Oracle GlassFish server - CheapSSLsecurity","description":"Want to generate CSR and install an SSL certificate on your Oracle GlassFish server? Want to do it within 10 minutes? We bring you easy-to-do, step-by-step instructions to do so.","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:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/","og_locale":"en_US","og_type":"article","og_title":"Install SSL certificate on Oracle GlassFish server - CheapSSLsecurity","og_description":"Want to generate CSR and install an SSL certificate on your Oracle GlassFish server? Want to do it within 10 minutes? We bring you easy-to-do, step-by-step instructions to do so.","og_url":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/","og_site_name":"Savvy Security","article_publisher":"https:\/\/www.facebook.com\/cheapsslsecurities","article_published_time":"2018-06-13T08:10:02+00:00","article_modified_time":"2021-01-26T15:31:21+00:00","og_image":[{"width":832,"height":371,"url":"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2018\/06\/oracle-glassfish.png","type":"image\/png"}],"author":"Savvy Security","twitter_card":"summary_large_image","twitter_creator":"@sslsecurity","twitter_site":"@sslsecurity","twitter_misc":{"Written by":"Savvy Security","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/#article","isPartOf":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/"},"author":{"name":"Savvy Security","@id":"https:\/\/cheapsslsecurity.com\/blog\/#\/schema\/person\/1ce9a5743b7f25b5be6e4972864b4493"},"headline":"Oracle GlassFish SSL Installation: Here\u2019s How to do it","datePublished":"2018-06-13T08:10:02+00:00","dateModified":"2021-01-26T15:31:21+00:00","mainEntityOfPage":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/"},"wordCount":573,"image":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/#primaryimage"},"thumbnailUrl":"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2018\/06\/oracle-glassfish.png","articleSection":["SSL &amp; PKI"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/","url":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/","name":"Install SSL certificate on Oracle GlassFish server - CheapSSLsecurity","isPartOf":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/#primaryimage"},"image":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/#primaryimage"},"thumbnailUrl":"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2018\/06\/oracle-glassfish.png","datePublished":"2018-06-13T08:10:02+00:00","dateModified":"2021-01-26T15:31:21+00:00","author":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/#\/schema\/person\/1ce9a5743b7f25b5be6e4972864b4493"},"description":"Want to generate CSR and install an SSL certificate on your Oracle GlassFish server? Want to do it within 10 minutes? We bring you easy-to-do, step-by-step instructions to do so.","breadcrumb":{"@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/#primaryimage","url":"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2018\/06\/oracle-glassfish.png","contentUrl":"https:\/\/cheapsslsecurity.com\/blog\/wp-content\/uploads\/2018\/06\/oracle-glassfish.png","width":832,"height":371},{"@type":"BreadcrumbList","@id":"https:\/\/cheapsslsecurity.com\/blog\/install-ssl-certificate-on-oracle-glassfish-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cheapsslsecurity.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Oracle GlassFish SSL Installation: Here\u2019s How to do it"}]},{"@type":"WebSite","@id":"https:\/\/cheapsslsecurity.com\/blog\/#website","url":"https:\/\/cheapsslsecurity.com\/blog\/","name":"Savvy Security","description":"Practical cybersecurity advice","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cheapsslsecurity.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/cheapsslsecurity.com\/blog\/#\/schema\/person\/1ce9a5743b7f25b5be6e4972864b4493","name":"Savvy Security","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4e5539150b16b5af1d22136f03dedda89a96babb3e9b5ceb18c2bde4e1dcba57?s=96&d=mm&r=g","caption":"Savvy Security"},"description":"Welcome to Savvy Security, a blog focused on providing practical cybersecurity advice for website owners and small businesses. Our team brings you the latest news, best practices and tips you can use to protect your business...without a multi-million dollar budget or 24\/7 security teams.","sameAs":["blogadmin"],"url":"https:\/\/cheapsslsecurity.com\/blog\/author\/blogadmin\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/posts\/4280","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/comments?post=4280"}],"version-history":[{"count":0,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/posts\/4280\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/media\/4288"}],"wp:attachment":[{"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/media?parent=4280"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/categories?post=4280"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cheapsslsecurity.com\/blog\/wp-json\/wp\/v2\/tags?post=4280"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}