{"id":27902,"date":"2018-09-10T04:44:16","date_gmt":"2018-09-10T09:44:16","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=27902"},"modified":"2022-12-13T03:15:09","modified_gmt":"2022-12-13T09:15:09","slug":"how-to-install-rocket-chat-on-ubuntu-16-04","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/","title":{"rendered":"How to Install Rocket.Chat on Ubuntu 16.04"},"content":{"rendered":"
<\/div>

\"How<\/p>\n

Rocket.Chat is a self-hosted and open source web chat server. It offers a chat, file sharing, video calls, helpdesk and voice services which makes it a great alternative to Slack. This tutorial provides step-by-step instructions for installing Rocket.Chat on an Ubuntu 16.04 VPS<\/a>.<\/p>\n

Rocket.Chat comes with tons of useful features, such as:
\n– Public and private channels
\n– Live chat \/ Messaging call center \/ Audio Calls
\n– Different APIs
\n– File Upload and sharing
\n– Remote Video Monitoring
\n– Custom emojis, sounds, and company assets
\n– Android, iOS, Windows, Mac, Linux, and web applications<\/p>\n

and many more…<\/p>\n

Prerequisites<\/strong><\/h3>\n

The following prerequisites need to be met in order to install and run Rocket.Chat
\n– It is recommended to have at least 2 GB of memory for Rocket.Chat, so we will use our SSD 2 VPS hosting plan
\n– SSH root access which comes by default with all our
VPS hosting plans<\/a>
\n– Node.js –\u00a0JavaScript run-time environment
\n– MongoDB database server
\n– GraphicsMagick and curl<\/p>\n

Step 1: Login via SSH and update the server<\/strong><\/h3>\n

Login to your Ubuntu 16.04 VPS via SSH as user root<\/p>\n

ssh root@IP_Address<\/pre>\n

Before we start with the installation, make sure that all installed packages are updated to the latest version<\/p>\n

apt update && apt upgrade<\/pre>\n

Step 2: Install MongoDB database server<\/strong><\/h3>\n

Rocket.Chat requires a MongoDB database, so we will have to install MongoDB database server. It can be installed from the official Ubuntu repositories using the apt package manager, but it is not the latest version maintained by the MongoDB team. MongoDB has their own repositories and provides the latest version of the database server.<\/p>\n

In order to install MongoDB from their official released packages, we will have to import the MongoDB public key as shown below<\/p>\n

apt-key adv --keyserver hkp:\/\/keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4<\/pre>\n

Once the key is added, we can proceed and add the official MongoDB repository<\/p>\n

echo \"deb http:\/\/repo.mongodb.org\/apt\/ubuntu trusty\/mongodb-org\/4.0 multiverse\" | sudo tee \/etc\/apt\/sources.list.d\/mongodb-org-4.0.list<\/pre>\n

And finally, update the local package database and install MongoDB and its dependencies<\/p>\n

apt update\r\napt install -y mongodb-org curl graphicsmagick<\/pre>\n

You can check the version of MongoDB using the following command<\/p>\n

mongo -version\r\nMongoDB shell version v4.0.1<\/pre>\n

In order to start MongoDB as a service, we will create a unit file with the following content<\/p>\n

nano \/etc\/systemd\/system\/mongodb.service\r\n\r\n[Unit]\r\nDescription=High-performance, schema-free document-oriented database\r\nAfter=network.target\r\n\r\n[Service]\r\nUser=mongodb\r\nExecStart=\/usr\/bin\/mongod --quiet --config \/etc\/mongod.conf\r\n\r\n[Install]\r\nWantedBy=multi-user.target<\/pre>\n

Save the file, start the MongoDB server and enable it to start upon server restart<\/p>\n

systemctl start mongodb\r\nsystemctl enable mongodb<\/pre>\n

Step 3: Install Node.js and npm<\/strong><\/h3>\n

Next, we will install Node.js and npm package manager on the server. Run the following command<\/p>\n

apt -y install npm nodejs<\/pre>\n

We will also need to install build-essential in order to install some npm packages<\/p>\n

apt -y install build-essential<\/pre>\n

It is recommended to use Node.js version 8.9.3 in order to run Rocket.Chat . We will install a tool simply called ‘n’ so we can change the Node.js version.<\/p>\n

npm install -g n<\/pre>\n

Run the following command to install Node.js version 8.9.3<\/p>\n

n 8.9.3<\/pre>\n

Output:<\/p>\n

     install : node-v8.9.3\r\n       mkdir : \/usr\/local\/n\/versions\/node\/8.9.3\r\n       fetch : https:\/\/nodejs.org\/dist\/v8.9.3\/node-v8.9.3-linux-x64.tar.gz\r\n######################################################################## 100.0%\r\n   installed : v8.9.3<\/pre>\n

To confirm that the installed version is 8.9.3 you can run the following command<\/p>\n

node --version\r\nv8.9.3<\/pre>\n

Step 4: Install Rocket.Chat<\/strong><\/h3>\n

Go to Rocket.Chat’s official website and download the latest stable release of the application<\/p>\n

cd \/opt\r\ncurl -L https:\/\/releases.rocket.chat\/latest\/download -o rocket.chat.tgz<\/pre>\n

Unpack the downloaded archive<\/p>\n

tar zxvf rocket.chat.tgz<\/pre>\n

The content of the application will be stored in a new directory named ‘bundle’. We will rename the directory<\/p>\n

mv bundle rocketchat<\/pre>\n

Next, install all necessary packages listed in the packages.json file provided by Rocket.Chat<\/p>\n

cd rocketckat\/programs\/server\r\nnpm install<\/pre>\n

Set the environment variables accordingly and start Rocket.Chat by executing the following commands<\/p>\n

cd \/opt\/rocketckat\/\r\nexport ROOT_URL=http:\/\/domain.com:3000\/\r\nexport MONGO_URL=mongodb:\/\/localhost:27017\/rocketchat\r\nexport PORT=3000\r\n\r\nnode main.js<\/pre>\n

Step 5: Verify Rocket.Chat installation and finalize the installation vie web browser<\/h3>\n

If Rocket.Chat is successfully started you should get the following output<\/p>\n

\u2794 +----------------------------------------------------+\r\n\u2794 |                   SERVER RUNNING                   |\r\n\u2794 +----------------------------------------------------+\r\n\u2794 |                                                    |\r\n\u2794 |  Rocket.Chat Version: 0.68.5                       |\r\n\u2794 |       NodeJS Version: 8.9.3 - x64                  |\r\n\u2794 |             Platform: linux                        |\r\n\u2794 |         Process Port: 3000                         |\r\n\u2794 |             Site URL: http:\/\/domain.com:3000\/  \t\t|\r\n\u2794 |     ReplicaSet OpLog: Disabled                     |\r\n\u2794 |          Commit Hash: e412d018f8                   |\r\n\u2794 |        Commit Branch: HEAD                         |\r\n\u2794 |                                                    |\r\n\u2794 +----------------------------------------------------+<\/pre>\n

And you will be able to access Rocket.Chat setup wizard with your favorite web browser at http:\/\/domain.com:3000\/<\/p>\n

\"Install<\/p>\n

where you can create your administrative account and configure Rocket.Chat according to your needs. For more information on how to use and configure Rocket.Chat please check their official documentation.<\/p>\n


\n

\"InstallingOf course, you don\u2019t have to install Rocket.Chat on Ubuntu 16.04, if you use one of our Managed Ubuntu Hosting<\/a> plans, in which case you can simply ask our expert Linux admins to install Rocket.Chat on Ubuntu 16.04 for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n

PS.<\/strong> <\/span>If you liked this post on how to install Rocket.Chat on Ubuntu 16.04, 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":"

Rocket.Chat is a self-hosted and open source web chat server. It offers a chat, file sharing, video calls, helpdesk and … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":28041,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13,1698],"tags":[1741,59],"yoast_head":"\nHow to Install Rocket.Chat on Ubuntu 16.04 - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to Install Rocket.Chat on Ubuntu 16.04 - 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\/how-to-install-rocket-chat-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 Rocket.Chat on Ubuntu 16.04 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to Install Rocket.Chat on Ubuntu 16.04 - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/\" \/>\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=\"2018-09-10T09:44:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-13T09:15:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Rocket.Chat-on-Ubuntu-16.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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\/how-to-install-rocket-chat-on-ubuntu-16-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Install Rocket.Chat on Ubuntu 16.04\",\"datePublished\":\"2018-09-10T09:44:16+00:00\",\"dateModified\":\"2022-12-13T09:15:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/\"},\"wordCount\":687,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Rocket.Chat-on-Ubuntu-16.04.jpg\",\"keywords\":[\"Rocket.Chat\",\"ubuntu\"],\"articleSection\":[\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/\",\"name\":\"How to Install Rocket.Chat on Ubuntu 16.04 - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Rocket.Chat-on-Ubuntu-16.04.jpg\",\"datePublished\":\"2018-09-10T09:44:16+00:00\",\"dateModified\":\"2022-12-13T09:15:09+00:00\",\"description\":\"How to Install Rocket.Chat on Ubuntu 16.04 - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Rocket.Chat-on-Ubuntu-16.04.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Rocket.Chat-on-Ubuntu-16.04.jpg\",\"width\":742,\"height\":372,\"caption\":\"How to Install Rocket.Chat on Ubuntu 16.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Rocket.Chat on Ubuntu 16.04\"}]},{\"@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":"How to Install Rocket.Chat on Ubuntu 16.04 - RoseHosting","description":"How to Install Rocket.Chat on Ubuntu 16.04 - 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\/how-to-install-rocket-chat-on-ubuntu-16-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Rocket.Chat on Ubuntu 16.04 - RoseHosting","og_description":"How to Install Rocket.Chat on Ubuntu 16.04 - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2018-09-10T09:44:16+00:00","article_modified_time":"2022-12-13T09:15:09+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Rocket.Chat-on-Ubuntu-16.04.jpg","type":"image\/jpeg"}],"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\/how-to-install-rocket-chat-on-ubuntu-16-04\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Install Rocket.Chat on Ubuntu 16.04","datePublished":"2018-09-10T09:44:16+00:00","dateModified":"2022-12-13T09:15:09+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/"},"wordCount":687,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Rocket.Chat-on-Ubuntu-16.04.jpg","keywords":["Rocket.Chat","ubuntu"],"articleSection":["Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/","name":"How to Install Rocket.Chat on Ubuntu 16.04 - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Rocket.Chat-on-Ubuntu-16.04.jpg","datePublished":"2018-09-10T09:44:16+00:00","dateModified":"2022-12-13T09:15:09+00:00","description":"How to Install Rocket.Chat on Ubuntu 16.04 - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Rocket.Chat-on-Ubuntu-16.04.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/09\/How-to-Install-Rocket.Chat-on-Ubuntu-16.04.jpg","width":742,"height":372,"caption":"How to Install Rocket.Chat on Ubuntu 16.04"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-ubuntu-16-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Rocket.Chat on Ubuntu 16.04"}]},{"@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\/27902"}],"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=27902"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27902\/revisions"}],"predecessor-version":[{"id":44191,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27902\/revisions\/44191"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/28041"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=27902"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=27902"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=27902"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}