{"id":737,"date":"2018-11-29T12:56:39","date_gmt":"2018-11-29T18:56:39","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=737"},"modified":"2019-05-30T15:26:05","modified_gmt":"2019-05-30T20:26:05","slug":"how-to-install-seafile-on-centos-7","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-seafile-on-centos-7\/","title":{"rendered":"How to Install Seafile on CentOS 7"},"content":{"rendered":"<div id=\"linux-1462462426\" 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>Seafile is an open source cloud storage system that allows users to easily store and synchronize files between multiple devices using the Seafile client. Using Seafile you can also create groups with file syncing, wikis, and start discussions with your team to enable easy collaboration. In this tutorial, we will guide you through the process of installing Seafile Server on a CentOS 7 VPS and all necessary dependencies.<!--more--><\/p>\n<p>Seafile offers a number of useful features. Some of them are listed above:<br \/>\n&#8211; Cross-Platform File Syncing<br \/>\n&#8211; Mobile File Access: iOS and Android apps<br \/>\n&#8211; Seafile Drive client<br \/>\n&#8211; File Versioning and Snapshot<br \/>\n&#8211; Easy File Sharing and Permission Control<br \/>\n&#8211; File locking support<br \/>\n&#8211; Online editing<br \/>\n&#8211; Backup and Data Recovery<br \/>\nand many more&#8230;<\/p>\n<h3><strong>Prerequisites<\/strong><\/h3>\n<p>&#8211; CentOS 7 VPS with full root access<br \/>\n&#8211; Python 2.7 with python-setuptools, python-imaging, python-ldap, python-mysqldb, python-urllib3, python-memcache and python-requests<br \/>\n&#8211; MySQL\/MariaDB database server<\/p>\n<h3><strong>Login and update the server<\/strong><\/h3>\n<p>Login to your CentOS 7 VPS via SSH as user root<\/p>\n<pre>ssh root@IP_Address -p Port_number<\/pre>\n<p>and update all installed packages<\/p>\n<pre>yum -y update<\/pre>\n<h3><strong>Install MariaDB<\/strong><\/h3>\n<p>Some of the Seafile components such as the ccnet server, seafile server and seahub require their own databases. So we will have to install a database server on our VPS. We will install the MariaDB server by executing the following command<\/p>\n<pre>yum install mariadb mariadb-server<\/pre>\n<p>Once MariaDB is installed, start the database server and enable it to automatically start upon server restart<\/p>\n<pre>systemctl start mariadb\nsystemctl enable mariadb<\/pre>\n<p>and execute the &#8216;mysql_secure_installation&#8217; post-installation script to set a root password for the MySQL root user and additionally strengthen the security of the database server. You can can answer the questions as the following:<\/p>\n<pre>Set root password? [Y\/n] Y\nRemove anonymous users? [Y\/n] Y\nDisallow root login remotely? [Y\/n] Y\nRemove test database and access to it? [Y\/n] Y\nReload privilege tables now? [Y\/n] Y<\/pre>\n<p>Next, login to the MariaDB server as user root and create the following databases and a database user with full privileges over the databases<\/p>\n<pre>create database `ccnet-db` character set = 'utf8';\ncreate database `seafile-db` character set = 'utf8';\ncreate database `seahub-db` character set = 'utf8';\n\ncreate user 'seafile'@'localhost' identified by 'PASSWORD';\n\nGRANT ALL PRIVILEGES ON `ccnet-db`.* to `seafile`@localhost;\nGRANT ALL PRIVILEGES ON `seafile-db`.* to `seafile`@localhost;\nGRANT ALL PRIVILEGES ON `seahub-db`.* to `seafile`@localhost;<\/pre>\n<p>Don&#8217;t forget to replace &#8216;PASSWORD&#8217; with an actual strong password.<\/p>\n<h3><strong>Install dependencies<\/strong><\/h3>\n<p>Before we start the installation of Seafile, we need to install several dependencies. Some of them are not available in the official CentOS 7 repositories, so we will have to install the EPEL repository<\/p>\n<pre>yum -y install epel-release\nrpm --import http:\/\/li.nux.ro\/download\/nux\/RPM-GPG-KEY-nux.ro<\/pre>\n<p>Once the repository is enabled, run the following command to install the necessary dependencies<\/p>\n<pre>yum -y install python-imaging MySQL-python python-distribute python-memcached python-ldap python-urllib3 ffmpeg ffmpeg-devel python-requests<\/pre>\n<pre>Download and install Seafile<\/pre>\n<p>Go to Seafile&#8217;s download page and download the installation script for CentOS 7. At the moment of writing this article the latest available version of the application is 6.2.5<\/p>\n<pre>wget https:\/\/download.seadrive.org\/seafile-server_6.2.5_x86-64.tar.gz<\/pre>\n<p>Unpack the downloaded tarball<\/p>\n<pre>tar -xzvf seafile-server_6.2.5_x86-64.tar.gz<\/pre>\n<p>It contains several installation scripts. We will use the &#8216;setup-seafile-mysql.sh&#8217; script to install and configure Seafile with the MariaDB database server. The script will check your CentOS 7 server and notify you if there is a missing dependency<\/p>\n<pre>cd seafile-server-6.2.5\n.\/setup-seafile-mysql.sh<\/pre>\n<p>Press the Enter button to start the installation and you will be prompted to enter several details. You can use the following information<\/p>\n<p>server name: servername<br \/>\nserver ip\/domain: Your_IP_Address<br \/>\nseafile data dir: \/opt\/seafile-data<br \/>\nfileserver port: 8082<br \/>\ndatabase: use existing<br \/>\nMySQL user: seafile<br \/>\npassword: PASSWORD<br \/>\nccnet database: ccnet-db<br \/>\nseafile database: seafile-db<br \/>\nseahub database: seahub-db<br \/>\ndatabase user: seafile<\/p>\n<p>If the information is correct, press Enter again to continue. After the installation is completed you will get the following output<\/p>\n<pre>-----------------------------------------------------------------\nYour seafile server configuration has been finished successfully.\n-----------------------------------------------------------------\n\nrun seafile server:     .\/seafile.sh { start | stop | restart }\nrun seahub  server:     .\/seahub.sh  { start  | stop | restart  }<\/pre>\n<p>Finally, start the Seafile Server as suggested in the output above<\/p>\n<pre>.\/seafile.sh start<\/pre>\n<p>Output:<\/p>\n<pre>..\/common\/session.c(132): using config file \/opt\/conf\/ccnet.conf\nStarting seafile server, please wait ...\nSeafile server started\n\nDone.<\/pre>\n<p>Next, start Seahub using the following command<\/p>\n<pre>.\/seahub.sh start<\/pre>\n<p>Since this is the first time you start the Seafile File server, you will have to create an administrative account<\/p>\n<pre>What is the email for the admin account?\n[ admin email ] admin@yourdomain.com\n\nWhat is the password for the admin account?\n[ admin password ] STRONG_PASSWORD\n\nEnter the password again:\n[ admin password again ] STRONG_PASSWORD\n\n----------------------------------------\nSuccessfully created seafile admin\n----------------------------------------<\/pre>\n<p>That&#8217;s all. At this point you should be able to access Seafile Server at <code>http:\/\/Your_IP:8000<\/code><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-872\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/11\/seafile.png\" alt=\"seafile\" width=\"1228\" height=\"776\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/11\/seafile.png 1228w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/11\/seafile-300x190.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/11\/seafile-768x485.png 768w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/11\/seafile-1024x647.png 1024w\" sizes=\"(max-width: 1228px) 100vw, 1228px\" \/><\/p>\n<p>For\u00a0more details on how to configure and use Seafile Server please check their official documentation.<\/p>\n<hr \/>\n<p>Of course, you don\u2019t have to do any of this if you use one of our <a href=\"https:\/\/linuxhostsupport.com\">Outsourced server support services<\/a>, in which case you can simply ask our expert Linux admins to install Seafile for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS.<\/strong><\/span> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p><div id=\"linux-835581758\" 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>Seafile is an open source cloud storage system that allows users to easily store and synchronize files between multiple devices using the Seafile client. Using Seafile you can also create groups with file syncing, wikis, and start discussions with your team to enable easy collaboration. In this tutorial, we will guide you through the process [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":739,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[17,125],"class_list":["post-737","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-centos","tag-seafile"],"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 Seafile on CentOS 7 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Seafile is an open source cloud storage system that allows users to easily store and synchronize files between multiple devices using the Seafile client.\" \/>\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-seafile-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 Seafile on CentOS 7 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Seafile is an open source cloud storage system that allows users to easily store and synchronize files between multiple devices using the Seafile client.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-seafile-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-11-29T18:56:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-05-30T20:26:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-Seafile-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=\"4 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-seafile-on-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-seafile-on-centos-7\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Seafile on CentOS 7\",\"datePublished\":\"2018-11-29T18:56:39+00:00\",\"dateModified\":\"2019-05-30T20:26:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-seafile-on-centos-7\\\/\"},\"wordCount\":650,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-seafile-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/How-to-Install-Seafile-on-CentOS-7.jpg\",\"keywords\":[\"centos\",\"seafile\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-seafile-on-centos-7\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-seafile-on-centos-7\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-seafile-on-centos-7\\\/\",\"name\":\"How to Install Seafile on CentOS 7 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-seafile-on-centos-7\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-seafile-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/How-to-Install-Seafile-on-CentOS-7.jpg\",\"datePublished\":\"2018-11-29T18:56:39+00:00\",\"dateModified\":\"2019-05-30T20:26:05+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Seafile is an open source cloud storage system that allows users to easily store and synchronize files between multiple devices using the Seafile client.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-seafile-on-centos-7\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-seafile-on-centos-7\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-seafile-on-centos-7\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/How-to-Install-Seafile-on-CentOS-7.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/How-to-Install-Seafile-on-CentOS-7.jpg\",\"width\":750,\"height\":410,\"caption\":\"How to Install Seafile on CentOS 7\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-seafile-on-centos-7\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Seafile 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 Seafile on CentOS 7 | LinuxHostSupport","description":"Seafile is an open source cloud storage system that allows users to easily store and synchronize files between multiple devices using the Seafile client.","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-seafile-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Seafile on CentOS 7 | LinuxHostSupport","og_description":"Seafile is an open source cloud storage system that allows users to easily store and synchronize files between multiple devices using the Seafile client.","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-seafile-on-centos-7\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2018-11-29T18:56:39+00:00","article_modified_time":"2019-05-30T20:26:05+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-Seafile-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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-seafile-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-seafile-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Seafile on CentOS 7","datePublished":"2018-11-29T18:56:39+00:00","dateModified":"2019-05-30T20:26:05+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-seafile-on-centos-7\/"},"wordCount":650,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-seafile-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-Seafile-on-CentOS-7.jpg","keywords":["centos","seafile"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-seafile-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-seafile-on-centos-7\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-seafile-on-centos-7\/","name":"How to Install Seafile on CentOS 7 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-seafile-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-seafile-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-Seafile-on-CentOS-7.jpg","datePublished":"2018-11-29T18:56:39+00:00","dateModified":"2019-05-30T20:26:05+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Seafile is an open source cloud storage system that allows users to easily store and synchronize files between multiple devices using the Seafile client.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-seafile-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-seafile-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-seafile-on-centos-7\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-Seafile-on-CentOS-7.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-Seafile-on-CentOS-7.jpg","width":750,"height":410,"caption":"How to Install Seafile on CentOS 7"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-seafile-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Seafile 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\/737","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=737"}],"version-history":[{"count":3,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/737\/revisions"}],"predecessor-version":[{"id":874,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/737\/revisions\/874"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/739"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=737"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=737"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=737"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}