{"id":809,"date":"2018-06-29T02:19:20","date_gmt":"2018-06-29T07:19:20","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=809"},"modified":"2018-06-29T02:38:40","modified_gmt":"2018-06-29T07:38:40","slug":"how-to-install-java-on-centos-7","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/","title":{"rendered":"How to Install Java on CentOS 7"},"content":{"rendered":"<p>If you want to install Java on a VPS running CentOS 7 then this is the right tutorial for you. You will also be able to learn how to set a Java home variable and overview some basic management steps to get you started. As we already know Java is at the top of the list of the programming languages and this is worldwide. This programming language is created to have very little dependencies and that allows application developers to &#8220;write once, run everywhere&#8221;. As a matter of fact, any platform that supports Java can be operated by a compiled Java code. It can also be used to build both simple web applications and advanced software.<\/p>\n<p>OpenJDK and Oracle Java are the two different implementations of Java. These two implementations of Java are based on the same code, but the main difference is that the reference implementation of Java or Open JDK is entirely open source, while on the other hand, Oracle Java contains some proprietary code.<!--more--><\/p>\n<p>With all that being said let`s go through all of the steps for installing Java on CenOS .<\/p>\n<h2 id=\"install-openjdk-8\">Install OpenJDK 8<\/h2>\n<p>Depending on what you re going to use Java for, you can choose JRE or JDK. For example, you should choose JRE only if you don`t plan to write software. But, if you plan to write or edit programs you should definitely choose JDK.<\/p>\n<p>Our recommendation is to use JDK. It can be installed with the following command:<\/p>\n<pre>sudo yum install java-1.8.0-openjdk-devel<\/pre>\n<p>Don`t forget to verify the completion after the installation is finished. The output should be:<\/p>\n<pre># yum list installed | grep &quot;java&quot;\r\njava-1.8.0-openjdk.x86_64 1:1.8.0.171-8.b10.el7_5 @updates\r\njava-1.8.0-openjdk-devel.x86_64 1:1.8.0.171-8.b10.el7_5 @updates\r\njava-1.8.0-openjdk-headless.x86_64 1:1.8.0.171-8.b10.el7_5 @updates\r\njavapackages-tools.noarch 3.4.1-11.el7 @base\r\npython-javapackages.noarch 3.4.1-11.el7 @base\r\ntzdata-java.noarch 2018e-3.el7 @updates<\/pre>\n<h2 id=\"install-oracle-java-8-jdk\">Install Oracle Java 8 JDK<\/h2>\n<p>Java RPM packages and the complied source code are provided by the Oracle team. You should install Java using the complied source code, because from my own experience I can tell you that if you try to install Java using rpm packages you can face some issues. Once I have decided to use the compiled source code I have installed Java many times without any issues. You can download the latest Java SE Development Kit 8 release from its <a href=\"http:\/\/www.oracle.com\/technetwork\/java\/javase\/downloads\/jdk8-downloads-2133151.html\" target=\"_blank\" rel=\"noopener\">official download page<\/a> or use the following wget command.<\/p>\n<pre>wget --no-cookies --no-check-certificate --header &quot;Cookie: gpw_e24=http:%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie&quot; &quot;http:\/\/download.oracle.com\/otn-pub\/java\/jdk\/8u172-b11\/a58eab1ec242421181065cdc37240b08\/jdk-8u172-linux-x64.rpm&quot;<\/pre>\n<p>The next thing on the list is the installation with this rpm command:<\/p>\n<pre>rpm -ivh jdk-8u172-linux-x64.rpm<\/pre>\n<p>Now you need to check the Java JDK installation.<\/p>\n<pre>java -version<\/pre>\n<p>If everything is all right with the installation, you should see the following output:<\/p>\n<pre>java version &quot;1.8.0_172&quot;\r\nJava(TM) SE Runtime Environment (build 1.8.0_172-b11)\r\nJava HotSpot(TM) 64-Bit Server VM (build 25.172-b11, mixed mode)<\/pre>\n<h2 id=\"set-default-java\">Set a Default Java Version<\/h2>\n<p>You should always set one Java version as your default (i.e. the one that will run when a user runs the <code>java<\/code> command), if you have decided to install multiple versions. In addition, some application may require certain environment variables to be set to locate which Java installation you should use. Here you can find out how to do that.<\/p>\n<p>You can use the <code>alternatives<\/code> command, which manages default commands through symbolic links if you want to select the default Java command.<\/p>\n<p>In order to print the programs that provide the <code>java<\/code> command which are managed by <code>alternatives<\/code>, use this command:<\/p>\n<pre>sudo alternatives --config java<\/pre>\n<p>This is one example of the output:<\/p>\n<pre>There is 3 program that provides &#039;java&#039;.\r\n\r\n  Selection    Command\r\n-----------------------------------------------\r\n + 1           \/usr\/java\/jdk1.8.0_172\/jre\/bin\/java\r\n*  2           java-1.8.0-openjdk.x86_64 (\/usr\/lib\/jvm\/java-1.8.0-openjdk-1.8.0.171-8.b10.el7_5.x86_64\/jre\/bin\/java)\r\n   3           \/usr\/java\/jdk1.8.0_172-amd64\/jre\/bin\/java\r\n\r\nEnter to keep the current selection[+], or type selection number:<\/pre>\n<p>All you have to do is to enter the selection number to choose which <code>java<\/code> executable should be used by default.<\/p>\n<h2>Set Up Java Environment Variables<\/h2>\n<p>The environment variables are used so the applications which are based on Java can work. You can set them using these commands below:<\/p>\n<pre>export JAVA_HOME=\/usr\/java\/jdk1.8.0_172\/\r\nexport PATH=$PATH:$JAVA_HOME<\/pre>\n<p>At this point, if you want to auto set environment variables on the system boot you should add the above commands to <strong>\/etc\/bashrc<\/strong> file.<\/p>\n<p>Now, let us check for the environment variables using commands:<\/p>\n<pre>echo $JAVA_HOME<\/pre>\n<p>Sample output:<\/p>\n<pre>\/usr\/java\/jdk1.8.0_172\/<\/pre>\n<p>Or<\/p>\n<pre>echo $PATH<\/pre>\n<p>Sample output:<\/p>\n<pre>\/usr\/local\/sbin:\/usr\/local\/bin:\/usr\/sbin:\/usr\/bin:\/sbin:\/bin:\/root\/bin:\/usr\/java\/jdk1.8.0_172\/<\/pre>\n<p>That is it. You have successfully installed and configured Java on your CentOS 7 server. Of course, you don\u2019t have to install Java on CentOS 7 if you use one of our Linux <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\">Cloud VPS Hosting plans<\/a>, in which case you can simply ask our expert Linux admins to how to install JAVA on CentOS 7 for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS<\/strong><\/span>. If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you want to install Java on a VPS running CentOS 7 then this is the right tutorial for you. You will also be able to learn how to set a Java home variable and overview some basic management steps to get you started. As we already know Java is at the top of the &#8230; <a title=\"How to Install Java on CentOS 7\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/\" aria-label=\"More on How to Install Java on CentOS 7\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":810,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[141,150],"class_list":["post-809","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-centos-7","tag-java"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Java on CentOS 7 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"If you want to install Java on a VPS running CentOS 7 then this is the right tutorial for you. You will also be able to learn how to set a Java home\" \/>\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.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Java on CentOS 7 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"If you want to install Java on a VPS running CentOS 7 then this is the right tutorial for you. You will also be able to learn how to set a Java home\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2018-06-29T07:19:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-06-29T07:38:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-Install-Java-on-CentOS-7.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"300\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install Java on CentOS 7\",\"datePublished\":\"2018-06-29T07:19:20+00:00\",\"dateModified\":\"2018-06-29T07:38:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/\"},\"wordCount\":688,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-Install-Java-on-CentOS-7.jpg\",\"keywords\":[\"centos 7\",\"Java\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/\",\"name\":\"How to Install Java on CentOS 7 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-Install-Java-on-CentOS-7.jpg\",\"datePublished\":\"2018-06-29T07:19:20+00:00\",\"dateModified\":\"2018-06-29T07:38:40+00:00\",\"description\":\"If you want to install Java on a VPS running CentOS 7 then this is the right tutorial for you. You will also be able to learn how to set a Java home\",\"breadcrumb\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/#primaryimage\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-Install-Java-on-CentOS-7.jpg\",\"contentUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-Install-Java-on-CentOS-7.jpg\",\"width\":600,\"height\":300,\"caption\":\"How to Install Java on CentOS 7\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.linuxcloudvps.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Java on CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#website\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png\",\"contentUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"http:\/\/www.facebook.com\/LinuxCloudVPS\",\"https:\/\/x.com\/LinuxCloudVPS\",\"http:\/\/www.linkedin.com\/company\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\/\/www.linuxcloudvps.com\/\"],\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Java on CentOS 7 | LinuxCloudVPS Blog","description":"If you want to install Java on a VPS running CentOS 7 then this is the right tutorial for you. You will also be able to learn how to set a Java home","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.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Java on CentOS 7 | LinuxCloudVPS Blog","og_description":"If you want to install Java on a VPS running CentOS 7 then this is the right tutorial for you. You will also be able to learn how to set a Java home","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2018-06-29T07:19:20+00:00","article_modified_time":"2018-06-29T07:38:40+00:00","og_image":[{"width":600,"height":300,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-Install-Java-on-CentOS-7.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install Java on CentOS 7","datePublished":"2018-06-29T07:19:20+00:00","dateModified":"2018-06-29T07:38:40+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/"},"wordCount":688,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-Install-Java-on-CentOS-7.jpg","keywords":["centos 7","Java"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/","name":"How to Install Java on CentOS 7 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-Install-Java-on-CentOS-7.jpg","datePublished":"2018-06-29T07:19:20+00:00","dateModified":"2018-06-29T07:38:40+00:00","description":"If you want to install Java on a VPS running CentOS 7 then this is the right tutorial for you. You will also be able to learn how to set a Java home","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-Install-Java-on-CentOS-7.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/06\/How-to-Install-Java-on-CentOS-7.jpg","width":600,"height":300,"caption":"How to Install Java on CentOS 7"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-java-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Java on CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/809","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=809"}],"version-history":[{"count":2,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/809\/revisions"}],"predecessor-version":[{"id":812,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/809\/revisions\/812"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/810"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=809"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=809"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=809"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}