{"id":635,"date":"2018-05-30T12:11:48","date_gmt":"2018-05-30T12:11:48","guid":{"rendered":"https:\/\/www.dewlance.com\/kb\/?p=635"},"modified":"2022-08-16T11:13:08","modified_gmt":"2022-08-16T11:13:08","slug":"how-to-setup-password-less-ssh-key-on-ubuntu-18-04","status":"publish","type":"post","link":"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04","title":{"rendered":"How to setup password less ssh key on Ubuntu 18.04 VPS"},"content":{"rendered":"<p>Today it is easy to set up password less ssh key on Ubuntu 18.04 on workstations which have matching private and public key pair. In traditional systemone was required to enter username and password to get access to server but when it is about security password less SSH logon is best among all.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-642\" src=\"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/setup-passwordless-ssh-login-on-ubuntu-server-18-main.png\" alt=\"\" width=\"418\" height=\"231\" srcset=\"https:\/\/www.dewlance.com\/blog\/wp-content\/uploads\/2018\/05\/setup-passwordless-ssh-login-on-ubuntu-server-18-main.png 418w, https:\/\/www.dewlance.com\/blog\/wp-content\/uploads\/2018\/05\/setup-passwordless-ssh-login-on-ubuntu-server-18-main-200x111.png 200w, https:\/\/www.dewlance.com\/blog\/wp-content\/uploads\/2018\/05\/setup-passwordless-ssh-login-on-ubuntu-server-18-main-300x166.png 300w\" sizes=\"auto, (max-width: 418px) 100vw, 418px\" \/><\/p>\n<p>&nbsp;<\/p>\n<h5>Easy steps to enable password less SSH key<br \/>\n1. Check \/ Install SSH service<\/h5>\n<p>First basic step is to check whether openssh-server is installed or not. If it already installed check for it with below mentioned command.<\/p>\n<pre><strong>rpm -q openssh-server<\/strong>\r\nopenssh-server-6.6.1p1-33.el7_3.x86_64<\/pre>\n<p>&nbsp;<\/p>\n<p>If SSH service is not installed in system, update repository and move forward to install service by below mentioned commands.<\/p>\n<pre><strong>#yum check-update<\/strong>\r\n\r\nLoaded plugins: fastestmirror\r\nRepodata is over 2 weeks old. Install yum-cron? Or run: yum makecache fast\r\nbase | 3.6 kB 00:00:00\r\nextras | 3.4 kB 00:00:00\r\nupdates | 3.4 kB 00:00:00<\/pre>\n<p>&nbsp;<\/p>\n<pre>yum install openssh-server<\/pre>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<h5>2. Configure Key pair using ssh-Keygen<\/h5>\n<p>We are not using password to access server and so there is need to have public key authentication as it will make connection secure. Server will itself generate private key using command. Once command is processed two different keys are bene generated which are even stored in two different files which are in hidden folder where .ssh is the home directory. Bydefault file are stored as id_dsa (private key) and id_dsa.pub (public key). Passphrase is asked while generating keys as it will protect keys after generation.<\/p>\n<p>&nbsp;<\/p>\n<pre># <strong>ssh-keygen -t rsa\r\n<\/strong>\r\nGenerating public\/private rsa key pair.\r\nEnter file in which to save the key (\/root\/.ssh\/id_rsa):\r\nEnter passphrase (empty for no passphrase):\r\nEnter same passphrase again:\r\nYour identification has been saved in \/root\/.ssh\/id_rsa.\r\nYour public key has been saved in \/root\/.ssh\/id_rsa.pub.\r\nThe key fingerprint is:\r\n04:d3:00:7a:25:d0:08:ab:0c:b1:29:d4:e1:7b:62:f2 root@centos-01\r\nThe key's randomart image is:\r\n+--[ RSA 2048]----+\r\n|ooo=+.=o |\r\n|.=oo.o o. |\r\n|* ... . |\r\n|= .. . |\r\n|.o + . S |\r\n| + o |\r\n| E |\r\n| |\r\n| |\r\n+-----------------+<\/pre>\n<p>&nbsp;<\/p>\n<h5>3. Copy public keys<\/h5>\n<p>Once key is been generated next step is to copy the content placed inside public key to the server. First step is to create a folder named .ssh and copy local public key id_dsa.pub to the file. It can be done manually or by using ssh-copy-id command.<\/p>\n<p>&nbsp;<\/p>\n<h5>Manual copy<\/h5>\n<p># ssh root@10.132.6.180 mkdir -p .ssh<br \/>\nThe authenticity of host &#8216;10.132.6.180 (10.132.6.180)&#8217; can&#8217;t be established.<br \/>\nECDSA key fingerprint is 56:54:51:4d:fe:f4:fb:8f:f0:b4:6c:9c:0d:7c:57:4b.<br \/>\nAre you sure you want to continue connecting (yes\/no)? yes<br \/>\nWarning: Permanently added &#8216;10.132.6.180&#8217; (ECDSA) to the list of known hosts.<br \/>\nroot@10.132.6.180&#8217;s password:<br \/>\n# cat .ssh\/id_rsa.pub | ssh root@10.132.6.180 &#8216;cat &gt;&gt; .ssh\/authorized_keys&#8217;<\/p>\n<p>&nbsp;<\/p>\n<p>Using ssh-copy-id<\/p>\n<pre><strong>ssh-copy-id -i ~\/.ssh\/id_rsa.pub root@127.0.0.1\r\n<\/strong>\r\n\/usr\/bin\/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed\r\n\/usr\/bin\/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys\r\nroot@127.0.0.1's password:<\/pre>\n<p>Number of key(s) added: 1<\/p>\n<p>&nbsp;<\/p>\n<p>Now try logging into the machine, with: &#8220;ssh &#8216;root@127.0.0.1&#8242;&#8221;<br \/>\nand check to make sure that only the key(s) you wanted were added.<\/p>\n<p>&nbsp;<\/p>\n<h5>4. Set permission<\/h5>\n<pre>chmod 700 .ssh\r\nchmod 600 .ssh\/authorized_keys<\/pre>\n<p>&nbsp;<\/p>\n<h5>5. SSH without password<\/h5>\n<p>Now disable authentication by password through following command.<\/p>\n<pre>nano \/etc\/ssh\/sshd_config<\/pre>\n<pre><strong>Change this values to following values:<\/strong>\r\nRSAAuthentication yes\r\nPubkeyAuthentication yes\r\nPasswordAuthentication no\r\nUsePAM no\r\nChallengeResponseAuthentication no<\/pre>\n<p>&nbsp;<\/p>\n<p><strong>Restart SSH<\/strong><\/p>\n<pre>systemctl reload sshd<\/pre>\n<p>&nbsp;<\/p>\n<p>Lastly test SSH service by following command.<\/p>\n<pre>ssh username@remote_host<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Today it is easy to set up password less ssh key on Ubuntu 18.04 on workstations which have matching private and public key pair. In traditional systemone was required to enter username and password to get access to server but when it is about security password less SSH logon is best among all. &nbsp; Easy [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[706],"tags":[177,173,175,176,174,178],"class_list":["post-635","post","type-post","status-publish","format-standard","hentry","category-vps","tag-easy-way-to-setup-password-less-ssh-on-ubuntu-18-04","tag-how-to-setup-password-less-ssh-key-on-ubuntu","tag-passwordless-ssh-for-vps","tag-passwordless-ssh-login-method","tag-passwordless-ssh-login-tutorial","tag-setup-passwordless-ssh-login-on-ubuntu-18-04-server"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to setup password less ssh key on Ubuntu 18.04 VPS - Web Hosting Blog - Dewlance<\/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.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to setup password less ssh key on Ubuntu 18.04 VPS - Web Hosting Blog - Dewlance\" \/>\n<meta property=\"og:description\" content=\"Today it is easy to set up password less ssh key on Ubuntu 18.04 on workstations which have matching private and public key pair. In traditional systemone was required to enter username and password to get access to server but when it is about security password less SSH logon is best among all. &nbsp; Easy [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04\" \/>\n<meta property=\"og:site_name\" content=\"Web Hosting Blog - Dewlance\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/dewlance.hosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-05-30T12:11:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-16T11:13:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/setup-passwordless-ssh-login-on-ubuntu-server-18-main.png\" \/>\n<meta name=\"author\" content=\"K.S\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@dewlance\" \/>\n<meta name=\"twitter:site\" content=\"@dewlance\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"K.S\" \/>\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.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04\"},\"author\":{\"name\":\"K.S\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/#\/schema\/person\/0fe2f240cf5589599b50b9385ee53694\"},\"headline\":\"How to setup password less ssh key on Ubuntu 18.04 VPS\",\"datePublished\":\"2018-05-30T12:11:48+00:00\",\"dateModified\":\"2022-08-16T11:13:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04\"},\"wordCount\":397,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/setup-passwordless-ssh-login-on-ubuntu-server-18-main.png\",\"keywords\":[\"easy way to setup password less ssh on ubuntu 18.04\",\"how to setup password less ssh key on ubuntu\",\"passwordless ssh for vps\",\"passwordless ssh login method\",\"passwordless ssh login tutorial\",\"setup passwordless ssh login on ubuntu 18.04 server\"],\"articleSection\":[\"VPS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04\",\"url\":\"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04\",\"name\":\"How to setup password less ssh key on Ubuntu 18.04 VPS - Web Hosting Blog - Dewlance\",\"isPartOf\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/setup-passwordless-ssh-login-on-ubuntu-server-18-main.png\",\"datePublished\":\"2018-05-30T12:11:48+00:00\",\"dateModified\":\"2022-08-16T11:13:08+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04#primaryimage\",\"url\":\"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/setup-passwordless-ssh-login-on-ubuntu-server-18-main.png\",\"contentUrl\":\"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/setup-passwordless-ssh-login-on-ubuntu-server-18-main.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.dewlance.com\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to setup password less ssh key on Ubuntu 18.04 VPS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/#website\",\"url\":\"https:\/\/www.dewlance.com\/blog\/\",\"name\":\"Web Hosting Blog - Dewlance\",\"description\":\"Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dewlance.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/#organization\",\"name\":\"Dewlance\",\"url\":\"https:\/\/www.dewlance.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.dewlance.com\/blog\/wp-content\/uploads\/2022\/08\/logo.png\",\"contentUrl\":\"https:\/\/www.dewlance.com\/blog\/wp-content\/uploads\/2022\/08\/logo.png\",\"width\":274,\"height\":89,\"caption\":\"Dewlance\"},\"image\":{\"@id\":\"https:\/\/www.dewlance.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/dewlance.hosting\/\",\"https:\/\/x.com\/dewlance\",\"https:\/\/www.youtube.com\/user\/dewlances\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dewlance.com\/blog\/#\/schema\/person\/0fe2f240cf5589599b50b9385ee53694\",\"name\":\"K.S\",\"url\":\"https:\/\/www.dewlance.com\/blog\/author\/dewlancevpsxen\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to setup password less ssh key on Ubuntu 18.04 VPS - Web Hosting Blog - Dewlance","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.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04","og_locale":"en_US","og_type":"article","og_title":"How to setup password less ssh key on Ubuntu 18.04 VPS - Web Hosting Blog - Dewlance","og_description":"Today it is easy to set up password less ssh key on Ubuntu 18.04 on workstations which have matching private and public key pair. In traditional systemone was required to enter username and password to get access to server but when it is about security password less SSH logon is best among all. &nbsp; Easy [&hellip;]","og_url":"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04","og_site_name":"Web Hosting Blog - Dewlance","article_publisher":"https:\/\/www.facebook.com\/dewlance.hosting\/","article_published_time":"2018-05-30T12:11:48+00:00","article_modified_time":"2022-08-16T11:13:08+00:00","og_image":[{"url":"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/setup-passwordless-ssh-login-on-ubuntu-server-18-main.png","type":"","width":"","height":""}],"author":"K.S","twitter_card":"summary_large_image","twitter_creator":"@dewlance","twitter_site":"@dewlance","twitter_misc":{"Written by":"K.S","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04#article","isPartOf":{"@id":"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04"},"author":{"name":"K.S","@id":"https:\/\/www.dewlance.com\/blog\/#\/schema\/person\/0fe2f240cf5589599b50b9385ee53694"},"headline":"How to setup password less ssh key on Ubuntu 18.04 VPS","datePublished":"2018-05-30T12:11:48+00:00","dateModified":"2022-08-16T11:13:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04"},"wordCount":397,"commentCount":0,"publisher":{"@id":"https:\/\/www.dewlance.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04#primaryimage"},"thumbnailUrl":"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/setup-passwordless-ssh-login-on-ubuntu-server-18-main.png","keywords":["easy way to setup password less ssh on ubuntu 18.04","how to setup password less ssh key on ubuntu","passwordless ssh for vps","passwordless ssh login method","passwordless ssh login tutorial","setup passwordless ssh login on ubuntu 18.04 server"],"articleSection":["VPS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04","url":"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04","name":"How to setup password less ssh key on Ubuntu 18.04 VPS - Web Hosting Blog - Dewlance","isPartOf":{"@id":"https:\/\/www.dewlance.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04#primaryimage"},"image":{"@id":"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04#primaryimage"},"thumbnailUrl":"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/setup-passwordless-ssh-login-on-ubuntu-server-18-main.png","datePublished":"2018-05-30T12:11:48+00:00","dateModified":"2022-08-16T11:13:08+00:00","breadcrumb":{"@id":"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04#primaryimage","url":"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/setup-passwordless-ssh-login-on-ubuntu-server-18-main.png","contentUrl":"https:\/\/www.dewlance.com\/kb\/wp-content\/uploads\/2018\/05\/setup-passwordless-ssh-login-on-ubuntu-server-18-main.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.dewlance.com\/blog\/how-to-setup-password-less-ssh-key-on-ubuntu-18-04#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.dewlance.com\/blog"},{"@type":"ListItem","position":2,"name":"How to setup password less ssh key on Ubuntu 18.04 VPS"}]},{"@type":"WebSite","@id":"https:\/\/www.dewlance.com\/blog\/#website","url":"https:\/\/www.dewlance.com\/blog\/","name":"Web Hosting Blog - Dewlance","description":"Tutorials","publisher":{"@id":"https:\/\/www.dewlance.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dewlance.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.dewlance.com\/blog\/#organization","name":"Dewlance","url":"https:\/\/www.dewlance.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dewlance.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.dewlance.com\/blog\/wp-content\/uploads\/2022\/08\/logo.png","contentUrl":"https:\/\/www.dewlance.com\/blog\/wp-content\/uploads\/2022\/08\/logo.png","width":274,"height":89,"caption":"Dewlance"},"image":{"@id":"https:\/\/www.dewlance.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/dewlance.hosting\/","https:\/\/x.com\/dewlance","https:\/\/www.youtube.com\/user\/dewlances\/"]},{"@type":"Person","@id":"https:\/\/www.dewlance.com\/blog\/#\/schema\/person\/0fe2f240cf5589599b50b9385ee53694","name":"K.S","url":"https:\/\/www.dewlance.com\/blog\/author\/dewlancevpsxen"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/posts\/635","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/comments?post=635"}],"version-history":[{"count":5,"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/posts\/635\/revisions"}],"predecessor-version":[{"id":1340,"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/posts\/635\/revisions\/1340"}],"wp:attachment":[{"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/media?parent=635"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/categories?post=635"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dewlance.com\/blog\/wp-json\/wp\/v2\/tags?post=635"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}