Skip to content
This repository has been archived by the owner on Mar 17, 2023. It is now read-only.

Update installation docs for meteor 1.9 and node 12 #1572

Merged
merged 2 commits into from
Feb 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion installation/automation-tools/vagrant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Vagrant.configure(2) do |config|

npm install nave -g
npm install pm2 -g
nave usemain 8.9.3
nave usemain 12.14.0

curl https://install.meteor.com/ | sh

Expand Down
8 changes: 4 additions & 4 deletions installation/manual-installation/centos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

This installation guide was tested in the following environment:

- Rocket.Chat 1.0.2
- Rocket.Chat 3.0.0
- OS: CentOS 7.6
- Mongodb 4.0.9
- NodeJS 8.11.4
- NodeJS 12.14.0

## Install necessary dependency packages

Expand All @@ -29,7 +29,7 @@ EOF
Configure Node.js to be installed via package manager:

```bash
sudo yum install -y curl && curl -sL https://rpm.nodesource.com/setup_8.x | sudo bash -
sudo yum install -y curl && curl -sL https://rpm.nodesource.com/setup_12.x | sudo bash -
```

Install build tools, MongoDB, nodejs and graphicsmagick:
Expand All @@ -45,7 +45,7 @@ sudo yum install -y epel-release && sudo yum install -y GraphicsMagick
Using npm install inherits and n, and the node version required by Rocket.Chat:

```bash
sudo npm install -g inherits n && sudo n 8.11.4
sudo npm install -g inherits n && sudo n 12.14.0
```

## Install Rocket.Chat
Expand Down
8 changes: 4 additions & 4 deletions installation/manual-installation/debian/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

This installation guide was tested in the following environment:

- Rocket.Chat 1.0.2
- Rocket.Chat 3.0.0
- OS: Debian 9.7
- Mongodb 4.0.9
- NodeJS 8.11.4
- NodeJS 12.14.0

## Install necessary dependency packages

Expand All @@ -26,7 +26,7 @@ echo "deb http://repo.mongodb.org/apt/debian stretch/mongodb-org/4.0 main" | sud
Configure Node.js to be installed via package manager:

```bash
sudo apt-get -y update && sudo apt-get install -y curl && curl -sL https://deb.nodesource.com/setup_8.x | sudo bash -
sudo apt-get -y update && sudo apt-get install -y curl && curl -sL https://deb.nodesource.com/setup_12.x | sudo bash -
```

Install build tools, MongoDB, nodejs and graphicsmagick:
Expand All @@ -38,7 +38,7 @@ sudo apt-get install -y build-essential mongodb-org nodejs graphicsmagick
Using npm install inherits and n, and the node version requiere by Rocket.Chat:

```bash
sudo npm install -g inherits n && sudo n 8.11.4
sudo npm install -g inherits n && sudo n 12.14.0
```

## Install Rocket.Chat
Expand Down
8 changes: 4 additions & 4 deletions installation/manual-installation/ubuntu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ If you would like to enable TLS on your site like this `https://yoursite.com` wh

This installation guide was tested in the following environment:

- Rocket.Chat 1.0.2
- Rocket.Chat 3.0.0
- OS: Ubuntu 18.04 LTS and Ubuntu 19.04
- Mongodb 4.0.9
- NodeJS 8.11.4
- NodeJS 12.14.0

## Install necessary dependency packages

Expand All @@ -36,7 +36,7 @@ echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/
Configure Node.js to be installed via package manager:

```bash
sudo apt-get -y update && sudo apt-get install -y curl && curl -sL https://deb.nodesource.com/setup_8.x | sudo bash -
sudo apt-get -y update && sudo apt-get install -y curl && curl -sL https://deb.nodesource.com/setup_12.x | sudo bash -
```

Install build tools, MongoDB, nodejs and graphicsmagick:
Expand All @@ -54,7 +54,7 @@ sudo apt-get install -y npm
Using npm install inherits and n, and the node version requiere by Rocket.Chat:

```bash
sudo npm install -g inherits n && sudo n 8.11.4
sudo npm install -g inherits n && sudo n 12.14.0
```

## Install Rocket.Chat
Expand Down
6 changes: 3 additions & 3 deletions installation/rocketchatctl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Currently rocketchatctl is supported in these Linux distributions:

And installs these software versions, but this can change for future rocketchatctl versions:

- Node version: 8.11.4
- Node version: 12.14.0
- Mongo version: 4.0.10

- Web Proxy/Loadbalancer optional:
Expand Down Expand Up @@ -86,7 +86,7 @@ rocketchatctl install
Or if you want to use your mongo server, change node to the current needed version for Rocket.Chat, listen in a different port, and install another release, you can for example use these command:

```bash
rocketchatctl install --root-url=https://www.example.com --webserver=none --use-mongo --install-node --port=4000 --version=1.0.3
rocketchatctl install --root-url=https://www.example.com --webserver=none --use-mongo --install-node --port=4000 --version=3.0.0
```

### Update Rocket.Chat
Expand All @@ -95,7 +95,7 @@ Check for release updates:

```bash
rocketchatctl check-updates
Current update available for RocketChat server: from 1.0.3 to 1.2.1
Current update available for RocketChat server: from 3.0.3 to 3.2.1
```

And update to the latest release:
Expand Down