{"id":27743,"date":"2018-08-14T03:49:56","date_gmt":"2018-08-14T08:49:56","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=27743"},"modified":"2022-06-03T03:34:44","modified_gmt":"2022-06-03T08:34:44","slug":"how-to-install-rocket-chat-on-centos-7","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/","title":{"rendered":"How to Install Rocket.Chat on CentOS 7"},"content":{"rendered":"
<\/div>

\"How<\/p>\n

In this article we will show you how to install Rocket.Chat on\u00a0a\u00a0CentOS 7<\/a>\u00a0server and configure Apache as reverse proxy for the Rocket.Chat application. Rocket.Chat is a free team communication software, built with Meteor framework. Rocket.Chat is unlimited and open source software solution that replaces Slack and HipChat. Rocket.Chat supports audio and video communication with screen sharing, with complete access to the source code, you can fully customize, extend or add new functionality to meet your requirements.\u00a0The Installation of Rocket.Chat on CentOS 7 is fairly easy task and it shouldn’t take more then 10 minutes to complete. Let’s get started!
\n<\/p>\n

Requirements<\/strong><\/h3>\n

In order to run Rocket.Chat on your CentOS 7 VPS, we need the following requirements pre-installed:<\/p>\n

MongoDB<\/a> – most popular open source\u00a0NoSQL\u00a0database<\/p>\n

NodeJS<\/a> – an open source\u00a0JavaScript run-time environment.<\/p>\n

GraphicsMagick<\/a> –\u00a0a robust collection of tools and libraries about image processing. GraphicsMagick is a fork of ImageMagick.<\/p>\n

Step 1: Log in via SSH on the CentOS server:
\n<\/strong><\/h3>\n

Log in to each VPS via SSH as user root<\/p>\n

ssh roo@IP_Address -p Port_number<\/pre>\n

Step 2: Update all packages and install Development tools<\/strong><\/h3>\n

Once you are logged, run the following command to make sure that all installed RPM packages are up to date<\/p>\n

sudo yum clean all\nsudo yum update\nsudo yum groupinstall \u2018Development Tools'<\/pre>\n

Step 3: Install EPEL and MongoDB repositories:<\/strong><\/h3>\n

We need to install EPEL\u00a0repository:<\/p>\n

yum install epel-release<\/pre>\n

The default CentOS 7 repository does not contain a package for MongoDB, so we will need to use the official MongoDB repository to install MongoDB package.<\/p>\n

At the time of writing this tutorial, the latest stable version of MongoDB is 4.0, so create a new file in the \/etc\/yum.repos.d\/ directory named ‘mongodb-org-4.0.repo’:<\/p>\n

vi \/etc\/yum.repos.d\/mongodb-org-4.0.repo<\/pre>\n

Then, add the following lines:<\/p>\n

[mongodb-org-4.0]\nname=MongoDB Repository\nbaseurl=https:\/\/repo.mongodb.org\/yum\/redhat\/$releasever\/mongodb-org\/4.0\/x86_64\/\ngpgcheck=1\nenabled=1\ngpgkey=https:\/\/www.mongodb.org\/static\/pgp\/server-4.0.asc<\/pre>\n

Step 4: <\/strong>Install MongoDB<\/h3>\n

Install MongoDB using the following commands:<\/p>\n

sudo yum update\nsudo yum install mongodb-org-server mongodb-org mongodb-org-mongos mongodb-org-shell mongodb-org-tools<\/pre>\n

Enable the MongoDB service to start automatically on boot:<\/p>\n

sudo systemctl enable mongod<\/pre>\n

Start the MongoDB service:<\/p>\n

sudo systemctl start mongod<\/pre>\n

Step 5:\u00a0<\/strong>Install node.js and npm<\/h3>\n
sudo yum install nodejs npm<\/pre>\n
npm install -g inherits n<\/pre>\n

Download and set nodejs version 8.9.3:<\/p>\n

sudo n 8.9.3<\/pre>\n

Check the node.js version:<\/p>\n

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

Step 6: <\/strong>Install GraphicsMagick<\/h3>\n

Install GraphicsMagick using the following command:<\/p>\n

yum install GraphicsMagick<\/pre>\n

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

Download the latest stable version of Rocket.Chat and extract it in the \/opt directory on your server:<\/p>\n

cd \/opt\ncurl -L https:\/\/releases.rocket.chat\/latest\/download -o rocket.chat.tar\ntar -xvf rocket.chat.tar\nmkdir -p \/var\/www\/html\/rocket.chat\ncd bundle\nmv * .[^.]* \/var\/www\/html\/rocket.chat\/\ncd \/var\/www\/html\/rocket.chat\/programs\/server\nnpm install\ncd ..\/..\/\nexport ROOT_URL=http:\/\/your-server_IP:3000\/\nexport MONGO_URL=mongodb:\/\/localhost:27017\/rocketchat\nexport PORT=3000<\/pre>\n

Run the following command to test the installation:<\/p>\n

node main.js<\/pre>\n

You should be able to access Rocket.Chat at http:\/\/your-domain.com:3000\/
\nStop Rocket.Chat using CTRL+C.<\/p>\n

We can configure Apache as reverse proxy so it can handle and pass the requests to Rocket.Chat and hide the port number in the URL.<\/p>\n

Edit the ‘\/etc\/httpd\/conf\/httpd.conf’ Apache configuration file and uncomment the following line:<\/p>\n

#NameVirtualHost *:80<\/pre>\n

Then, add the following virtual host at the end:<\/p>\n

<VirtualHost *:80>\nServerName your-domain.com\nDocumentRoot \/var\/www\/html\/rocket.chat\nServerAlias www.your-domain.com\n\nProxyRequests Off\n<Proxy *>\nOrder deny,allow\nAllow from all\n<\/Proxy>\n\nProxyPass \/ http:\/\/your-server_IP:3000\/\nProxyPassReverse \/ http:\/\/your-server_IP:3000\/\n<Location \/>\nOrder allow,deny\nAllow from all\n<\/Location>\nErrorLog \/var\/log\/httpd\/rocket.chat-error_log\nCustomLog \/var\/log\/httpd\/rocket.chat-access_log common\n<\/VirtualHost><\/pre>\n

Make sure the mod_proxy module is enabled and restart the Apache service for the changes to take effect using the following command:<\/p>\n

systemctl restart httpd\n\n<\/pre>\n

Create a new systemd service:<\/p>\n

vi \/usr\/lib\/systemd\/system\/rocketchat.service<\/pre>\n

Add the following lines:<\/p>\n

[Unit]\n  Description=The Rocket.Chat server\n  After=network.target remote-fs.target nss-lookup.target nginx.target mongod.target\n  [Service]\n  ExecStart=\/usr\/local\/bin\/node \/var\/www\/html\/rocket.chat\/main.js\n  StandardOutput=syslog\n  StandardError=syslog\n  SyslogIdentifier=rocketchat\n  User=root\n  Environment=MONGO_URL=mongodb:\/\/localhost:27017\/rocketchat ROOT_URL=http:\/\/your-domain.com:3000\/ PORT=3000\n  [Install]\n  WantedBy=multi-user.target<\/pre>\n

Do not forget to replace ‘your-domain.com’ with the actual domain name.<\/p>\n

Enable the Rocket.Chat service to start automatically on boot:<\/p>\n

sudo systemctl enable rocketchat.service<\/pre>\n

Start the Rocke.Chat service:<\/p>\n

sudo systemctl start rocketchat.service<\/pre>\n

Open your favorite web browser and access the Rocket.Chat application by opening http:\/\/your-domain.com . Create a new<\/p>\n

admin account and click on ‘Continue’ button. On the next page, enter the organization information, on the next page select ‘keep standalone’,\u00a0 and on the last page, click on ‘Go to your workspace’ button. Then, log in to Rocket.Chat with the newly created admin account, create new members and channels, manage their permissions, and customize Rocket.Chat according to your needs. Also, Rocket.Chat provides an extendable Webhook integration framework, so we can integrate Rocket.Chat with many other applications, through incoming and outgoing Webhook scripts.<\/p>\n

\"install<\/p>\n

That is it. Rocket.Chat has been successfully installed on your CentOS 7 VPS.<\/p>\n


\n

\"installingOf course, you don\u2019t have to install Rocket.Chat on CentOS 7, if you use one of our Managed CentOS Hosting<\/a> plans, in which case you can simply ask our expert Linux admins to install Rocket.Chat on CentOS 7 for you. They are available 24\u00d77 and will take care of your request immediately. For additional updates, you can also check our guide on How to Install Rocket.Chat on CentOS 8<\/a>.<\/p>\n

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

In this article we will show you how to install Rocket.Chat on\u00a0a\u00a0CentOS 7\u00a0server and configure Apache as reverse proxy for … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":27828,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,13],"tags":[34,1741],"yoast_head":"\nHow to Install Rocket.Chat on CentOS 7 - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to Install Rocket.Chat on CentOS 7 - 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-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Rocket.Chat on CentOS 7 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to Install Rocket.Chat on CentOS 7 - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/\" \/>\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-08-14T08:49:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:34:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/08\/How-to-Install-Rocket.Chat-on-CentOS-7.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=\"5 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-centos-7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Install Rocket.Chat on CentOS 7\",\"datePublished\":\"2018-08-14T08:49:56+00:00\",\"dateModified\":\"2022-06-03T08:34:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/\"},\"wordCount\":712,\"commentCount\":7,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/08\/How-to-Install-Rocket.Chat-on-CentOS-7.jpg\",\"keywords\":[\"centos\",\"Rocket.Chat\"],\"articleSection\":[\"CentOS\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/\",\"name\":\"How to Install Rocket.Chat on CentOS 7 - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/08\/How-to-Install-Rocket.Chat-on-CentOS-7.jpg\",\"datePublished\":\"2018-08-14T08:49:56+00:00\",\"dateModified\":\"2022-06-03T08:34:44+00:00\",\"description\":\"How to Install Rocket.Chat on CentOS 7 - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/08\/How-to-Install-Rocket.Chat-on-CentOS-7.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/08\/How-to-Install-Rocket.Chat-on-CentOS-7.jpg\",\"width\":742,\"height\":372,\"caption\":\"How to Install Rocket.Chat on CentOS 7\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/#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 CentOS 7\"}]},{\"@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 CentOS 7 - RoseHosting","description":"How to Install Rocket.Chat on CentOS 7 - 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-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Rocket.Chat on CentOS 7 - RoseHosting","og_description":"How to Install Rocket.Chat on CentOS 7 - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2018-08-14T08:49:56+00:00","article_modified_time":"2022-06-03T08:34:44+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/08\/How-to-Install-Rocket.Chat-on-CentOS-7.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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Install Rocket.Chat on CentOS 7","datePublished":"2018-08-14T08:49:56+00:00","dateModified":"2022-06-03T08:34:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/"},"wordCount":712,"commentCount":7,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/08\/How-to-Install-Rocket.Chat-on-CentOS-7.jpg","keywords":["centos","Rocket.Chat"],"articleSection":["CentOS","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/","name":"How to Install Rocket.Chat on CentOS 7 - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/08\/How-to-Install-Rocket.Chat-on-CentOS-7.jpg","datePublished":"2018-08-14T08:49:56+00:00","dateModified":"2022-06-03T08:34:44+00:00","description":"How to Install Rocket.Chat on CentOS 7 - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/08\/How-to-Install-Rocket.Chat-on-CentOS-7.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/08\/How-to-Install-Rocket.Chat-on-CentOS-7.jpg","width":742,"height":372,"caption":"How to Install Rocket.Chat on CentOS 7"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-rocket-chat-on-centos-7\/#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 CentOS 7"}]},{"@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\/27743"}],"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=27743"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27743\/revisions"}],"predecessor-version":[{"id":36581,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/27743\/revisions\/36581"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/27828"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=27743"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=27743"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=27743"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}