{"id":776,"date":"2018-05-28T02:31:18","date_gmt":"2018-05-28T07:31:18","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=776"},"modified":"2018-08-17T02:32:31","modified_gmt":"2018-08-17T07:32:31","slug":"how-to-install-nextcloud-13-on-centos-7","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-on-centos-7\/","title":{"rendered":"How to Install NextCloud 13 on CentOS 7"},"content":{"rendered":"<p>In this tutorial will show you\u00a0 how to install NextCloud 13 on CentOS 7 . NextCloud is free and open-source file sharing and communication self-hosted software.\u00a0 It is used as storage of personal files, photos, songs, contacts and many other types of files and the best part is that you have access to them at any time and you can also share them with your friends\/colleges. NextCloud is highly secured collaboration software that is\u00a0 HIPPA and GDPR compliant. It is the best alternative of the popular application ownCloud. Let&#8217;s get started with the tutorial.<\/p>\n<p><!--more--><\/p>\n<h2>1. Login via SSH<\/h2>\n<p>The first thing you should do is to login to your server via SSH as user root:<\/p>\n<pre>ssh root@YOUR_IP_ADDRESS -p YOUR_PORT_NUMBER<\/pre>\n<p>do not forget to replace \u201cYOUR_IP_ADDRESS\u201d and \u201cYOUR_PORT_NUMBER\u201d with your actual server IP address and SSH port number.<\/p>\n<h2>2. Install Apache<\/h2>\n<p>In order to install Apache on your server you should run the following command:<\/p>\n<pre>sudo yum install httpd<\/pre>\n<p>When the installation is over, you can start:<\/p>\n<pre>systemctl start httpd<\/pre>\n<p>and enable automatic start of the service upon system boot with:<\/p>\n<pre>systemctl enable httpd<\/pre>\n<p>With this following command you can make sure that Apache server is running:<\/p>\n<pre>systemctl status httpd<\/pre>\n<h2>3. Install PHP 7.0<\/h2>\n<p><strong>PHP 5.4\u00a0<\/strong>which is part of\u00a0<strong>CentOS 7\u00a0<\/strong>official software repositories, therefore it reached its end.<\/p>\n<p>In order to install PHP 7 on CentOS 7 you need to have EPEL repository. When you log in as root user, run the following command so you can add it:<\/p>\n<pre>yum install epel-release<\/pre>\n<p>Then the remi repository will be installed on our server by the following command:<\/p>\n<pre>yum -y install http:\/\/rpms.remirepo.net\/enterprise\/remi-release-7.rpm<\/pre>\n<p>At this point yum config tool will be installed by us, and it will increase the yum functionality. The aim of this tool is to help us to enable\/disable repositories in centos.<\/p>\n<pre>yum -y install yum-utils<\/pre>\n<p>Next you need to enable the remi repo using the following command:<\/p>\n<pre class=\"p1\">yum-config-manager --enable remi-php70<\/pre>\n<p>Now php and some widely used php modules will be installed on the system which is the actual installation.<\/p>\n<pre>yum install httpd php70w php70w-dom php70w-mbstring php70w-gd php70w-pdo php70w-json php70w-xml php70w-zip php70w-curl php70w-mcrypt php70w-pear setroubleshoot-server bzip2 php-pecl-zip<\/pre>\n<p>Next you should check the php version in the system.<\/p>\n<pre># php -v\r\nPHP 7.0.29 (cli) (built: Mar 28 2018 07:46:18) ( NTS )\r\nCopyright (c) 1997-2017 The PHP Group\r\nZend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies<\/pre>\n<h2>4. Install MariaDB Database Server<\/h2>\n<p>In order to force yum to install the latest version you should add the MariaDB 10.2 repository.<\/p>\n<p><strong>\/etc\/yum.repos.d\/MariaDB.repo<\/strong><\/p>\n<pre>[mariadb]\r\nname = MariaDB-10.2.14\r\nbaseurl = http:\/\/yum.mariadb.org\/10.2.14\/centos7-amd64\r\ngpgkey=https:\/\/yum.mariadb.org\/RPM-GPG-KEY-MariaDB\r\ngpgcheck=1<\/pre>\n<p>In order to install MariaDB service on your system run the following command::<\/p>\n<pre>yum install mariadb mariadb-server -y<\/pre>\n<p>To get MariaDB running, type:<\/p>\n<pre>systemctl start mariadb<\/pre>\n<p>If you want to have it automatically start at server boot you can do this, enter the following command:<\/p>\n<pre>systemctl enable mariadb<\/pre>\n<p>You can run the <code>mysql_secure_installation<\/code> script to harden the security on your MariaDB server:<\/p>\n<pre>mysql_secure_installation<\/pre>\n<p>Now you should create a database and user for Nextcloud in MariaDB. Login as <code>root<\/code> and enter the password set earlier. Make sure to create a strong password to replace the <code>YOUR-PASSWORD<\/code> text:<\/p>\n<pre>mysql -u root -p\r\n\r\nMariaDB [(none)]&amp;gt; CREATE DATABASE nextcloud_db;\r\nMariaDB [(none)]&amp;gt; GRANT ALL PRIVILEGES ON nextcloud_db.* TO &#039;nextcloud_user&#039;@&#039;localhost&#039; IDENTIFIED BY &#039;YOUR-PASSWORD&#039; WITH GRANT OPTION;\r\nMariaDB [(none)]&amp;gt; FLUSH PRIVILEGES;\r\nMariaDB [(none)]&amp;gt; quit<\/pre>\n<h2>5. NextClould Installation<\/h2>\n<p>When the hosting environment is ready and your new database for NextCloud is created you can proceed with the installation steps.<\/p>\n<p>In order to download and extract the latest NextCloud 13 installation files you should fun the following command:<\/p>\n<pre>cd \/var\/www\r\nwget https:\/\/download.nextcloud.com\/server\/releases\/latest-13.zip\r\nunzip latest-13.zip\r\nchown -R apache:apache nextcloud\r\nrm latest-13.zip<\/pre>\n<h2>6. Set up Apache Virtual Host<\/h2>\n<p>Now, you should create an Apache virtual host configuration file so you can access your NextCloud using your domain name. The nano text editor will help you to create this:<\/p>\n<pre>nano \/etc\/httpd\/conf.d\/nextcloud.conf<\/pre>\n<p>Next you should enter this information into the file:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\nServerAdmin admin@yourdomain.com\r\nDocumentRoot \/var\/www\/nextcloud\r\nServerName yourdomain.com\r\nServerAlias www.yourdomain.com\r\n\r\nAlias \/nextcloud &quot;\/var\/www\/nextcloud\/&quot;\r\n&lt;Directory \/var\/www\/nextcloud\/&gt;\r\n Options +FollowSymlinks\r\n AllowOverride All\r\n\r\n&lt;IfModule mod_dav.c&gt;\r\n Dav off\r\n &lt;\/IfModule&gt;\r\n\r\nSetEnv HOME \/var\/www\/nextcloud\r\n SetEnv HTTP_HOME \/var\/www\/nextcloud\r\n&lt;\/Directory&gt;\r\n\r\nErrorLog \/var\/log\/httpd\/nextcloud-error_log\r\nCustomLog \/var\/log\/httpd\/nextcloud-access_log common\r\n&lt;\/VirtualHost&gt;<\/pre>\n<p>In the end you should restart the Apache web server:<\/p>\n<pre>systemctl restart httpd<\/pre>\n<h2>7. Complete the NextClould Installation via Web Browser<\/h2>\n<p>Now you can visit your <strong>http:\/\/yourdomain.com<\/strong> (or <strong>http:\/\/YOUR_IP_ADDRESS<\/strong>) and follow the on-screen instructions to finish the installation of NextCloud.<\/p>\n<p>&nbsp;<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-777\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/05\/how-to-install-NextCloud-13-on-CentOS-7.png\" alt=\"how to install NextCloud 13 on CentOS 7\" width=\"1222\" height=\"1024\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/05\/how-to-install-NextCloud-13-on-CentOS-7.png 1222w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/05\/how-to-install-NextCloud-13-on-CentOS-7-358x300.png 358w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/05\/how-to-install-NextCloud-13-on-CentOS-7-768x644.png 768w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/05\/how-to-install-NextCloud-13-on-CentOS-7-970x813.png 970w\" sizes=\"(max-width: 1222px) 100vw, 1222px\" \/><\/p>\n<p>At this point you, by choosing your username and password, should create your own admin user account. You should enter the database information which we have created earlier under the &#8220;Storage &amp; Database&#8221; section and then you should click &#8220;Finish Setup&#8221;.<\/p>\n<p>Now you have completed all steps and the NextCloud is successfully installed. If you want to use it you can login using the login credentials of your admin user.<\/p>\n<p>Certainly, you do not need to\u00a0Install NextCloud 13 on CentOS 7, you can always use one of our <a href=\"https:\/\/www.linuxcloudvps.com\/centos-cloud-vps.html\">CentOS Hosting services<\/a>, and in such case you simply need to ask our expert Linux admins to setup this 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, on How To Install NextCloud 13 on CentOS 7, 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>In this tutorial will show you\u00a0 how to install NextCloud 13 on CentOS 7 . NextCloud is free and open-source file sharing and communication self-hosted software.\u00a0 It is used as storage of personal files, photos, songs, contacts and many other types of files and the best part is that you have access to them at &#8230; <a title=\"How to Install NextCloud 13 on CentOS 7\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-on-centos-7\/\" aria-label=\"More on How to Install NextCloud 13 on CentOS 7\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":778,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[22,144],"class_list":["post-776","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-centos","tag-nextcloud"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install NextCloud 13 on CentOS 7 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"In this tutorial will show you\u00a0 how to install NextCloud 13 on CentOS 7 . NextCloud is free and open-source file sharing and communication self-hosted\" \/>\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-nextcloud-13-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 NextCloud 13 on CentOS 7 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"In this tutorial will show you\u00a0 how to install NextCloud 13 on CentOS 7 . NextCloud is free and open-source file sharing and communication self-hosted\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-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-05-28T07:31:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-08-17T07:32:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/05\/How-to-Install-NextCloud-13-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=\"5 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-nextcloud-13-on-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nextcloud-13-on-centos-7\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install NextCloud 13 on CentOS 7\",\"datePublished\":\"2018-05-28T07:31:18+00:00\",\"dateModified\":\"2018-08-17T07:32:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nextcloud-13-on-centos-7\\\/\"},\"wordCount\":710,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nextcloud-13-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/How-to-Install-NextCloud-13-on-CentOS-7.jpg\",\"keywords\":[\"centos\",\"nextcloud\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nextcloud-13-on-centos-7\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nextcloud-13-on-centos-7\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nextcloud-13-on-centos-7\\\/\",\"name\":\"How to Install NextCloud 13 on CentOS 7 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nextcloud-13-on-centos-7\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nextcloud-13-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/How-to-Install-NextCloud-13-on-CentOS-7.jpg\",\"datePublished\":\"2018-05-28T07:31:18+00:00\",\"dateModified\":\"2018-08-17T07:32:31+00:00\",\"description\":\"In this tutorial will show you\u00a0 how to install NextCloud 13 on CentOS 7 . NextCloud is free and open-source file sharing and communication self-hosted\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nextcloud-13-on-centos-7\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nextcloud-13-on-centos-7\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nextcloud-13-on-centos-7\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/How-to-Install-NextCloud-13-on-CentOS-7.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/How-to-Install-NextCloud-13-on-CentOS-7.jpg\",\"width\":600,\"height\":300},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-nextcloud-13-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 NextCloud 13 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 NextCloud 13 on CentOS 7 | LinuxCloudVPS Blog","description":"In this tutorial will show you\u00a0 how to install NextCloud 13 on CentOS 7 . NextCloud is free and open-source file sharing and communication self-hosted","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-nextcloud-13-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Install NextCloud 13 on CentOS 7 | LinuxCloudVPS Blog","og_description":"In this tutorial will show you\u00a0 how to install NextCloud 13 on CentOS 7 . NextCloud is free and open-source file sharing and communication self-hosted","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-on-centos-7\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2018-05-28T07:31:18+00:00","article_modified_time":"2018-08-17T07:32:31+00:00","og_image":[{"width":600,"height":300,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/05\/How-to-Install-NextCloud-13-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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install NextCloud 13 on CentOS 7","datePublished":"2018-05-28T07:31:18+00:00","dateModified":"2018-08-17T07:32:31+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-on-centos-7\/"},"wordCount":710,"commentCount":4,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/05\/How-to-Install-NextCloud-13-on-CentOS-7.jpg","keywords":["centos","nextcloud"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-on-centos-7\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-on-centos-7\/","name":"How to Install NextCloud 13 on CentOS 7 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/05\/How-to-Install-NextCloud-13-on-CentOS-7.jpg","datePublished":"2018-05-28T07:31:18+00:00","dateModified":"2018-08-17T07:32:31+00:00","description":"In this tutorial will show you\u00a0 how to install NextCloud 13 on CentOS 7 . NextCloud is free and open-source file sharing and communication self-hosted","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-on-centos-7\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/05\/How-to-Install-NextCloud-13-on-CentOS-7.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/05\/How-to-Install-NextCloud-13-on-CentOS-7.jpg","width":600,"height":300},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-nextcloud-13-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 NextCloud 13 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\/776","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=776"}],"version-history":[{"count":2,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/776\/revisions"}],"predecessor-version":[{"id":853,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/776\/revisions\/853"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/778"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=776"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=776"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=776"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}