{"id":916,"date":"2018-10-19T03:55:36","date_gmt":"2018-10-19T08:55:36","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=916"},"modified":"2018-10-19T03:55:36","modified_gmt":"2018-10-19T08:55:36","slug":"how-to-install-seafile-on-ubuntu-16-04","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/","title":{"rendered":"How to Install Seafile on Ubuntu 16.04"},"content":{"rendered":"<p><img decoding=\"async\" class=\"alignright size-full wp-image-919\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/10\/installing-seafile-on-ubuntu-16.04.jpg\" alt=\"installing seafile on ubuntu 16.04\" width=\"256\" height=\"64\" \/>SeaFile is an enterprise file hosting platform with high reliability and performance, there are Community Edition and Professional Edition. SeaFile Community Edition is an open source file storage system, it is an alternative to DropBox, we can synchronize the files between multiple computers or mobile devices using the Seafile client. In this tutorial, we will provide you with a step by step instruction on how to install SeaFile Community Edition on Ubuntu 16.04.<!--more--><\/p>\n<p><strong>Prerequisites:<\/strong><\/p>\n<ul>\n<li>Ubuntu 16.04 with minimum 2GB of RAM<\/li>\n<li>SSH access with root privileges<\/li>\n<\/ul>\n<h3>1. Log in to your server via SSH:<\/h3>\n<pre># ssh root@server_ip<\/pre>\n<p>Before starting with the SeaFile installation, it is encouraged to check that our system package database is up to date.<\/p>\n<h3>2. Update the system<\/h3>\n<pre># apt update\r\n# apt upgrade<\/pre>\n<p>The installation requires a working LAMP,\u00a0stack. If you don&#8217;t have a\u00a0LAMP stack installed, you need to install it first<\/p>\n<pre>#apt install lamp-server^<\/pre>\n<h3>3. Install dependencies<\/h3>\n<p>We need to install some dependencies prior to installing SeaFile Community Edition, run the following commands:<\/p>\n<pre># apt install python2.7 libpython2.7 python-setuptools python-imaging python-ldap python-mysqldb python-memcache python-urllib3 python-pip<\/pre>\n<p>and run<\/p>\n<pre># pip install boto<\/pre>\n<h3>4. Install SeaFile<\/h3>\n<p>Let&#8217;s create a directory to store SeaFile core files.<\/p>\n<pre># mkdir\u00a0\/opt\/seafile<\/pre>\n<pre># cd \/opt\/seafile<\/pre>\n<pre># wget https:\/\/download.seadrive.org\/seafile-server_6.3.4_x86-64.tar.gz\r\n# tar -xzvf seafile-server_6.3.4_x86-64.tar.gz<\/pre>\n<pre># cd \/opt\/seafile\/seafile-server-6.3.4<\/pre>\n<p>Let&#8217;s create a password for MySQL root user. If your MySQL root user already has a password, you can skip this step<\/p>\n<pre># mysql_secure_installation<\/pre>\n<p>Now we have configured a password for MySQL root user, let&#8217;s proceed with the installation<\/p>\n<pre># .\/setup-seafile-mysql.sh<\/pre>\n<p>During the installation process, you will be asked for MySQL root password and a new password for Seafile database user.<\/p>\n<pre>root@rose:\/opt\/seafile\/seafile-server-6.3.4# .\/setup-seafile-mysql.sh\r\nChecking python on this machine ...\r\n  Checking python module: setuptools ... Done.\r\n  Checking python module: python-imaging ... Done.\r\n  Checking python module: python-mysqldb ... Done.\r\n\r\n-----------------------------------------------------------------\r\nThis script will guide you to setup your seafile server using MySQL.\r\nMake sure you have read seafile server manual at\r\n\r\n        https:\/\/github.com\/haiwen\/seafile\/wiki\r\n\r\nPress ENTER to continue\r\n-----------------------------------------------------------------\r\n\r\n\r\nWhat is the name of the server? It will be displayed on the client.\r\n3 - 15 letters or digits\r\n[ server name ] seafile\r\n\r\nWhat is the ip or domain of the server?\r\nFor example: www.mycompany.com, 192.168.1.101\r\n[ This server&#039;s ip or domain ] 192.168.0.19\r\n\r\nWhere do you want to put your seafile data?\r\nPlease use a volume with enough free space\r\n[ default &quot;\/opt\/seafile\/seafile-data&quot; ]\r\n\r\nWhich port do you want to use for the seafile fileserver?\r\n[ default &quot;8082&quot; ]\r\n\r\n-------------------------------------------------------\r\nPlease choose a way to initialize seafile databases:\r\n-------------------------------------------------------\r\n\r\n[1] Create new ccnet\/seafile\/seahub databases\r\n[2] Use existing ccnet\/seafile\/seahub databases\r\n\r\n[ 1 or 2 ] 1\r\n\r\nWhat is the host of mysql server?\r\n[ default &quot;localhost&quot; ]\r\n\r\nWhat is the port of mysql server?\r\n[ default &quot;3306&quot; ]\r\n\r\nWhat is the password of the mysql root user?\r\n[ root password ]\r\n\r\nverifying password of user root ...\r\nverifying password of user root ...  done\r\n\r\nEnter the name for mysql user of seafile. It would be created if not exists.\r\n[ default &quot;seafile&quot; ]\r\n\r\nEnter the password for mysql user &quot;seafile&quot;:\r\n[ password for seafile ]\r\n\r\nEnter the database name for ccnet-server:\r\n[ default &quot;ccnet-db&quot; ]\r\n\r\nEnter the database name for seafile-server:\r\n[ default &quot;seafile-db&quot; ]\r\n\r\nEnter the database name for seahub:\r\n[ default &quot;seahub-db&quot; ]\r\n\r\n---------------------------------\r\nThis is your configuration\r\n---------------------------------\r\n\r\n    server name:            seafile\r\n    server ip\/domain:       192.168.0.19\r\n\r\n    seafile data dir:       \/opt\/seafile\/seafile-data\r\n    fileserver port:        8082\r\n\r\n    database:               create new\r\n    ccnet database:         ccnet-db\r\n    seafile database:       seafile-db\r\n    seahub database:        seahub-db\r\n    database user:          seafile\r\n\r\n\r\n\r\n---------------------------------\r\nPress ENTER to continue, or Ctrl-C to abort\r\n---------------------------------\r\n\r\nGenerating ccnet configuration ...\r\n\r\ndone\r\nSuccessly create configuration dir \/opt\/seafile\/ccnet.\r\nGenerating seafile configuration ...\r\n\r\nDone.\r\ndone\r\nGenerating seahub configuration ...\r\n\r\n----------------------------------------\r\nNow creating seahub database tables ...\r\n\r\n----------------------------------------\r\n\r\ncreating seafile-server-latest symbolic link ...  done\r\n\r\n\r\n\r\n\r\n-----------------------------------------------------------------\r\nYour seafile server configuration has been finished successfully.\r\n-----------------------------------------------------------------\r\n\r\nrun seafile server:     .\/seafile.sh { start | stop | restart }\r\nrun seahub  server:     .\/seahub.sh  { start  | stop | restart  }\r\n\r\n-----------------------------------------------------------------\r\nIf you are behind a firewall, remember to allow input\/output of these tcp ports:\r\n-----------------------------------------------------------------\r\n\r\nport of seafile fileserver:   8082\r\nport of seahub:               8000\r\n\r\nWhen problems occur, Refer to\r\n\r\n        https:\/\/github.com\/haiwen\/seafile\/wiki\r\n\r\nfor information.<\/pre>\n<p>Once completed, you can start SeaFile and SeaHub:<\/p>\n<pre># .\/seafile.sh start\r\n# .\/seahub.sh start<\/pre>\n<p>When starting seahub for the first time, you will be asked for your email address and a password to create a new SeaFile admin<\/p>\n<pre>root@rose:\/opt\/seafile\/seafile-server-6.3.4# .\/seahub.sh start<\/pre>\n<pre>LANG is not set in ENV, set to en_US.UTF-8\r\nLC_ALL is not set in ENV, set to en_US.UTF-8\r\nStarting seahub at port 8000 ...\r\n\r\n----------------------------------------\r\nIt&#039;s the first time you start the seafile server. Now let&#039;s create the admin account\r\n----------------------------------------\r\n\r\nWhat is the email for the admin account?\r\n[ admin email ] you@yourdomain.com\r\n\r\nWhat is the password for the admin account?\r\n[ admin password ]\r\n\r\nEnter the password again:\r\n[ admin password again ]\r\n\r\n----------------------------------------\r\nSuccessfully created seafile admin\r\n----------------------------------------\r\n\r\nSeahub is started\r\n\r\nDone.\r\n<\/pre>\n<p>Now, you can access your new SeaFile installation at http:\/\/YOUR_IP_ADDRESS:8000 or http:\/\/yourdomainname.com:8000<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-920\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/10\/install-seafile-ubuntu-16.04.jpg\" alt=\"install seafile ubuntu 16.04\" width=\"563\" height=\"555\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/10\/install-seafile-ubuntu-16.04.jpg 563w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/10\/install-seafile-ubuntu-16.04-304x300.jpg 304w\" sizes=\"(max-width: 563px) 100vw, 563px\" \/><\/p>\n<h3>5. Configure Apache<\/h3>\n<p>To access it without typing the port in the web browser, we need to create an apache virtual host and configure it as a reverse proxy. Apache module proxy_http is not enabled by default, and we need to enable it to run Apache as a reverse proxy.<\/p>\n<pre># a2enmod proxy_http<\/pre>\n<pre># nano \/etc\/apache2\/sites-available\/yourdomain.com.conf<\/pre>\n<p>Add the following lines to the file<\/p>\n<pre> &lt;VirtualHost *:80&gt;\r\n    ServerName yourdomain.com\r\n    DocumentRoot \/opt\r\n    Alias \/media  \/opt\/seafile\/seahub\/media\r\n    RewriteEngine On\r\n    &lt;Location \/media&gt;\r\n        Require all granted\r\n    &lt;\/Location&gt;\r\n    \t\r\n    ProxyPass \/seafhttp http:\/\/127.0.0.1:8082\r\n    ProxyPassReverse \/seafhttp http:\/\/127.0.0.1:8082\r\n    RewriteRule ^\/seafhttp - [QSA,L]\r\n    \r\n    SetEnvIf Authorization &quot;(.*)&quot; HTTP_AUTHORIZATION=$1\r\n    ProxyPass \/ http:\/\/127.0.0.1:8000\/\r\n    ProxyPassReverse \/ http:\/\/127.0.0.1:8000\/\r\n&lt;\/VirtualHost&gt;\r\n<\/pre>\n<p>Restart apache to apply the configuration changes<\/p>\n<pre># systemctl restart apache2<\/pre>\n<p>Now, you can access your SeaFile installation at http:\/\/yourdomain.com<\/p>\n<h3>6. Create SystemD file<\/h3>\n<p>In the previous step, we ran seafile and seahub using the provided bash script. Let&#8217;s create systemd files to make it easier to manage the application.<\/p>\n<pre># nano \/etc\/systemd\/system\/seafile.service<\/pre>\n<pre>[Unit]\r\nDescription=Seafile hub\r\nAfter=network.target seafile.service\r\n\r\n[Service]\r\nType=forking\r\n# change start to start-fastcgi if you want to run fastcgi\r\nExecStart=\/opt\/seafile\/seafile-server-latest\/seahub.sh start\r\nExecStop=\/opt\/seafile\/seafile-server-latest\/seahub.sh stop\r\nUser=www-data\r\nGroup=www-data\r\n\r\n[Install]\r\nWantedBy=multi-user.target\r\n<\/pre>\n<pre># nano \/etc\/systemd\/system\/seahub.service<\/pre>\n<p>We also need to change the permissions:<\/p>\n<pre>#\u00a0chown -R www-data: \/opt\/seafile \/tmp\/seahub_cache<\/pre>\n<pre>systemctl daemon-reload\r\nsystemctl restart seafile\r\nsystemctl restart seahub\r\nsystemctl enable seafile\r\nsystemctl enable seahub<\/pre>\n<p>If you want to access your SeaFile installation securely, you can install a free certificate from LetsEncrypt. Follow the steps below to enable HTTPS on your website.<\/p>\n<pre>apt-get install software-properties-common python-software-properties\r\nadd-apt-repository ppa:certbot\/certbot\r\napt update\r\napt-get install python-certbot-apache\r\ncertbot<\/pre>\n<p>In the last command, you will be asked for your email address and the domain name you want to install a certificate to, and whether you want to redirect HTTP to HTTPS or not. Once finished, you can access your SeaFile installation at https:\/\/yourdomain.com<\/p>\n<p>That is it, SeaFile has been successfully installed on your Ubuntu 16.04 server.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"size-full wp-image-917 alignleft\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/10\/install-seafile-on-ubuntu-16.04.jpg\" alt=\"install seafile on ubuntu 16.04\" width=\"256\" height=\"64\" \/>Of course, you don\u2019t have to <strong>Install Seafile on Ubuntu 16.04<\/strong>, if you use one of our <a href=\"https:\/\/www.linuxcloudvps.com\/ubuntu-cloud-vps.html\">Optimized Ubuntu Hosting<\/a> plans, in which case you can simply ask our expert Linux admins to install Seafile on Ubuntu 16.04 for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p>PS. If you liked this post on <strong>How to Install Seafile on Ubuntu 16.04<\/strong>, 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>SeaFile is an enterprise file hosting platform with high reliability and performance, there are Community Edition and Professional Edition. SeaFile Community Edition is an open source file storage system, it is an alternative to DropBox, we can synchronize the files between multiple computers or mobile devices using the Seafile client. In this tutorial, we will &#8230; <a title=\"How to Install Seafile on Ubuntu 16.04\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/\" aria-label=\"More on How to Install Seafile on Ubuntu 16.04\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":918,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[168,167,47],"class_list":["post-916","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-how-to-install","tag-seafile","tag-ubuntu"],"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 Ubuntu 16.04 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"SeaFile is an enterprise file hosting platform with high reliability and performance, there are Community Edition and Professional Edition. SeaFile\" \/>\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-seafile-on-ubuntu-16-04\/\" \/>\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 Ubuntu 16.04 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"SeaFile is an enterprise file hosting platform with high reliability and performance, there are Community Edition and Professional Edition. SeaFile\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/\" \/>\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-10-19T08:55:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-seafile-on-Ubuntu-16.04.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=\"6 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-seafile-on-ubuntu-16-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-seafile-on-ubuntu-16-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install Seafile on Ubuntu 16.04\",\"datePublished\":\"2018-10-19T08:55:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-seafile-on-ubuntu-16-04\\\/\"},\"wordCount\":565,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-seafile-on-ubuntu-16-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/How-to-Install-seafile-on-Ubuntu-16.04.jpg\",\"keywords\":[\"how to install\",\"seafile\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-seafile-on-ubuntu-16-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-seafile-on-ubuntu-16-04\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-seafile-on-ubuntu-16-04\\\/\",\"name\":\"How to Install Seafile on Ubuntu 16.04 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-seafile-on-ubuntu-16-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-seafile-on-ubuntu-16-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/How-to-Install-seafile-on-Ubuntu-16.04.jpg\",\"datePublished\":\"2018-10-19T08:55:36+00:00\",\"description\":\"SeaFile is an enterprise file hosting platform with high reliability and performance, there are Community Edition and Professional Edition. SeaFile\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-seafile-on-ubuntu-16-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-seafile-on-ubuntu-16-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-seafile-on-ubuntu-16-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/How-to-Install-seafile-on-Ubuntu-16.04.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/10\\\/How-to-Install-seafile-on-Ubuntu-16.04.jpg\",\"width\":600,\"height\":300,\"caption\":\"How to Install seafile on Ubuntu 16.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-seafile-on-ubuntu-16-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Seafile on Ubuntu 16.04\"}]},{\"@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 Seafile on Ubuntu 16.04 | LinuxCloudVPS Blog","description":"SeaFile is an enterprise file hosting platform with high reliability and performance, there are Community Edition and Professional Edition. SeaFile","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-seafile-on-ubuntu-16-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Seafile on Ubuntu 16.04 | LinuxCloudVPS Blog","og_description":"SeaFile is an enterprise file hosting platform with high reliability and performance, there are Community Edition and Professional Edition. SeaFile","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2018-10-19T08:55:36+00:00","og_image":[{"width":600,"height":300,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-seafile-on-Ubuntu-16.04.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":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install Seafile on Ubuntu 16.04","datePublished":"2018-10-19T08:55:36+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/"},"wordCount":565,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-seafile-on-Ubuntu-16.04.jpg","keywords":["how to install","seafile","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/","name":"How to Install Seafile on Ubuntu 16.04 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-seafile-on-Ubuntu-16.04.jpg","datePublished":"2018-10-19T08:55:36+00:00","description":"SeaFile is an enterprise file hosting platform with high reliability and performance, there are Community Edition and Professional Edition. SeaFile","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-seafile-on-Ubuntu-16.04.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2018\/10\/How-to-Install-seafile-on-Ubuntu-16.04.jpg","width":600,"height":300,"caption":"How to Install seafile on Ubuntu 16.04"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-seafile-on-ubuntu-16-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Seafile on Ubuntu 16.04"}]},{"@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\/916","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=916"}],"version-history":[{"count":1,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/916\/revisions"}],"predecessor-version":[{"id":921,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/916\/revisions\/921"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/918"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=916"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=916"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=916"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}