{"id":1950,"date":"2017-06-13T00:55:34","date_gmt":"2017-06-13T05:55:34","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=1950"},"modified":"2022-06-03T03:42:08","modified_gmt":"2022-06-03T08:42:08","slug":"script-install-joomla-3-7-on-a-centosfedora-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/","title":{"rendered":"Script: Install Joomla 3.7 on CentOS"},"content":{"rendered":"
<\/div>

\"joomla<\/p>\n

In one of our previous posts, we explained how to install Joomla 3 on Ubuntu 14.04<\/a>. Joomla is a Content Management System (CMS for short) – this is user-friendly software that allows you to build websites and manage the content on your websites easier than ever before.<\/p>\n

<\/p>\n

In this tutorial, unlike the previous Joomla install guide, we wrote a script for you to help make the installation of Joomla 3.7 on a CentOS\/Fedora VPS<\/a>\u00a0even faster and easier. This script will automatically do everything that should be done on your server, including the creation of a MySQL database<\/a> while also creating an Apache virtual host<\/a> for your Joomla website. All you need to do is to create a file on your server containing the script below, then simply execute the script and enter your details when prompted to.<\/p>\n

(Note: You will need to have MySQL and Apache installed on your server in order for this script to work correctly.<\/p>\n

You will also need to point your domain to your server\u2019s IP address by editing your DNS server information. )<\/p>\n

Create a file on your server with your favorite text editor and copy this script into your file:<\/p>\n

#!\/bin\/bash\r\n# Install Joomla on a CentoOS\/Fedora VPS\r\n#\r\n\r\n# Create MySQL database\r\nread -p \"Enter your MySQL root password: \" rootpass\r\nread -p \"Database name: \" dbname\r\nread -p \"Database username: \" dbuser\r\nread -p \"Enter a password for user $dbuser: \" userpass\r\nread -p \"Enter your server's public IP address: \" address\r\nmysql -uroot <<MYSQL_SCRIPT\r\nCREATE DATABASE $dbname;\r\ndelete from mysql.user\r\nwhere user='$dbuser'\r\nand host = 'localhost';\r\nflush privileges;\r\nCREATE USER $dbuser@localhost;\r\nGRANT ALL PRIVILEGES ON $dbname.* TO $dbuser@localhost IDENTIFIED BY '$userpass';\r\nFLUSH PRIVILEGES;\r\nMYSQL_SCRIPT\r\necho \"New MySQL database has been successfully created\"\r\nsleep 2\r\n\r\n# Download, unpack and configure Joomla\r\nread -r -p \"Enter your Joomla URL? [e.g. mydomain.com]: \" joomlaurl\r\nmkdir -p \/var\/www\/html\/$joomlaurl && \\\r\nwget -P \/var\/www\/html\/$joomlaurl \\\r\nhttps:\/\/downloads.joomla.org\/cms\/joomla3\/3-7-2\/Joomla_3-7.2-Stable-Full_Package.zip && \\\r\ncd \/var\/www\/html\/$joomlaurl\r\necho \"Installing unzip package if necessary...\" && yum -yq install unzip\r\nsleep 3\r\nunzip Joomla*.zip && rm -f Joomla_*.zip && \\\r\nchown apache: -R \/var\/www\/html\/$joomlaurl\r\nkillall httpd\r\n\r\n# Create the Apache virtual host\r\necho \"\r\n\r\n<VirtualHost $address:80>\r\n ServerName www.$joomlaurl\r\n DocumentRoot \"\/var\/www\/html\/$joomlaurl\"\r\n DirectoryIndex index.php\r\n Options FollowSymLinks\r\n ErrorLog logs\/$joomlaurl-error_log\r\n CustomLog logs\/$joomlaurl-access_log common\r\n<\/VirtualHost>\r\n\r\n\" >> \/etc\/httpd\/conf\/httpd.conf\r\nservice httpd restart\r\n\r\necho -en \"\\aPlease go to http:\/\/www.$joomlaurl and finish the installation\\n\"\r\n\r\n#End of script<\/pre>\n

Make the script executable, then execute the script:<\/p>\n

chmod +x <script name> && .\/<script name><\/pre>\n

(Replace <script name> with the name that you have given to your file)<\/p>\n

After running the script, you will have successfully installed Joomla 3.7 on your CentOS or Fedora VPS! All that is left to do is to set up the remainder of Joomla at your web domain.<\/p>\n

Of course, you don\u2019t have to do any of this if you use one of our Joomla VPS hosting<\/a> services, in which case you can simply ask our expert Linux admins to install Joomla for you. They are available 24\/7 and will take care of your request immediately.<\/p>\n

PS<\/span>.<\/strong> If you liked this post, please share it with your friends through social networks by using the buttons below, or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"

In one of our previous posts, we explained how to install Joomla 3 on Ubuntu 14.04. Joomla is a Content … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":22579,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,1710,5],"tags":[34,93,215],"yoast_head":"\nScript: Install Joomla 3.7 on CentOS - RoseHosting<\/title>\n<meta name=\"description\" content=\"Script: Install Joomla 3.7 on CentOS - RoseHosting\" \/>\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.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Script: Install Joomla 3.7 on CentOS - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"Script: Install Joomla 3.7 on CentOS - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2017-06-13T05:55:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:42:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2017\/06\/joomla-installation-script.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\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.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Script: Install Joomla 3.7 on CentOS\",\"datePublished\":\"2017-06-13T05:55:34+00:00\",\"dateModified\":\"2022-06-03T08:42:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/\"},\"wordCount\":332,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2017\/06\/joomla-installation-script.jpg\",\"keywords\":[\"centos\",\"fedora\",\"joomla\"],\"articleSection\":[\"CentOS\",\"CMS, CRM, ERP\",\"Scripts\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/\",\"name\":\"Script: Install Joomla 3.7 on CentOS - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2017\/06\/joomla-installation-script.jpg\",\"datePublished\":\"2017-06-13T05:55:34+00:00\",\"dateModified\":\"2022-06-03T08:42:08+00:00\",\"description\":\"Script: Install Joomla 3.7 on CentOS - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2017\/06\/joomla-installation-script.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2017\/06\/joomla-installation-script.jpg\",\"width\":1200,\"height\":600,\"caption\":\"joomla installation script\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Script: Install Joomla 3.7 on CentOS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Script: Install Joomla 3.7 on CentOS - RoseHosting","description":"Script: Install Joomla 3.7 on CentOS - RoseHosting","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.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/","og_locale":"en_US","og_type":"article","og_title":"Script: Install Joomla 3.7 on CentOS - RoseHosting","og_description":"Script: Install Joomla 3.7 on CentOS - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2017-06-13T05:55:34+00:00","article_modified_time":"2022-06-03T08:42:08+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2017\/06\/joomla-installation-script.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Script: Install Joomla 3.7 on CentOS","datePublished":"2017-06-13T05:55:34+00:00","dateModified":"2022-06-03T08:42:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/"},"wordCount":332,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2017\/06\/joomla-installation-script.jpg","keywords":["centos","fedora","joomla"],"articleSection":["CentOS","CMS, CRM, ERP","Scripts"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/","name":"Script: Install Joomla 3.7 on CentOS - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2017\/06\/joomla-installation-script.jpg","datePublished":"2017-06-13T05:55:34+00:00","dateModified":"2022-06-03T08:42:08+00:00","description":"Script: Install Joomla 3.7 on CentOS - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2017\/06\/joomla-installation-script.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2017\/06\/joomla-installation-script.jpg","width":1200,"height":600,"caption":"joomla installation script"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/script-install-joomla-3-7-on-a-centosfedora-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Script: Install Joomla 3.7 on CentOS"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/1950"}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=1950"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/1950\/revisions"}],"predecessor-version":[{"id":41876,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/1950\/revisions\/41876"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/22579"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=1950"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=1950"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=1950"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}