{"id":505,"date":"2018-04-04T02:46:46","date_gmt":"2018-04-04T07:46:46","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=505"},"modified":"2018-04-05T01:40:17","modified_gmt":"2018-04-05T06:40:17","slug":"how-to-install-owncloud-10-on-centos-7","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/","title":{"rendered":"How to Install ownCloud 10 on CentOS 7"},"content":{"rendered":"<div id=\"linux-2507461287\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>Today we have a tutorial on how to install ownCloud 10 on CentOS 7.\u00a0 ownCloud is a popular open source web application used for data synchronization, file sharing, collaboration . It is a cross-platform and super easy to use application that that offers a great security and total control of your files.You can use our <a href=\"https:\/\/linuxhostsupport.com\">Server Support Services,<\/a> and we will install ownCloud on your private server with easy, and we will do all the configuration and hardening required. We are always available via the Live Chat option in the bottom right corner of our website, where you can ask for more info, about time-frame, pricing, etc.. Let&#8217;s get started with installing ownCloud 10.<\/p>\n<p><!--more--><\/p>\n<p><img decoding=\"async\" class=\"size-full wp-image-509 aligncenter\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/install-owncloud-10-on-centos-7.jpg\" alt=\"install owncloud 10 on centos 7\" width=\"300\" height=\"188\" \/><\/p>\n<p>At the time of writing this tutorial, the latest stable version of ownCloud is 10.0.7, and it requires the following:<\/p>\n<ul>\n<li>PHP &gt;= 5.6 (PHP 7.0 or above is recommended), with the following PHP extensions enabled: XML (Expat), curl, PDO, Phar, GD Graphics Library version 2.0.x+, DOM, ctype, JSON, iconv, intl, mcrypt, openssl, bz2, Zlib and Zip.<\/li>\n<li>Apache Web Server &gt;= 2.0 compiled with mod_rewrite module<\/li>\n<li>MySQL &gt;= 5.x (MySQL 5.5 or later is recommended), MariaDB 5.5+, PostgreSQL, or SQLite installed on your Linux virtual server.<\/li>\n<\/ul>\n<p>Let&#8217;s start with the ownCloud installation procedure.<\/p>\n<h2>1. Update the OS packages<\/h2>\n<p>Make sure the CentOS 7 server packages are fully up-to-date:<\/p>\n<pre>yum clean all\r\nyum -y update<\/pre>\n<h2>2. Install PHP 7.1 and the required PHP extensions<\/h2>\n<p>The default PHP version on CentOS 7 is PHP 5.4. In this tutorial, we will install PHP version 7.<\/p>\n<p>Install EPEL and Remi repository packages:<\/p>\n<pre>rpm -Uvh https:\/\/dl.fedoraproject.org\/pub\/epel\/epel-release-latest-7.noarch.rpm\r\nrpm -Uvh http:\/\/rpms.remirepo.net\/enterprise\/remi-release-7.rpm\r\n<\/pre>\n<p>Enable the Remi PHP 7.1 repository:<\/p>\n<pre>yum-config-manager --enable remi-php71<\/pre>\n<p>and install PHP 7.1 and several PHP extensions required by ownCloud by running the following command:<\/p>\n<pre>yum install php php-mysqlnd php-pecl-zip php-xml php-mbstring php-gd php-mcrypt php-pear php-pspell php-pdo php-xml php-intl php-zip php-zlib<\/pre>\n<p>Open the PHP configuration file and increase the upload file size. You can find the location of the PHP configuration file by executing the following command:<\/p>\n<pre>php -i | grep -i php.ini\r\nConfiguration File (php.ini) Path =&gt; \/etc\r\nLoaded Configuration File =&gt; \/etc\/php.ini<\/pre>\n<p>Increase the default post_max_size and upload_max_filesize values in the PHP configuration, e.g.:<\/p>\n<pre>sed -i \"s\/post_max_size = 8M\/post_max_size = 256M\/\" \/etc\/php.ini\r\nsed -i \"s\/upload_max_filesize = 2M\/upload_max_filesize = 256M\/\" \/etc\/php.ini<\/pre>\n<p>You can set the post_max_size and upload_max_filesize values according to your needs.<br \/>\nDo not forget to restart the Apache service for the changes to take effect:<\/p>\n<pre>systemctl restart httpd.service<\/pre>\n<h2>3. Download and extract ownCloud<\/h2>\n<p>Download ownCloud 10.0.7 available at http:\/\/download.owncloud.org\/ in some directory on the server and extract the downloaded ownCloud archive using the following commands:<\/p>\n<pre>cd \/opt\r\nwget https:\/\/download.owncloud.org\/community\/owncloud-10.0.7.zip\r\nyum -y install unzip \r\nunzip -d \/var\/www\/html\/ owncloud-10.0.7.zip<\/pre>\n<p>Change the permissions on the owncloud directory:<\/p>\n<pre>chown apache:apache -R \/var\/www\/html\/owncloud\/<\/pre>\n<h2>4. Create a new MySQL database<\/h2>\n<p>Create a new MySQL database for ownCloud on your server:<\/p>\n<pre>mysql -u root -p\r\nmysql&gt; CREATE DATABASE ownclouddb;\r\nmysql&gt; GRANT ALL PRIVILEGES ON ownclouddb.* TO 'ownclouduser'@'localhost' IDENTIFIED BY 'Y0ur-pa55w0rD' WITH GRANT OPTION;\r\nmysql&gt; FLUSH PRIVILEGES;\r\nmysql&gt; quit<\/pre>\n<p>Create a new virtual host directive in Apache. For example, create a new Apache configuration file named \u2018owncloud.conf\u2019 on your virtual server:<\/p>\n<pre>touch \/etc\/httpd\/conf.d\/owncloud.conf\r\nvi \/etc\/httpd\/conf.d\/owncloud.conf<\/pre>\n<p>Then, add the following lines:<\/p>\n<pre>&lt;VirtualHost YOUR_SERVER_IP:80&gt;\r\nServerAdmin webmaster@yourdomain.com\r\nDocumentRoot \"\/var\/www\/html\/owncloud\/\"\r\nServerName yourdomain.com\r\nServerAlias www.yourdomain.com\r\n\r\nErrorLog \"\/var\/log\/httpd\/yourdomain.com-error_log\"\r\nCustomLog \"\/var\/log\/httpd\/yourdomain.com-access_log\" combined\r\n\r\n&lt;Directory \"\/var\/www\/html\/owncloud\/\"&gt;\r\nDirectoryIndex index.html index.php\r\nOptions FollowSymLinks\r\nAllowOverride All\r\nRequire all granted\r\n&lt;\/Directory&gt;\r\n&lt;\/VirtualHost&gt;\r\n<\/pre>\n<p>Create a new ownCloud data directory outside of the document root directory:<\/p>\n<pre>mkdir -p \/opt\/data\r\nchown apache:apache -R \/opt\/data\/<\/pre>\n<p>Restart the Apache web server for the changes to take effect:<\/p>\n<pre>systemctl restart httpd<\/pre>\n<h2>5. Install a new SSL certificate<\/h2>\n<p>Install a new SSL certificate from Let&#8217;sEncrypt, or obtain a new SSL certificate from some Certificate Authority.<\/p>\n<pre>yum -y install mod_ssl python-certbot-apache\r\ncertbot --apache -d yourdomain.com<\/pre>\n<p>Replace &#8216;yourdomain.com&#8217; with the actual domain name you want to use to access the ownCloud installation.<\/p>\n<h2>6. Continue the ownCloud installation using a web browser<\/h2>\n<p>Open https:\/\/yourdomain.com in your favorite web browser, create a new administrator account (set an admin username and password), click on &#8216;Storage &amp; database&#8217;, change the &#8216;data&#8217; directory to &#8216;\/opt\/data&#8217; (do not leave the default setting &#8216;\/var\/www\/html\/owncloud\/data&#8217;). Click on &#8216;Configure the database&#8217;, select MySQL\/MariaDB, enter the database information (MariaDB username, password, database name and localhost:3306 as MariaDB hostname\/port) and finally click on the &#8216;Finish setup&#8217; button.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-508\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/installing-owncloud-10-on-centos-7.jpg\" alt=\"installing owncloud 10 on centos 7\" width=\"600\" height=\"435\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/installing-owncloud-10-on-centos-7.jpg 600w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/installing-owncloud-10-on-centos-7-300x218.jpg 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" \/><\/p>\n<p style=\"text-align: center;\"><strong>That is it, the OwnCloud 10 installation on your CentOs 7 server is now complete.<\/strong><\/p>\n<p>&nbsp;<\/p>\n<hr \/>\n<p>Of course, you don\u2019t have to install and configure OwnCloud 10 on a CentOS 7 VPS, if you use one of our <a href=\"https:\/\/linuxhostsupport.com\/per-incident-support.html\">Hosting Support Services<\/a>, in which case our expert Linux admins will to install and configure OwnCloud 10 on CentOS 7 for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS<\/strong><\/span>. If you liked this post on how to install and configure OwnCloud 10 on a CentOS 7 VPS, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p><div id=\"linux-2902612923\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Today we have a tutorial on how to install ownCloud 10 on CentOS 7.\u00a0 ownCloud is a popular open source web application used for data synchronization, file sharing, collaboration . It is a cross-platform and super easy to use application that that offers a great security and total control of your files.You can use our [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":506,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[61,24],"class_list":["post-505","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-centos-7","tag-owncloud"],"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 ownCloud 10 on CentOS 7 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Today we have a tutorial on how to install ownCloud 10 on CentOS 7.\u00a0 ownCloud is a popular open source web application used for data synchronization, file\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-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 ownCloud 10 on CentOS 7 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Today we have a tutorial on how to install ownCloud 10 on CentOS 7.\u00a0 ownCloud is a popular open source web application used for data synchronization, file\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2018-04-04T07:46:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-04-05T06:40:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-owncloud-10-on-centos-7.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\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=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\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:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-centos-7\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install ownCloud 10 on CentOS 7\",\"datePublished\":\"2018-04-04T07:46:46+00:00\",\"dateModified\":\"2018-04-05T06:40:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-centos-7\\\/\"},\"wordCount\":670,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/how-to-install-owncloud-10-on-centos-7.jpg\",\"keywords\":[\"centos 7\",\"owncloud\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-centos-7\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-centos-7\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-centos-7\\\/\",\"name\":\"How to Install ownCloud 10 on CentOS 7 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-centos-7\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/how-to-install-owncloud-10-on-centos-7.jpg\",\"datePublished\":\"2018-04-04T07:46:46+00:00\",\"dateModified\":\"2018-04-05T06:40:17+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Today we have a tutorial on how to install ownCloud 10 on CentOS 7.\u00a0 ownCloud is a popular open source web application used for data synchronization, file\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-centos-7\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-centos-7\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-centos-7\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/how-to-install-owncloud-10-on-centos-7.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/how-to-install-owncloud-10-on-centos-7.jpg\",\"width\":750,\"height\":410,\"caption\":\"how to install owncloud 10 on centos 7\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-owncloud-10-on-centos-7\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install ownCloud 10 on CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install ownCloud 10 on CentOS 7 | LinuxHostSupport","description":"Today we have a tutorial on how to install ownCloud 10 on CentOS 7.\u00a0 ownCloud is a popular open source web application used for data synchronization, file","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:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Install ownCloud 10 on CentOS 7 | LinuxHostSupport","og_description":"Today we have a tutorial on how to install ownCloud 10 on CentOS 7.\u00a0 ownCloud is a popular open source web application used for data synchronization, file","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2018-04-04T07:46:46+00:00","article_modified_time":"2018-04-05T06:40:17+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-owncloud-10-on-centos-7.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install ownCloud 10 on CentOS 7","datePublished":"2018-04-04T07:46:46+00:00","dateModified":"2018-04-05T06:40:17+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/"},"wordCount":670,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-owncloud-10-on-centos-7.jpg","keywords":["centos 7","owncloud"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/","name":"How to Install ownCloud 10 on CentOS 7 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-owncloud-10-on-centos-7.jpg","datePublished":"2018-04-04T07:46:46+00:00","dateModified":"2018-04-05T06:40:17+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Today we have a tutorial on how to install ownCloud 10 on CentOS 7.\u00a0 ownCloud is a popular open source web application used for data synchronization, file","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-owncloud-10-on-centos-7.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-owncloud-10-on-centos-7.jpg","width":750,"height":410,"caption":"how to install owncloud 10 on centos 7"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-owncloud-10-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install ownCloud 10 on CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/505","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=505"}],"version-history":[{"count":7,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/505\/revisions"}],"predecessor-version":[{"id":516,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/505\/revisions\/516"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/506"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=505"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=505"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=505"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}