{% hint style="info" %} As of December 15, 2023, Rocket.Chat has ceased support for connections from cloud services and official mobile/desktop apps to workspaces running legacy versions outside our support window. Users on unsupported legacy servers are advised to upgrade to the latest Rocket.Chat version to ensure continued access to cloud, mobile, and desktop applications. Each Rocket.Chat version is supported for six months post-release. {% endhint %}
{% hint style="info" %} Snaps are a convenient way to rapidly deploy a Rocket.Chat instance for development or discovery purposes. We do not recommend snaps for managing a production environment. {% endhint %}
Installing software on Linux can be done easily with the use of Snaps. They are self-contained packages with all necessary files and dependencies, ensuring easy installation and updates. Deploying Rocket.Chat with Snaps offers seamless deployment on any Linux distribution, providing a secure and isolated workspace. It also auto-updates when a new version of Rocket.Chat is released.
In this guide, you'll learn how to:
- Deploy Rocket.Chat using Snap
- Backup and restore Rocket.Chat Snap data
- Auto SSL with Snaps
- Update Rocket.Chat Snap
- A Linux-based system (Ubuntu, Debian, Fedora, etc.).
- AVX/AVX2 supported CPU to run Mongo 5.0 for Rocket.Chat workspaces on version 6.0 & above.
- Snap is pre-installed in most modern Linux distributions. If it's not, see the Snaps installation guide.
To install Rocket.Chat with snap on Ubuntu, run the following command:
sudo snap install rocketchat-serverThis command installs the latest available version on Rocket.Chat. You can also specify the installation by track.
To access your Rocket.Chat workspace, open a web browser, and navigate to the specified ROOT URL (http://localhost:3000). Follow the configuration prompts to configure your workspace.
With Snap tracks, you can smoothly transition between major releases of Rocket.Chat (from 2.x to 3.x or from 3.x to 4.x). These tracks enable you to remain on a specific release while receiving updates exclusively for that particular track.
For instance, you can confidently switch to a new major release with the following command:
sudo snap switch rocketchat-server --channel=4.x/stableSnap tracks allow you to keep your Rocket.Chat server up-to-date with the latest features while choosing your preferred release version.
To see the list of snap variables to configure for your Rocket.Chat server, run the following command:
snap get rocketchat-serverIt displays a list of values like this:
Key Value
backup-on-refresh disable
ignore-errors false
mongo-oplog-url mongodb://localhost:27017/local
mongo-url mongodb://localhost:27017/parties
port 3000
siteurl http://localhost:3000
To set any of the above configuration parameters, run this command:
sudo snap set rocketchat-server <variable-name>=<value>From track 4.x, you can configure your MongoDB. The configuration file is located in /var/snap/rocketchat-server/current/mongod.conf.
For all the configuration options, see MongoDB's official documentation.
Snap Backup and Restore is a handy tool that allows you to create backups of your Rocket.Chat instance and restore them as needed.
Run the following command to enable automatic backup on each snap refresh:
sudo snap set rocketchat-server backup-on-refresh=enableTo backup the data on your snap installation, follow these steps:
- Stop your
rocketchat-serverby running the command:
sudo service snap.rocketchat-server.rocketchat-server stopWhile the rocketchat-server service should be stopped, the rocketchat-mongo service should be kept running. To verify this, run the following command:
sudo service snap.rocketchat-server.rocketchat-mongo status | grep Active
Active: active (running) (...)- Execute the backup command:
sudo snap run rocketchat-server.backupdbA successful backup will return this:
{% code overflow="wrap" %}
[+] A backup of your data can be found at /var/snap/rocketchat-server/common/backup/rocketchat_backup_<timestamp>.tar.gz{% endcode %}
- Start your rocketchat-server
sudo service snap.rocketchat-server.rocketchat-server start- Copy your backup to a different system for safekeeping.
To restore your backed-up snap data, follow these steps:
- Stop your
rocketchat-serverby running this command:
sudo service snap.rocketchat-server.rocketchat-server stopWhile the rocketchat-server service should be stopped, the rocketchat-mongo service should be kept running. To verify this, run the following command:
sudo service snap.rocketchat-server.rocketchat-mongo status | grep Active
Active: active (running) (...)- Copy your backup file to the snap's common folder:
sudo cp rocketchat_backup.tgz /var/snap/rocketchat-server/common/- Run the restore command:
{% code overflow="wrap" %}
sudo snap run rocketchat-server.restoredb /var/snap/rocketchat-server/common/rocketchat_backup.tgz{% endcode %}
If you are replacing an existing database, you get the following warning message:
ATTENTION
Your current database WILL BE DROPPED prior to the restore!
Do you want to restore?
1) Yes
2) NoChoose your restore option. If it is successfully done, you will see an output similar to the following:
[*] Extracting backup file...
[*] Restoring data...
[*] Preparing database...
[+] Restore completed! Please restart the snap.rocketchat services to verify.- Start your
rocketchat-server:
sudo service snap.rocketchat-server.rocketchat-server startStarting from release 0.73, the snap includes Caddy, which utilizes Let's Encrypt to enable TLS protection for your communications. Snap hooks ensure easy configuration of Caddy, including proper DNS setup, before starting Caddy with Let's Encrypt support.
To set up Auto SSL with Snaps for 4.x latest AMD64 snaps or 3_.x latest ARM64 snaps_, follow these steps:
- Set the
SiteUrlto your domain using the following command, ensure it is prefixed withhttps:
sudo snap set rocketchat-server siteurl=https://<your domain>- Start Caddy and restart the snap services:
sudo systemctl enable --now snap.rocketchat-server.rocketchat-caddy
sudo snap restart rocketchat-serverYou can configure Caddy yourself or use another HTTP Proxy.
For 4.x latest AMD64 snaps or 3.x latest ARM64 snaps, follow these steps:
{% hint style="info" %} Both caddy v2 and caddy v1 (EOL) is delivered in the snap, v2 is prioritized over v1. {% endhint %}
- To configure Caddy yourself, place the Caddyfile in the
/var/snap/rocketchat-server/current/directory and restart rocketchat-server:
sudo snap restart rocketchat-server- To use another reverse proxy, disable Caddy by running this command:
sudo systemctl disable snap.rocketchat-server.rocketchat-caddyIf you would like to use a different HTTPS proxy or prefer other options in your Caddy configuration, you can choose to disable Caddy by running this command:
sudo snap set rocketchat-server caddy=disable- Edit the Caddyfile found at
/var/snap/rocketchat-server/current/Caddyfileand write your configuration. - Replace
_caddy-url_and_port_with your site information. For example, suppose that you haveexample-domain.comdirected toward your server.
{% hint style="warning" %} If your DNS is not working, you could be instantly throttled by Let's Encrypt for up to a week. {% endhint %}
- Be sure that your DNS has finished resolving before attempting to enable TLS. To test your DNS, you can use
http:
http://example-domain.com
reverse_proxy localhost:3000- Restart Caddy:
sudo systemctl reload snap.rocketchat-server.rocketchat-caddy- You can check that the Caddy service started correctly by running:
sudo systemctl status snap.rocketchat-server.rocketchat-caddy- Once that is tested and resolved, to get secured communications, you can remove the
http://:
example-domain.com
reverse_proxy localhost:3000{% hint style="info" %} Using an IP address will not work for automatically enabling TLS with a publicly-trusted certificate. You must use a valid hostname for a trusted certificate. See the official guide for more information.
If you use an IP address, Caddy will still serve your site over TLS, but using a self-signed certificate. {% endhint %}
- Restart the Caddy service by running:
sudo systemctl reload snap.rocketchat-server.rocketchat-caddy- You can check that the Caddy service started correctly by running:
sudo systemctl status snap.rocketchat-server.rocketchat-caddyIf the configuration is successful, the website should now be accessible at https://example-domain.com.
{% hint style="info" %} Before you proceed, see the general guidelines for updating Rocket.Chat. {% endhint %}
With the Rocket.Chat snap installation, you'll always be on the latest track at the setup time, ensuring access to the latest releases.
{% hint style="warning" %} It is highly advised to back up your data before upgrading.
Before a major version update, check the forum's announcement section. Major releases are often delayed by a couple of weeks to gather feedback and apply minor patches before the final release. {% endhint %}
To force an update, run this command**:**
sudo snap refresh rocketchat-server
To update to a major version, switch to a specific track by executing this command:
sudo snap switch rocketchat-server --channel=x.x/stable
You'll then receive updates related to that track.
{% hint style="info" %} Learn more about track changes in this discussion. {% endhint %}
In addition to the latest track, Rocket.Chat offers three other channels: stable, candidate, and edge. For more information on these channels, refer to the official guide.
- To update to a new version, execute this command:
sudo snap refresh rocketchat-server --channel=x.x/stable
The channel format is "x.x/stable," where the first "x" represents the major version, and the second "x" remains unchanged. For example, for major version 6, the channel is "6.x/stable," and for major version 5, it's "5.x/stable." In each "6.x/stable" channel, you will receive all minor and patch release updates specifically for that major version (in this case, major version 6).
{% hint style="info" %} If you have any concerns or issues with your deployment, see Snaps FAQ. {% endhint %}