{"id":277,"date":"2016-04-29T12:55:06","date_gmt":"2016-04-29T12:55:06","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=277"},"modified":"2018-01-31T08:56:43","modified_gmt":"2018-01-31T14:56:43","slug":"install-gaiaehr-on-ubuntu-14-04","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/install-gaiaehr-on-ubuntu-14-04\/","title":{"rendered":"Install GaiaEHR on Ubuntu 14.04"},"content":{"rendered":"<p>GaiaEHR is an open-source web based electronic health record (EHR) software written in PHP. It is a powerful and easy to use application for medical practice management, prescription and billing management. In this blog article we will <strong>install GaiaEHR on an <a href=\"https:\/\/www.linuxcloudvps.com\/ubuntu-cloud-vps.html\" target=\"_blank\">Ubuntu 14.04 Cloud VPS<\/a><\/strong> with Apache, PHP and MySQL.<br \/>\n<!--more--><\/p>\n<p>Log in to your Ubuntu 14.04 server as user root:<\/p>\n<pre>ssh root@IP_address<\/pre>\n<p>Run the following command to update all of the installed packages on your server:<\/p>\n<pre>apt-get update &amp;&amp; apt-get upgrade<\/pre>\n<p>To run GaiaEHR we need a working LAMP stack (Linux Apache MySQL &amp; PHP), so we will install all these components.<\/p>\n<p>First, install Apache web server:<\/p>\n<pre>apt-get install apache2<\/pre>\n<p>GaiaEHR is PHP based application, so next we will install PHP among with a few PHP modules required by the application:<\/p>\n<pre>apt-get install php5 libapache2-mod-php5 php5-mysql php5-curl php5-mcrypt<\/pre>\n<p>Activate the MCrypt module:<\/p>\n<pre>php5enmod mcrypt<\/pre>\n<p>Next, proceed with installing the MySQL database server in your system using:<\/p>\n<pre>apt-get install mysql-server<\/pre>\n<p>During the installation you will be prompted to set your MySQL root password.<\/p>\n<p>Once MySQL is installed, run the post-installation script <code>mysql_secure_installation :<\/code><\/p>\n<pre>mysql_secure_installation\r\n\r\n- Set root password? [Y\/n] n\r\n- Remove anonymous users? [Y\/n] y\r\n- Disallow root login remotely? [Y\/n] y\r\n- Remove test database and access to it? [Y\/n] y\r\n- Reload privilege tables now? [Y\/n] y<\/pre>\n<p>Create a new MySQL user and database for GaiaEHR:<\/p>\n<pre>mysql -u root -p\r\n\r\nmysql&gt; CREATE DATABASE gaiaehr;\r\nmysql&gt; GRANT ALL PRIVILEGES on gaiaehr.* TO &#039;gaiaehruser&#039;@&#039;localhost&#039; IDENTIFIED BY &#039;your_password&#039;;\r\nmysql&gt; FLUSH PRIVILEGES;\r\nmysql&gt; quit;<\/pre>\n<p>Don&#8217;t forget to replace &#8216;your_password&#8217;, with an actual strong password.<\/p>\n<p>Proceed with installing GaiaEHR. Download the latest available version of the application to your server:<\/p>\n<pre>wget http:\/\/downloads.sourceforge.net\/project\/gaiaehr\/GaiaEHR_v0.0.7_Beta.zip<\/pre>\n<p>Unpack the downloaded zip archive to the document root directory on your server:<\/p>\n<pre>unzip GaiaEHR_v0.0.7_Beta.zip -d \/var\/www\/html\/<\/pre>\n<p>Change the ownership of the GaiaEHR directory:<\/p>\n<pre>chown -R www-data:www-data \/var\/www\/html\/gaiaehr\/<\/pre>\n<p>Create a new virtual host directive in Apache. Copy the default Apache configuration file:<\/p>\n<pre>cp \/etc\/apache2\/sites-available\/000-default.conf \/etc\/apache2\/sites-available\/gaiaehr.conf<\/pre>\n<p>Open the file and replace the specific values. The Apache virtual host for your GaiaEHR website should look like the following:<\/p>\n<pre>vim \/etc\/apache2\/sites-available\/gaiaehr.conf\r\n&lt;VirtualHost *:80&gt;\r\n\r\nServerAdmin webmaster@your_domain\r\nServerName yourdomain.com\r\nDocumentRoot \/var\/www\/html\/gaiaehr\r\n\r\nErrorLog ${APACHE_LOG_DIR}\/error.log\r\nCustomLog ${APACHE_LOG_DIR}\/access.log combined\r\n\r\n&lt;\/VirtualHost&gt;\r\n<\/pre>\n<p>Next, activate the virtual host configuration:<\/p>\n<pre>a2ensite gaiaehr<\/pre>\n<p>and restart the Apache web server for the changes to take effect:<\/p>\n<pre>\/etc\/init.d\/apache2 restart<\/pre>\n<p>GaiaEHR has fully graphical and easy to use installation wizard to ease the installation process. So, access your GaiaEHR website at <code>http:\/\/yourdomain.com<\/code> , agree to the GaiaEHR terms and conditions and follow the on-screen instructions to complete the installation. The wizard will check if your server meets all the requirements and you will be prompted to enter the MySQL information, set the administrator account, etc..<\/p>\n<hr \/>\n<p>Of course you don\u2019t have to do any of this if you use one of our <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\">Linux Cloud VPS hosting<\/a> services, in which case you can simply ask our expert Linux admins to <strong>install GaiaEHR<\/strong> 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>GaiaEHR is an open-source web based electronic health record (EHR) software written in PHP. It is a powerful and easy to use application for medical practice management, prescription and billing management. In this blog article we will install GaiaEHR on an Ubuntu 14.04 Cloud VPS with Apache, PHP and MySQL.<\/p>\n","protected":false},"author":2,"featured_media":278,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[45,132,46,47],"class_list":["post-277","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-gaiaehr","tag-linuxcloudvps","tag-medical-management","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Install GaiaEHR on Ubuntu 14.04 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"GaiaEHR is an open-source web based electronic health record (EHR) software written in PHP. It is a powerful and easy to use application for medical\" \/>\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\/install-gaiaehr-on-ubuntu-14-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install GaiaEHR on Ubuntu 14.04 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"GaiaEHR is an open-source web based electronic health record (EHR) software written in PHP. It is a powerful and easy to use application for medical\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/install-gaiaehr-on-ubuntu-14-04\/\" \/>\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=\"2016-04-29T12:55:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-31T14:56:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/01\/gaiaehr.png\" \/>\n\t<meta property=\"og:image:width\" content=\"251\" \/>\n\t<meta property=\"og:image:height\" content=\"75\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-gaiaehr-on-ubuntu-14-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-gaiaehr-on-ubuntu-14-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"Install GaiaEHR on Ubuntu 14.04\",\"datePublished\":\"2016-04-29T12:55:06+00:00\",\"dateModified\":\"2018-01-31T14:56:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-gaiaehr-on-ubuntu-14-04\\\/\"},\"wordCount\":410,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-gaiaehr-on-ubuntu-14-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/01\\\/gaiaehr.png\",\"keywords\":[\"GaiaEHR\",\"linuxcloudvps\",\"medical management\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-gaiaehr-on-ubuntu-14-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-gaiaehr-on-ubuntu-14-04\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-gaiaehr-on-ubuntu-14-04\\\/\",\"name\":\"Install GaiaEHR on Ubuntu 14.04 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-gaiaehr-on-ubuntu-14-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-gaiaehr-on-ubuntu-14-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/01\\\/gaiaehr.png\",\"datePublished\":\"2016-04-29T12:55:06+00:00\",\"dateModified\":\"2018-01-31T14:56:43+00:00\",\"description\":\"GaiaEHR is an open-source web based electronic health record (EHR) software written in PHP. It is a powerful and easy to use application for medical\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-gaiaehr-on-ubuntu-14-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-gaiaehr-on-ubuntu-14-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-gaiaehr-on-ubuntu-14-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/01\\\/gaiaehr.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/01\\\/gaiaehr.png\",\"width\":251,\"height\":75},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-gaiaehr-on-ubuntu-14-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install GaiaEHR on Ubuntu 14.04\"}]},{\"@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":"Install GaiaEHR on Ubuntu 14.04 | LinuxCloudVPS Blog","description":"GaiaEHR is an open-source web based electronic health record (EHR) software written in PHP. It is a powerful and easy to use application for medical","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\/install-gaiaehr-on-ubuntu-14-04\/","og_locale":"en_US","og_type":"article","og_title":"Install GaiaEHR on Ubuntu 14.04 | LinuxCloudVPS Blog","og_description":"GaiaEHR is an open-source web based electronic health record (EHR) software written in PHP. It is a powerful and easy to use application for medical","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/install-gaiaehr-on-ubuntu-14-04\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2016-04-29T12:55:06+00:00","article_modified_time":"2018-01-31T14:56:43+00:00","og_image":[{"width":251,"height":75,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/01\/gaiaehr.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-gaiaehr-on-ubuntu-14-04\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-gaiaehr-on-ubuntu-14-04\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"Install GaiaEHR on Ubuntu 14.04","datePublished":"2016-04-29T12:55:06+00:00","dateModified":"2018-01-31T14:56:43+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-gaiaehr-on-ubuntu-14-04\/"},"wordCount":410,"commentCount":2,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-gaiaehr-on-ubuntu-14-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/01\/gaiaehr.png","keywords":["GaiaEHR","linuxcloudvps","medical management","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/install-gaiaehr-on-ubuntu-14-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-gaiaehr-on-ubuntu-14-04\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/install-gaiaehr-on-ubuntu-14-04\/","name":"Install GaiaEHR on Ubuntu 14.04 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-gaiaehr-on-ubuntu-14-04\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-gaiaehr-on-ubuntu-14-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/01\/gaiaehr.png","datePublished":"2016-04-29T12:55:06+00:00","dateModified":"2018-01-31T14:56:43+00:00","description":"GaiaEHR is an open-source web based electronic health record (EHR) software written in PHP. It is a powerful and easy to use application for medical","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-gaiaehr-on-ubuntu-14-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/install-gaiaehr-on-ubuntu-14-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-gaiaehr-on-ubuntu-14-04\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/01\/gaiaehr.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2016\/01\/gaiaehr.png","width":251,"height":75},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-gaiaehr-on-ubuntu-14-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install GaiaEHR on Ubuntu 14.04"}]},{"@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\/277","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=277"}],"version-history":[{"count":6,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/277\/revisions"}],"predecessor-version":[{"id":322,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/277\/revisions\/322"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/278"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=277"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=277"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=277"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}