{"id":59253,"date":"2020-08-31T17:29:14","date_gmt":"2020-08-31T21:29:14","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=59253"},"modified":"2021-08-16T15:33:42","modified_gmt":"2021-08-16T19:33:42","slug":"how-to-install-nextcloud-on-centos-8","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/","title":{"rendered":"How to Install Nextcloud on CentOS 8"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/08\/How-to-Install-Nextcloud-on-CentOS-8-1024x538.png\" alt=\"\" class=\"wp-image-59261\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/08\/How-to-Install-Nextcloud-on-CentOS-8-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/08\/How-to-Install-Nextcloud-on-CentOS-8-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/08\/How-to-Install-Nextcloud-on-CentOS-8-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/08\/How-to-Install-Nextcloud-on-CentOS-8.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>When using <strong>CentOS 8<\/strong>, you may find yourself looking for an open source cloud storage solution that you can use to set up your own file sharing network between your various devices. One option is <a href=\"https:\/\/www.inmotionhosting.com\/blog\/what-is-nextcloud\/\">Nextcloud<\/a>, the open source cloud storage software. This software can be installed on most devices available today, making it a versatile component in data management.<\/p>\n\n\n\n<p>cPanel server admins can use easier <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/install-nextcloud-web-installer\/\">installation methods<\/a>.<\/p>\n\n\n\n<p>In this article, we will outline how to install Nextcloud on CentOS 8 using the command-line interface. Please note that in order to complete the steps in this guide you will require <a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/standard-vs-root-access\/\">root SSH access<\/a> to your server. This process requires familiarity with Linux commands, so we only recommend performing this installation if you are comfortable with command-line operations.<\/p>\n\n\n\n<p>Topics Include:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#prepare\">Prepare for Installation<\/a><\/li><li><a href=\"#install\">Install Nextcloud<\/a><\/li><\/ul>\n\n\n\n<p class=\"alert alert-info\">Install Nextcloud on your <a href=\"https:\/\/www.inmotionhosting.com\/dedicated-servers\">Dedicated Hosting<\/a> server and start sharing files today!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"prepare\">Prepare for Installation<\/h2>\n\n\n\n<div class=\"wp-block-group article_list\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p>1. First, you will need to install all of the dependencies required for the installation process using the following command:\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf install -y epel-release yum-utils unzip curl wget \\ bash-completion policycoreutils-python-utils mlocate bzip2<\/pre>\n\n\n\n<p>2. Next, ensure that all system packages are up-to-date using the following command:\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf update -y<\/pre>\n\n\n\n<p>3. Now you will need to install Apache using the following command:\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf install -y httpd<\/pre>\n\n\n\n<p>4. Once installed, you will need to enable and start the service using the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl enable httpd.service<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl start httpd.service<\/pre>\n\n\n\n<p>4. Next, you will need to install the EPEL repository using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf install https:\/\/dl.fedoraproject.org\/pub\/epel\/epel-release-latest-8.noarch.rpm<\/pre>\n\n\n\n<p>5. Then, install the Remi repository using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf install https:\/\/rpms.remirepo.net\/enterprise\/remi-release-8.rpm<\/pre>\n\n\n\n<p>6. With the repositories installed, you will then need to install the yum-utils module for later use in the installation, using the following command:\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf install yum-utils<\/pre>\n\n\n\n<p>7. Once that is done, you will need to enable the module stream for PHP 7.4 to make the necessary packages available for installation. This can be done using the following commands:\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf module reset php<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf module install php:remi-7.4<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf update<\/pre>\n\n\n\n<p>8. Once done, install the necessary PHP modules using the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf install -y php php-gd php-mbstring php-intl \\ php-pecl-apcu php-mysqlnd php-opcache php-json php-zip<\/pre>\n\n\n\n<p>9. With all of the PHP modules installed, you will then need to install MariaDB using the following command:\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf install -y mariadb mariadb-server<\/pre>\n\n\n\n<p>10. Enable MariaDB to start when the system is rebooted using the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl enable mariadb.service<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl start mariadb.service<\/pre>\n\n\n\n<p>11. Then you will need to install the redis service and enable it for start up on reboot using the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">dnf install -y redis<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl enable redis.service<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl start redis.service<\/pre>\n<\/div><\/div>\n\n\n\n<p>Now that your server has been prepared for the installation, you can move forward with the next steps.\u00a0<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"install\">Installing Nextcloud<\/h2>\n\n\n\n<div class=\"wp-block-group article_list\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p>1. First, download Nextcloud from the official website. In this example we are using Nextcloud 19.0.1. You can download the file using the wget command as follows:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">wget <a href=\"https:\/\/download.nextcloud.com\/server\/releases\/nextcloud-19.0.1.zip\">https:\/\/download.nextcloud.com\/server\/releases\/nextcloud-19.0.1.zip<\/a><\/pre>\n\n\n\n<p>2. Once the file is downloaded, unzip it using the following command:\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">unzip nextcloud-19.0.1.zip\u00a0<\/pre>\n\n\n\n<p>3. Once unzipped, rename the folder to \u201cnextcloud\u201d and copy it to the document root of your server, as follows:\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cp -R nextcloud\/ \/var\/www\/html\/<\/pre>\n\n\n\n<p>4. Next, create a data folder inside the nextcloud folder using the following command:\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mkdir \/var\/www\/html\/nextcloud\/data<\/pre>\n\n\n\n<p>5. Set the ownership of the nextcloud folder to be owned by \u201capache:apache\u201d using the following command:\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">chown -R apache:apache \/var\/www\/html\/nextcloud<\/pre>\n\n\n\n<p>6. Then, restart Apache using the following command:\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">systemctl restart httpd.service<\/pre>\n\n\n\n<p>7.\u00a0 Once that is done, you will need to add Apache to the server firewall using the following commands:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">firewall-cmd --zone=public --add-service=http --permanent<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">firewall-cmd --reload<\/pre>\n\n\n\n<p>8. To complete the installation, simply visit the domain name associated with the document root of your server and you should be greeted with a graphical user interface that you will then use to complete the rest of the installation.<\/p>\n<\/div><\/div>\n\n\n\n<p>Congratulations, you now know how to install Nextcloud on CentOS 8!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When using CentOS 8, you may find yourself looking for an open source cloud storage solution that you can use to set up your own file sharing network between your various devices. One option is Nextcloud, the open source cloud storage software. This software can be installed on most devices available today, making it a<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4315],"tags":[],"class_list":["post-59253","post","type-post","status-publish","format-standard","hentry","category-backup-and-restore"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Nextcloud on CentOS 8<\/title>\n<meta name=\"description\" content=\"In this article, we will outline how to configure your server and prepare to install Nextcloud on CentOS 8 using the command-line interface.\" \/>\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.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Nextcloud on CentOS 8\" \/>\n<meta property=\"og:description\" content=\"In this article, we will outline how to configure your server and prepare to install Nextcloud on CentOS 8 using the command-line interface.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-08-31T21:29:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-16T19:33:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/08\/How-to-Install-Nextcloud-on-CentOS-8-1024x538.png\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\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.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"How to Install Nextcloud on CentOS 8\",\"datePublished\":\"2020-08-31T21:29:14+00:00\",\"dateModified\":\"2021-08-16T19:33:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/\"},\"wordCount\":540,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/08\/How-to-Install-Nextcloud-on-CentOS-8-1024x538.png\",\"articleSection\":[\"Backups and Restorations\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/\",\"name\":\"How to Install Nextcloud on CentOS 8\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/08\/How-to-Install-Nextcloud-on-CentOS-8-1024x538.png\",\"datePublished\":\"2020-08-31T21:29:14+00:00\",\"dateModified\":\"2021-08-16T19:33:42+00:00\",\"description\":\"In this article, we will outline how to configure your server and prepare to install Nextcloud on CentOS 8 using the command-line interface.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/08\/How-to-Install-Nextcloud-on-CentOS-8.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/08\/How-to-Install-Nextcloud-on-CentOS-8.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Nextcloud on CentOS 8\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Nextcloud on CentOS 8","description":"In this article, we will outline how to configure your server and prepare to install Nextcloud on CentOS 8 using the command-line interface.","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.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Nextcloud on CentOS 8","og_description":"In this article, we will outline how to configure your server and prepare to install Nextcloud on CentOS 8 using the command-line interface.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2020-08-31T21:29:14+00:00","article_modified_time":"2021-08-16T19:33:42+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/08\/How-to-Install-Nextcloud-on-CentOS-8-1024x538.png","type":"","width":"","height":""}],"author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"How to Install Nextcloud on CentOS 8","datePublished":"2020-08-31T21:29:14+00:00","dateModified":"2021-08-16T19:33:42+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/"},"wordCount":540,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/08\/How-to-Install-Nextcloud-on-CentOS-8-1024x538.png","articleSection":["Backups and Restorations"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/","name":"How to Install Nextcloud on CentOS 8","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/08\/How-to-Install-Nextcloud-on-CentOS-8-1024x538.png","datePublished":"2020-08-31T21:29:14+00:00","dateModified":"2021-08-16T19:33:42+00:00","description":"In this article, we will outline how to configure your server and prepare to install Nextcloud on CentOS 8 using the command-line interface.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/08\/How-to-Install-Nextcloud-on-CentOS-8.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/08\/How-to-Install-Nextcloud-on-CentOS-8.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/backup-and-restore\/how-to-install-nextcloud-on-centos-8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Install Nextcloud on CentOS 8"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/59253","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=59253"}],"version-history":[{"count":13,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/59253\/revisions"}],"predecessor-version":[{"id":82818,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/59253\/revisions\/82818"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=59253"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=59253"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=59253"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}