{"id":18032,"date":"2015-11-11T13:32:05","date_gmt":"2015-11-11T19:32:05","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=18032"},"modified":"2022-12-16T05:23:19","modified_gmt":"2022-12-16T11:23:19","slug":"install-sogo-on-a-debian-8-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/","title":{"rendered":"Install SOGo on Debian 8"},"content":{"rendered":"
<\/div>

\"sogo-logo\"SOGo is a free and modern scalable groupware server. It provides a rich 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. SOGo offers shared calendars, address books, and emails through your favourite Web browser and by using a native client such as Mozilla Thunderbird and Lightning.<\/p>\n

<\/p>\n

In this article, we will provide you with the steps needed for installing SOGo on a Debian 8 VPS<\/a>.<\/p>\n

REQUIREMENTS<\/strong><\/p>\n

We will be using our SSD 1 Linux VPS<\/a> Hosting plan for this tutorial.<\/p>\n

Login to your server via SSH<\/p>\n

# ssh root@server_ip<\/pre>\n

You can check whether you have the proper version of Debian installed on our server with the below command:<\/p>\n

# lsb_release -a<\/pre>\n

Which should give you the underneath output:<\/p>\n

Distributor ID: Debian\r\nDescription: Debian GNU\/Linux 8.2 (jessie)\r\nRelease: 8.2\r\nCodename: jessie<\/pre>\n

UPDATE THE SYSTEM<\/strong><\/p>\n

Make sure your server is fully up to date.<\/p>\n

# apt-get update && apt-get upgrade<\/pre>\n

Next thing you need to to is to add the SOGo repository to your server sources. We will use vim as our text editor, but free to use the one which suits your skills the most.<\/p>\n

# vim \/etc\/apt\/sources.list<\/pre>\n

Once you open \/etc\/apt\/sources.list<\/strong><\/em>, add the below line at the bottom of the file:<\/p>\n

# deb http:\/\/inverse.ca\/debian jessie jessie<\/pre>\n

In order to verify the SOGo builds signature, their GPG public key has to be added into apt keyring. To do so, run the following command:<\/p>\n

# apt-key adv --keyserver keys.gnupg.net --recv-key 0x810273C4<\/pre>\n

Update the package index:<\/p>\n

# apt-get update<\/pre>\n

INSTALL SOGO<\/strong><\/p>\n

Use the below command to install SOGo and some necessary applications:<\/p>\n

# apt-get install sogo sope4.9-gdl1-mysql memcached rpl<\/pre>\n

Then, enable some much needed Apache modules:<\/p>\n

# a2enmod proxy proxy_http headers rewrite<\/pre>\n

Restart Apache for the changes to take effect:<\/p>\n

# service apache2 restart<\/pre>\n

Remove the tmpreader warning:<\/p>\n

# rpl 'SHOWWARNING=true' 'SHOWWARNING=false' \/etc\/tmpreaper.conf<\/pre>\n

Configure Memcached:<\/p>\n

# rpl '127.0.0.1' localhost \/etc\/memcached.conf<\/pre>\n

Next run the MySQL post-installation script mysql_secure_installation:<\/p>\n

# mysql_secure_installation<\/pre>\n

Configure it like this:<\/p>\n

- Set root password? [Y\/n] y\r\n- Remove anonymous users? [Y\/n] y\r\n- Disallow root login remotely? [Y\/n] y\r\n- Remove test database and access to it? [Y\/n] y\r\n- Reload privilege tables now? [Y\/n] y<\/pre>\n

Restart MySQL and Memcached:<\/p>\n

# service mysql restart\r\n\r\n# service memcached restart<\/pre>\n

Now, create a database for SOGo. Enter MySQL as root:<\/p>\n

# mysql -u root -p\r\n\r\nmysql> CREATE DATABASE sogo;\r\n\r\nmysql> GRANT ALL ON sogo.* TO 'sogou'@'localhost' IDENTIFIED BY 'your_password';\r\n\r\nmysql> USE sogo;\r\n\r\nmysql> 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));\r\n\r\nmysql> INSERT INTO sogo_users VALUES ('tom', 'tom', MD5('your_password'), 'Tom User', 'tom@daywalker.cf'); mysql> flush privileges; mysql> exit<\/pre>\n

The SOGo configuration has to be done by the ‘sogo<\/em><\/strong>‘ user itself. Enter the below commands and replace the ‘your_domain<\/strong><\/em>‘ and ‘your_password<\/strong><\/em>‘ values with your actual domain and password that you used in the above database creation procedure:<\/p>\n

# su - sogo -s \/bin\/bash\r\n\r\n# defaults write sogod SOGoTimeZone \"US\/Central\"\r\n\r\n# defaults write sogod SOGoMailDomain \"your_domain\"\r\n\r\n# defaults write sogod SOGoLanguage \"English\"\r\n\r\n# defaults write sogod SOGoUserSources '({canAuthenticate = YES; displayName = \"SOGo Users\"; id = users; isAddressBook = YES; type = sql; userPasswordAlgorithm = md5; viewURL =\"mysql:\/\/sogoUSER:your_password@127.0.0.1:3306\/sogoDB\/sogo_users\";})'\r\n\r\n# defaults write sogod SOGoProfileURL 'mysql:\/\/sogoUSER:your_password@127.0.0.1:3306\/sogoDB\/sogo_user_profile'\r\n\r\n# defaults write sogod OCSFolderInfoURL 'mysql:\/\/sogoUSER:your_password@127.0.0.1:3306\/sogoDB\/sogo_folder_info'\r\n\r\n# defaults write sogod OCSSessionsFolderURL 'mysql:\/\/sogoUSER:your_password@127.0.0.1:3306\/sogoDB\/sogo_sessions_folder'\r\n\r\n# defaults write sogod SOGoAppointmentSendEMailNotifications YES\r\n\r\n# defaults write sogod SOGoLoginModule Calendar\r\n\r\n# defaults write sogod SOGoSieveScriptsEnabled YES\r\n\r\n# defaults write sogod SOGoSieveServer sieve:\/\/localhost:4190\r\n\r\n# defaults write sogod SOGoVacationEnabled YES\r\n\r\n# defaults write sogod SOGoMailMessageCheck every_5_minutes\r\n\r\n# defaults write sogod SOGoFirstDayOfWeek 1\r\n\r\n# defaults write sogod SOGoSuperUsernames '( \"admin\" )'\r\n\r\n# defaults write sogod SOGoDraftsFolderName \"INBOX.Drafts\"\r\n\r\n# defaults write sogod SOGoSentFolderName \"INBOX.Sent\"\r\n\r\n# defaults write sogod SOGoTrashFolderName \"INBOX.Trash\"\r\n\r\n# defaults write sogod NGImap4ConnectionStringSeparator \".\"\r\n\r\n# exit<\/pre>\n

Configure SOGo configuration file:<\/p>\n

# sed -i 's#yourhostname#your_domain#g' \/etc\/apache2\/conf-available\/SOGo.conf\r\n\r\n# sed -i 's#\"x-webobjects-server-port\" \"443\"#\"x-webobjects-server-port\" \"80\"#' \/etc\/apache2\/conf-available\/SOGo.conf\r\n\r\n# sed -i 's#https#http#' \/etc\/apache2\/conf-available\/SOGo.conf<\/pre>\n

Restart SOGo:<\/p>\n

# service sogo restart<\/pre>\n

Now, open your favorite browser and navigate to http:\/\/your_domain\/SOGo<\/strong> . You should see the same page as the one in the image below:<\/p>\n

\"sogo\"<\/p>\n

That’s it. You have successfully installed SOGo on a Debian 8 VPS<\/a>.<\/p>\n

Of course you don\u2019t have to do any of this if you use one of our Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to install SOGo for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n

PS.<\/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>\n","protected":false},"excerpt":{"rendered":"

SOGo is a free and modern scalable groupware server. It provides a rich AJAX-based Web interface and supports multiple native … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":18033,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1700,13],"tags":[879,229,274],"yoast_head":"\nInstall SOGo on Debian 8 - RoseHosting<\/title>\n<meta name=\"description\" content=\"Install SOGo on Debian 8 - RoseHosting\" \/>\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.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install SOGo on Debian 8 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"Install SOGo on Debian 8 - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2015-11-11T19:32:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-16T11:23:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/sogo-logo.png\" \/>\n\t<meta property=\"og:image:width\" content=\"300\" \/>\n\t<meta property=\"og:image:height\" content=\"188\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\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:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install SOGo on Debian 8\",\"datePublished\":\"2015-11-11T19:32:05+00:00\",\"dateModified\":\"2022-12-16T11:23:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/\"},\"wordCount\":452,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/sogo-logo.png\",\"keywords\":[\"debian8\",\"sogo\",\"sogo hosting\"],\"articleSection\":[\"Debian\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/\",\"name\":\"Install SOGo on Debian 8 - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/sogo-logo.png\",\"datePublished\":\"2015-11-11T19:32:05+00:00\",\"dateModified\":\"2022-12-16T11:23:19+00:00\",\"description\":\"Install SOGo on Debian 8 - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/sogo-logo.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/sogo-logo.png\",\"width\":300,\"height\":188},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install SOGo on Debian 8\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install SOGo on Debian 8 - RoseHosting","description":"Install SOGo on Debian 8 - RoseHosting","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.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/","og_locale":"en_US","og_type":"article","og_title":"Install SOGo on Debian 8 - RoseHosting","og_description":"Install SOGo on Debian 8 - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2015-11-11T19:32:05+00:00","article_modified_time":"2022-12-16T11:23:19+00:00","og_image":[{"width":300,"height":188,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/sogo-logo.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install SOGo on Debian 8","datePublished":"2015-11-11T19:32:05+00:00","dateModified":"2022-12-16T11:23:19+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/"},"wordCount":452,"commentCount":4,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/sogo-logo.png","keywords":["debian8","sogo","sogo hosting"],"articleSection":["Debian","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/","name":"Install SOGo on Debian 8 - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/sogo-logo.png","datePublished":"2015-11-11T19:32:05+00:00","dateModified":"2022-12-16T11:23:19+00:00","description":"Install SOGo on Debian 8 - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/sogo-logo.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/11\/sogo-logo.png","width":300,"height":188},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-sogo-on-a-debian-8-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install SOGo on Debian 8"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18032"}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=18032"}],"version-history":[{"count":2,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18032\/revisions"}],"predecessor-version":[{"id":44359,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/18032\/revisions\/44359"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/18033"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=18032"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=18032"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=18032"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}