{"id":1349,"date":"2021-01-20T07:18:38","date_gmt":"2021-01-20T13:18:38","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1349"},"modified":"2022-07-26T01:32:48","modified_gmt":"2022-07-26T06:32:48","slug":"how-to-install-sogo-on-ubuntu-20-04","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-sogo-on-ubuntu-20-04\/","title":{"rendered":"How to Install SOGo on Ubuntu 20.04"},"content":{"rendered":"<div id=\"linux-2353646297\" 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><img decoding=\"async\" class=\"size-full wp-image-1351 alignright\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/01\/installing-sogo-on-ubuntu-20.04.jpg\" alt=\"installing sogo on ubuntu 20.04\" width=\"150\" height=\"79\" \/>SOGo is a free and open-source collaborative software with a focus on simplicity and scalability. It provides an AJAX-based Web interface and supports multiple native clients through the use of standard protocols such as CalDAV, CardDAV, and GroupDAV, as well as Microsoft ActiveSync. It also offers address book management, calendaring, and Web-mail clients along with resource sharing and permission handling.<\/p>\n<p>In this tutorial, we will show you how to install SOGo on an Ubuntu 20.04 based virtual private server.<\/p>\n<p><!--more--><\/p>\n<h2 id=\"h-prerequisites\">Prerequisites<\/h2>\n<ul>\n<li>An Ubuntu 20.04 VPS (we\u2019ll be using our SSD 2 VPS plan)<\/li>\n<li>Access to the root user account (or access to an admin account with root privileges)<\/li>\n<\/ul>\n<h2 id=\"h-step-1-log-in-to-the-server-update-the-server-os-packages\"><span id=\"Step-1-Log-in-to-the-Server-Update-the-Server-OS-Packages\" class=\"ez-toc-section\"><\/span>Step 1: Log in to the Server &amp; Update the Server OS Packages<\/h2>\n<p>First, log in to your Ubuntu 20.04 server via SSH as the root user:<\/p>\n<pre class=\"wp-block-preformatted\">ssh root@IP_Address -p Port_number<\/pre>\n<p>You will need to replace \u2018IP_Address\u2018 and \u2018Port_number\u2018 with your server\u2019s respective IP address and SSH port number. Additionally, replace \u2018root\u2019 with the username of the admin account if necessary.<\/p>\n<p>Before starting, you have to make sure that all Ubuntu OS packages installed on the server are up to date. You can do this by running the following commands:<\/p>\n<pre class=\"wp-block-preformatted\">apt-get update -y\napt-get upgrade -y<\/pre>\n<h2 id=\"h-step-2-install-and-configure-mariadb-server\"><span id=\"Step-2-Install-and-Configure-MariaDB-Server\" class=\"ez-toc-section\"><\/span>Step 2: Install and Configure MariaDB Server<\/h2>\n<p>SOGo uses MariaDB, MySQL, or PostgreSQL as a database backend. So you will need to install the database server in your server.<\/p>\n<p>You can install the MariaDB server by running the following command:<\/p>\n<pre class=\"wp-block-preformatted\">apt-get install mariadb-server -y<\/pre>\n<p>Once installed, log in to the MariaDB shell with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">mysql<\/pre>\n<p>After login, create a database and use it for SOGo with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">MariaDB [(none)]&gt; CREATE DATABASE sogo;\nMariaDB [(none)]&gt; GRANT ALL ON sogo.* TO 'sogo'@'localhost' IDENTIFIED BY 'your-secure-password';<\/pre>\n<p>Next, change the database to SOGo and create a required table and insert some values with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">MariaDB [(none)]&gt; USE sogo;\nMariaDB [sogo]&gt; CREATE TABLE sogo_users (c_uid VARCHAR(10) PRIMARY KEY, c_name VARCHAR(10), c_password VARCHAR(32), c_cn VARCHAR(128), mail VARCHAR(128));\nMariaDB [sogo]&gt; INSERT INTO sogo_users VALUES ('admin1', 'admin1', MD5('your-secure-password'), 'SOGouser', 'sogo@example.com');<\/pre>\n<p>Next, flush the privileges and exit from the MariaDB with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">MariaDB [sogo]&gt; flush privileges; \nMariaDB [sogo]&gt; exit;<\/pre>\n<p>Now, the MariaDB database server is installed and configured.<\/p>\n<h2 id=\"h-step-3-install-sogo\"><span id=\"Step-3-Install-SOGo\" class=\"ez-toc-section\"><\/span>Step 3: Install SOGo<\/h2>\n<p>By default, SOGo is not available in the Ubuntu 20.04 standard repository. So you will need to download their packages from the SOGo official website. All packages are available at <a href=\"https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/\">Sope<\/a> and <a href=\"https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sogo\/\">Sogo<\/a><\/p>\n<p>You can download all the packages using the following command:<\/p>\n<pre class=\"wp-block-preformatted\">wget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sogo\/sogo-activesync_5.0.1.20201101-1_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sogo\/sogo-dbg_5.0.1.20201101-1_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sogo\/sogo-dev_5.0.1.20201101-1_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sogo\/sogo_5.0.1.20201101-1_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/libsbjson2.3-dev_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/libsbjson2.3_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/libsope-appserver4.9-dev_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/libsope-appserver4.9_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/libsope-core4.9-dev_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/libsope-core4.9_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/libsope-gdl1-4.9-dev_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/libsope-gdl1-4.9_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/libsope-ldap4.9-dev_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/libsope-ldap4.9_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/libsope-mime4.9_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/libsope-xml4.9-dev_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/libsope-xml4.9_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/libsope4.9-dev_4.9.r1664.20201016_all.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/sope4.9-appserver_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/sope4.9-dbg_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/sope4.9-gdl1-mysql_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/sope4.9-gdl1-postgresql_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/sope4.9-libxmlsaxdriver_4.9.r1664.20201016_amd64.deb\nwget https:\/\/packages.inverse.ca\/SOGo\/nightly\/5\/ubuntu\/pool\/focal\/s\/sope\/sope4.9-stxsaxdriver_4.9.r1664.20201016_amd64.deb<\/pre>\n<p>Once all the packages are downloaded, run the following command to install them:<\/p>\n<pre class=\"wp-block-preformatted\">dpkg -i *.deb<\/pre>\n<p>Next, run the following command to install all missing dependencies:<\/p>\n<pre class=\"wp-block-preformatted\">apt-get install -f<\/pre>\n<p>Once SOGo is installed, start the SOGo service and enable it to start at system reboot:<\/p>\n<pre class=\"wp-block-preformatted\">systemctl start sogo\nsystemctl enable sogo<\/pre>\n<h2 id=\"h-step-4-install-and-configure-apache\"><span id=\"Step-4-Install-and-Configure-Apache\" class=\"ez-toc-section\"><\/span>Step 4: Install and Configure Apache<\/h2>\n<p>Next, you will need to install the Apache webserver for SOGo. You can install it with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">apt-get install apache2 -y<\/pre>\n<p>Next, enable all required modules with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">a2enmod proxy proxy_http headers rewrite\na2enconf SOGo.conf<\/pre>\n<p>Next, edit the SOGo virtual host configuration file:<\/p>\n<pre class=\"wp-block-preformatted\">nano \/etc\/apache2\/conf-enabled\/SOGo.conf<\/pre>\n<p>Find the following lines:<\/p>\n<pre class=\"wp-block-preformatted\">  RequestHeader set \"x-webobjects-server-port\" \"443\"\n  RequestHeader set \"x-webobjects-server-url\" \"https:\/\/%{HTTP_HOST}e\" env=HTTP_HOST\n<\/pre>\n<p>And, replaced them with the following:<\/p>\n<pre class=\"wp-block-preformatted\">  RequestHeader set \"x-webobjects-server-port\" \"80\"\n  RequestHeader set \"x-webobjects-server-url\" \"http:\/\/%{HTTP_HOST}e\" env=HTTP_HOST<\/pre>\n<p>Save and close the file then restart the Apache service to apply the changes:<\/p>\n<pre class=\"wp-block-preformatted\">systemctl restart apache2<\/pre>\n<h2 id=\"h-step-5-configure-sogo\"><span id=\"Step-5-Configure-SOGo\" class=\"ez-toc-section\"><\/span>Step 5: Configure SOGo<\/h2>\n<p>Next, you will need to configure SOGo to use MariaDB for authentication. You can do it by editing the SOGo main configuration file:<\/p>\n<pre class=\"wp-block-preformatted\">nano \/etc\/sogo\/sogo.conf<\/pre>\n<p>Add the following lines at the end of the file as per your database settings:<\/p>\n<pre class=\"wp-block-preformatted\">SOGoProfileURL = \"mysql:\/\/sogo:your-secure-password@localhost:3306\/sogo\/sogo_user_profile\";\nOCSFolderInfoURL = \"mysql:\/\/sogo:your-secure-password@localhost:3306\/sogo\/sogo_folder_info\";\nOCSSessionsFolderURL = \"mysql:\/\/sogo:your-secure-password@localhost:3306\/sogo\/sogo_sessions_folder\";\n\nSOGoPasswordChangeEnabled = YES;\n\nSOGoUserSources =\n  (\n    {\n      type = sql;\n      id = users;\n     viewURL = \"mysql:\/\/sogo:your-secure-password@127.0.0.1:3306\/sogo\/sogo_users\";\n     canAuthenticate = YES;\n     isAddressBook = NO;\n      userPasswordAlgorithm = md5;\n    }\n  );\n\n  SOGoPageTitle = SOGo;\n  SOGoVacationEnabled = YES;\n  SOGoForwardEnabled = YES;\n  SOGoSieveScriptsEnabled = YES;\n  SOGoMailAuxiliaryUserAccountsEnabled = YES;\n  SOGoTrustProxyAuthentication = NO;\n  SOGoXSRFValidationEnabled = YES;\n\n  SOGoSuperUsernames = (admin1, admin2); \/\/ This is an array - keep the parents!\n<\/pre>\n<p>Save and close the file when you are finished then restart the SOGo service to apply the changes:<\/p>\n<pre class=\"wp-block-preformatted\">systemctl restart sogo<\/pre>\n<h2 id=\"h-step-6-access-sogo-web-ui\"><span id=\"Step-6-Access-SOGo-Web-UI\" class=\"ez-toc-section\"><\/span>Step 6: Access SOGo Web UI<\/h2>\n<p>Now, open your web browser and type the URL <code>http:\/\/your-domain.com\/SOGo<\/code> to access the SOGo web interface. You will be redirected to the SOGo login page as shown below:<\/p>\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" class=\"size-full wp-image-1354 aligncenter\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/01\/install-sogo-ubuntu-20.04.jpg\" alt=\"install sogo ubuntu 20.04\" width=\"550\" height=\"283\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/01\/install-sogo-ubuntu-20.04.jpg 550w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/01\/install-sogo-ubuntu-20.04-300x154.jpg 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" \/><\/figure>\n<p>Provide username as admin1 and password as \u201cyour-secure-password\u201d then click on the <strong>&gt; <\/strong>button. You will be redirected to the SOGo dashboard:<\/p>\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" class=\"size-full wp-image-1355 aligncenter\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/01\/install-sogo-on-ubuntu.jpg\" alt=\"install sogo on ubuntu\" width=\"650\" height=\"324\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/01\/install-sogo-on-ubuntu.jpg 650w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/01\/install-sogo-on-ubuntu-300x150.jpg 300w\" sizes=\"(max-width: 650px) 100vw, 650px\" \/><\/figure>\n<p>That\u2019s it. You have successfully installed SOGo on your Ubuntu 20.04 based VPS.<\/p>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-1353\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/01\/install-sogo-on-ubuntu-20.04.jpg\" alt=\"install sogo on ubuntu 20.04\" width=\"150\" height=\"79\" \/>If you use one of our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\">Server Management Services<\/a>, you don&#8217;t have to install SoGo yourself, you can ask our system administrators and they will install SoGo on Ubuntu 20.04 or any other OS of your choice.<\/p>\n<p>PS. 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-1172948793\" 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>SOGo is a free and open-source collaborative software with a focus on simplicity and scalability. It provides an AJAX-based Web interface and supports multiple native clients through the use of standard protocols such as CalDAV, CardDAV, and GroupDAV, as well as Microsoft ActiveSync. It also offers address book management, calendaring, and Web-mail clients along with [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1350,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[176,175,20,174],"class_list":["post-1349","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-groupware","tag-sogo","tag-ubuntu","tag-ubuntu-20-04"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install SOGo on Ubuntu 20.04 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"SOGo is a free and open-source collaborative software with a focus on simplicity and scalability. It provides an AJAX-based Web interface and supports\" \/>\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-sogo-on-ubuntu-20-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 SOGo on Ubuntu 20.04\" \/>\n<meta property=\"og:description\" content=\"SOGo is a free and open-source collaborative software with a focus on simplicity and scalability. It provides an AJAX-based Web interface and supports\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-sogo-on-ubuntu-20-04\/\" \/>\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=\"2021-01-20T13:18:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-26T06:32:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/01\/how-to-install-sogo-on-ubuntu-20.04.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=\"6 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-sogo-on-ubuntu-20-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-sogo-on-ubuntu-20-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install SOGo on Ubuntu 20.04\",\"datePublished\":\"2021-01-20T13:18:38+00:00\",\"dateModified\":\"2022-07-26T06:32:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-sogo-on-ubuntu-20-04\\\/\"},\"wordCount\":645,\"commentCount\":12,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-sogo-on-ubuntu-20-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/how-to-install-sogo-on-ubuntu-20.04.jpg\",\"keywords\":[\"groupware\",\"sogo\",\"ubuntu\",\"ubuntu 20.04\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-sogo-on-ubuntu-20-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-sogo-on-ubuntu-20-04\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-sogo-on-ubuntu-20-04\\\/\",\"name\":\"How to Install SOGo on Ubuntu 20.04 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-sogo-on-ubuntu-20-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-sogo-on-ubuntu-20-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/how-to-install-sogo-on-ubuntu-20.04.jpg\",\"datePublished\":\"2021-01-20T13:18:38+00:00\",\"dateModified\":\"2022-07-26T06:32:48+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"SOGo is a free and open-source collaborative software with a focus on simplicity and scalability. It provides an AJAX-based Web interface and supports\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-sogo-on-ubuntu-20-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-sogo-on-ubuntu-20-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-sogo-on-ubuntu-20-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/how-to-install-sogo-on-ubuntu-20.04.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/how-to-install-sogo-on-ubuntu-20.04.jpg\",\"width\":750,\"height\":410,\"caption\":\"how to install sogo on ubuntu 20.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-sogo-on-ubuntu-20-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install SOGo on Ubuntu 20.04\"}]},{\"@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 SOGo on Ubuntu 20.04 | LinuxHostSupport","description":"SOGo is a free and open-source collaborative software with a focus on simplicity and scalability. It provides an AJAX-based Web interface and supports","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-sogo-on-ubuntu-20-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install SOGo on Ubuntu 20.04","og_description":"SOGo is a free and open-source collaborative software with a focus on simplicity and scalability. It provides an AJAX-based Web interface and supports","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-sogo-on-ubuntu-20-04\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2021-01-20T13:18:38+00:00","article_modified_time":"2022-07-26T06:32:48+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/01\/how-to-install-sogo-on-ubuntu-20.04.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":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-sogo-on-ubuntu-20-04\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-sogo-on-ubuntu-20-04\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install SOGo on Ubuntu 20.04","datePublished":"2021-01-20T13:18:38+00:00","dateModified":"2022-07-26T06:32:48+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-sogo-on-ubuntu-20-04\/"},"wordCount":645,"commentCount":12,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-sogo-on-ubuntu-20-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/01\/how-to-install-sogo-on-ubuntu-20.04.jpg","keywords":["groupware","sogo","ubuntu","ubuntu 20.04"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-sogo-on-ubuntu-20-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-sogo-on-ubuntu-20-04\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-sogo-on-ubuntu-20-04\/","name":"How to Install SOGo on Ubuntu 20.04 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-sogo-on-ubuntu-20-04\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-sogo-on-ubuntu-20-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/01\/how-to-install-sogo-on-ubuntu-20.04.jpg","datePublished":"2021-01-20T13:18:38+00:00","dateModified":"2022-07-26T06:32:48+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"SOGo is a free and open-source collaborative software with a focus on simplicity and scalability. It provides an AJAX-based Web interface and supports","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-sogo-on-ubuntu-20-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-sogo-on-ubuntu-20-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-sogo-on-ubuntu-20-04\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/01\/how-to-install-sogo-on-ubuntu-20.04.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/01\/how-to-install-sogo-on-ubuntu-20.04.jpg","width":750,"height":410,"caption":"how to install sogo on ubuntu 20.04"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-sogo-on-ubuntu-20-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install SOGo on Ubuntu 20.04"}]},{"@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\/1349","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=1349"}],"version-history":[{"count":3,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1349\/revisions"}],"predecessor-version":[{"id":1706,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1349\/revisions\/1706"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1350"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1349"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1349"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1349"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}