Installing Mattermost on RHEL 6.6¶
Install a production-ready Mattermost system on 1 to 3 machines.
A complete Mattermost installation consists of 3 major components: a proxy server, a database server, and the Mattermost server. You can install all components on 1 machine, or you can install each component on its own machine. If you have only 2 machines, then install the proxy and the Mattermost server on one machine, and install the database on the other machine.
For the database, you can install either MySQL or PostgreSQL. The proxy is NGINX.
Install and configure the components in the following order. Note that you need only one database, either MySQL or PostgreSQL.
- Installing Red Hat Enterprise Linux 6.6
- Installing MySQL Database Server
- Installing PostgreSQL Database
- Installing Mattermost Server
- Configuring Mattermost Server
- Configuring TLS on the Mattermost Server
- Installing NGINX Server
- Configuring NGINX as a proxy for Mattermost Server
- Configuring NGINX with SSL and HTTP/2
Installing Red Hat Enterprise Linux 6.6¶
Install the 64-bit version of RHEL 6.6 on each machine that hosts one or more of the components.
To install RHEL 6.6 Server:
- To install RHEL 6.6, see the RedHat Installation Instructions.
- After the system is installed, make sure that it’s up to date with the most recent security patches. Open a terminal window and issue the following commands:
sudo yum update
sudo yum upgrade
Now that the system is up to date, you can start installing the components that make up a Mattermost system.
Installing MySQL Database Server¶
Install and set up the database for use by the Mattermost server. You can install either MySQL or PostgreSQL.
To install MySQL 5.7 on RHEL 6.6:
- Log in to the server that will host the database, and open a terminal window.
- Download the MySQL Yum repository from dev.mysql.com.
wget http://dev.mysql.com/get/mysql57-community-release-el6-9.noarch.rpm
- Install the Yum repository from the file that you downloaded.
sudo yum localinstall mysql57-community-release-el6-9.noarch.rpm
- Install MySQL.
sudo yum install mysql-community-server
- Start the MySQL server.
sudo service mysqld start
Note
- The first time that you start MySQL, the superuser account
'root'@'localhost'
is created and a temporary password is generated for it.- Also the first time that you start MySQL, the
validate_password
plugin is installed. The plugin forces passwords to contain at least one upper case letter, one lower case letter, one digit, and one special character, and that the total password length is at least 8 characters.
- Obtain the root password that was generated when you started MySQL for the first time.
sudo grep 'temporary password' /var/log/mysqld.log
- Change the root password. Login with the password that you obtained from the previous step.
mysql -u root -p
- Change the password. At the mysql prompt, type the following command. Be sure to replace
Password42!
with the password that you want to use.
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'Password42!';
- Set MySQL to start automatically when the machine starts.
sudo chkconfig mysqld on
- Create the Mattermost user ‘mmuser’.
mysql> create user 'mmuser'@'%' identified by 'mmuser-password';
Note
- Use a password that is more secure than ‘mmuser-password’.
- The ‘%’ means that mmuser can connect from any machine on the network. However, it’s more secure to use the IP address of the machine that hosts Mattermost. For example, if you install Mattermost on the machine with IP address 10.10.10.2, then use the following command:
mysql> create user 'mmuser'@'10.10.10.2' identified by 'mmuser-password';
- Create the Mattermost database.
mysql> create database mattermost;
- Grant access privileges to the user ‘mmuser’.
mysql> grant all privileges on mattermost.* to 'mmuser'@'%';
With the database installed and the initial setup complete, you can now install the Mattermost server.
Installing PostgreSQL Database¶
- Log in to the server that will host the database, and open a terminal window.
- Download the PostgreSQL 9.4 Yum repository.
wget https://download.postgresql.org/pub/repos/yum/9.4/redhat/rhel-6-x86_64/pgdg-redhat94-9.4-3.noarch.rpm
- Install the Yum repository from the file that you downloaded.
sudo yum localinstall pgdg-redhat94-9.4-3.noarch.rpm
- Install PostgreSQL.
sudo yum install postgresql94-server postgresql94-contrib
- Initialize the database.
sudo service postgresql-9.4 initdb
- Set PostgreSQL to start on boot.
sudo chkconfig postgresql-9.4 on
- Start the PostgreSQL server.
sudo service postgresql-9.4 start
- Switch to the postgres Linux user account that was created during the installation.
sudo --login --user postgres
- Start the PostgreSQL interactive terminal.
psql
- Create the Mattermost database.
postgres=# CREATE DATABASE mattermost;
- Create the Mattermost user ‘mmuser’.
postgres=# CREATE USER mmuser WITH PASSWORD 'mmuser_password';
Note
Use a password that is more secure than ‘mmuser-password’.
- Grant the user access to the Mattermost database.
postgres=# GRANT ALL PRIVILEGES ON DATABASE mattermost to mmuser;
- Exit the PostgreSQL interactive terminal.
postgre=# \q
- Log out of the postgres account.
exit
- Allow Postgres to listen on all assigned IP Addresses.
- Open
/etc/postgresql/9.4/main/postgresql.conf
as root in a text editor.- Find the following line:
#listen_addresses = 'localhost'
- Uncomment the line and change
localhost
to*
:listen_addresses = '*'
- If the Mattermost server is on a separate machine, modify the file
pg_hbe.conf
to allow the Mattermost server to communicate with the database.
If the Mattermost server and the database are on the same machine, then you can skip this step.
- Open
/etc/postgresql/9.4/main/pg_hba.conf
in a text editor.- Add the following line to the end of the file, where <mm-server-IP> is the IP address of the machine that contains the Mattermost server.
host all all <mm-server-IP>/32 md5
- Reload Postgres database
sudo service postgresql-9.4 restart
- Verify that you can connect with the user mmuser.
psql --host=localhost --dbname=mattermost --username=mmuser --password
The PostgreSQL interactive terminal starts. To exit the PostgreSQL interactive terminal, type
\q
and press Enter.
With the database installed and the initial setup complete, you can now install the Mattermost server.
Installing Mattermost Server¶
Install Mattermost Server on a 64-bit machine.
Assume that the IP address of this server is 10.10.10.2
To install Mattermost Server on RHEL 6.6
- Log in to the server that will host Mattermost Server and open a terminal window.
- Download the latest version of the Mattermost Server. In the following command, replace
X.X.X
with the version that you want to download:
wget https://releases.mattermost.com/X.X.X/mattermost-X.X.X-linux-amd64.tar.gz
- Extract the Mattermost Server files.
tar -xvzf *.gz
- Move the extracted file to the
/opt
directory.
sudo mv mattermost /opt
- Create the storage directory for files.
sudo mkdir /opt/mattermost/data
Note
The storage directory will contain all the files and images that your users post to Mattermost, so you need to make sure that the drive is large enough to hold the anticipated number of uploaded files and images.
- Set up a system user and group called mattermost that will run this service, and set the ownership and permissions.
sudo useradd --system --user-group mattermost
sudo chown -R mattermost:mattermost /opt/mattermost
sudo chmod -R g+w /opt/mattermost
- Set up the database driver in the file
/opt/mattermost/config/config.json
. Open the file as root in a text editor and make the following changes:
- If you are using PostgreSQL:
- Set
"DriverName"
to"postgres"
- Set
"DataSource"
to the following value, replacing<mmuser-password>
and<host-name-or-IP>
with the appropriate values:"postgres://mmuser:<mmuser-password>@<host-name-or-IP>:5432/mattermost?sslmode=disable&connect_timeout=10"
.
- If you are using MySQL:
- Set
"DriverName"
to"mysql"
- Set
"DataSource"
to the following value, replacing<mmuser-password>
and<host-name-or-IP>
with the appropriate values:"mmuser:<mmuser-password>@tcp(<host-name-or-IP>:3306)/mattermost?charset=utf8"
Test the Mattermost server to make sure everything works.
- Change to the
bin
directory:
cd /opt/mattermost/bin
- Start the Mattermost server as the user mattermost:
sudo -u mattermost /.platform
- Change to the
When the server starts, it shows some log information and the textServer is listening on :8065
. You can stop the server by typingCTRL+C
in the terminal window.
- Setup Mattermost to use the Upstart daemon which handles supervision of the Mattermost process.
- Create the Mattermost configuration file:
sudo touch /etc/init/mattermost.conf
- Open the configuration file in your favorite text editor, and copy the following lines into the file:
start on runlevel [2345] stop on runlevel [016] respawn limit nofile 50000 50000 chdir /opt/mattermost exec bin/platform
- Start the Mattermost server.
sudo start mattermost
- Verify that Mattermost is running.
curl http://localhost:8065
You should see the HTML that’s returned by the Mattermost server.
Now that Mattermost is installed and running, it’s time to create the admin user and configure Mattermost for use.
Configuring Mattermost Server¶
- Navigate to
https://mattermost.example.com
and create a team and user.
The first user in the system is automatically granted thesystem_admin
role, which gives you access to the System Console.
Open the System Console. Click your username at the top left of navigation panel. In the menu that opens, click System Console.
Setup an SMTP email service. Click Notifications > Email and make the following changes. The example below assumes AmazonSES.
- Set Enable Email Notifications to
true
- Set Notification Display Name to
No-Reply
- Set Notification From Address to
mattermost@example.com
- Set SMTP Server Username to
[YOUR_SMTP_USERNAME]
- Set SMTP Server Password to
[YOUR_SMTP_PASSWORD]
- Set SMTP Server to
email-smtp.us-east-1.amazonaws.com
- Set SMTP Server Port to
465
- Set Connection Security to
TLS
- Save the Settings
- Set Enable Email Notifications to
Click Files > Storage and change Local Storage Directory from
./data/
to/mattermost/data
Click General > Logging and set Output logs to console to
false
Feel free to modify other settings.
Restart the Mattermost Service.
sudo restart mattermost
Configuring TLS on the Mattermost Server¶
- Go to the General > Configuration section of the System Console.
- Change the Listen Address setting to
:443
- Change the Connection Security setting to
TLS
- Change the Forward port 80 to 443 setting to
true
if you wish to redirect users that try to connect insecurely to a secure connection. If you’re using a proxy such as NGINX in front of Mattermost this setting is unnecessary and should be set tofalse
- Run
sudo setcap cap_net_bind_service=+ep ./bin/platform
in your Mattermost directory to allow Mattermost to bind to low ports. You will need to re-run this command every time you upgrade Mattermost or it will fail to bind to the port.
At this point you have two options: automatic certificate retrieval though Let’s Encrypt or manually specifying a certificate.
Automatic Certificate Retrieval¶
In this mode a certificate will be automatically retrieved the first time a client tries to connect to the Mattermost server. Certificates will be retrieved for any hostname a client tries to reach the server at. Setting this up is only one step:
- Change the Use Let’s Encrypt setting to
true
. - Restart the Mattermost server for these changes to take effect.
Manual Certificate Specification¶
- Change the Use Let’s Encrypt setting to
false
. - Change the TLS Certificate File setting to the location of the certificate file.
- Change the TLS Key File setting to the location of the private key file.
- Restart the Mattermost server for these changes to take effect.
Installing NGINX Server¶
In a production setting, use a proxy server for greater security and performance of Mattermost.
The main benefits of using a proxy are as follows:
- SSL termination
- HTTP to HTTPS redirect
- Port mapping
:80
to:8065
- Standard request logs
To install NGINX on RHEL 6.6 or 7.1:
- Log in to the server that will host the proxy, and open a terminal window.
- Create the file /etc/yum.repos.d/nginx.repo.
sudo touch /etc/yum.repos.d/nginx.repo
- Open the file as root in a text editor and add the following contents, where {version} is 6 for RHEL 6.6, and 7 for RHEL 7.1:
[nginx] name=nginx repo baseurl=http://nginx.org/packages/rhel/{version}/$basearch/ gpgcheck=0 enabled=1
- Install NGINX.
sudo yum install nginx.x86_64
- After the installation is complete, start NGINX.
On RHEL 6.6:
sudo service nginx start
On RHEL 7.1:
sudo systemctl start nginx
Optional Set NGINX to start at system boot.
On RHEL 6.6:
sudo chkconfig nginx on
On RHEL 7.1:
sudo systemctl enable nginx
- Verify that NGINX is running.
curl http://localhost
If NGINX is running, you see the following output:
<!DOCTYPE html> <html> <head> <title>Welcome to nginx!</title> . . . <p><em>Thank you for using nginx.</em></p> </body> </html>
What to do next
- Map a fully qualified domain name (FQDN) such as
mattermost.example.com
to point to the NGINX server. - Configure NGINX to proxy connections from the Internet to the Mattermost Server.
Configuring NGINX as a proxy for Mattermost Server¶
NGINX is configured using a file in the /etc/nginx/sites-available
directory. You need to create the file and then enable it. When creating the file, you need the IP address of your Mattermost server and the fully qualified domain name (FQDN) of your Mattermost website.
To configure NGINX as a proxy
- Log in to the server that hosts NGINX and open a terminal window.
- Create a configuration file for Mattermost.
sudo touch /etc/nginx/sites-available/mattermost
- Open the file
/etc/nginx/sites-available/mattermost
as root in a text editor and replace its contents, if any, with the following lines. Make sure that you use your own values for the Mattermost server IP address and FQDN for server_name.
upstream backend { server 10.10.10.2:8065; } proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=mattermost_cache:10m max_size=3g inactive=120m use_temp_path=off; server { listen 80; server_name mattermost.example.com; location /api/v3/users/websocket { proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; client_max_body_size 50M; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Frame-Options SAMEORIGIN; proxy_buffers 256 16k; proxy_buffer_size 16k; proxy_read_timeout 600s; proxy_pass http://backend; } location / { client_max_body_size 50M; proxy_set_header Connection ""; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Frame-Options SAMEORIGIN; proxy_buffers 256 16k; proxy_buffer_size 16k; proxy_read_timeout 600s; proxy_cache mattermost_cache; proxy_cache_revalidate on; proxy_cache_min_uses 2; proxy_cache_use_stale timeout; proxy_cache_lock on; proxy_pass http://backend; } }
- Remove the existing default sites-enabled file.
sudo rm /etc/nginx/sites-enabled/default
- Enable the mattermost configuration.
sudo ln -s /etc/nginx/sites-available/mattermost /etc/nginx/sites-enabled/mattermost
- Restart NGINX.
On Ubuntu 14.04 and RHEL 6.6:
sudo service nginx restart
On Ubuntu 16.04 and RHEL 7.1:
sudo systemctl restart nginx
- Verify that you can see Mattermost through the proxy.
curl http://localhost
If everything is working, you will see the HTML for the Mattermost signup page.
What to do next
You can configure NGINX to use SSL, which allows you to use HTTPS connections and the HTTP/2 protocol.
Configuring NGINX with SSL and HTTP/2¶
Using SSL gives greater security by ensuring that communications between Mattermost clients and the Mattermost server are encrypted. It also allows you to configure NGINX to use the HTTP/2 protocol.
Although you can configure HTTP/2 without SSL, both Firefox and Chrome browsers support HTTP/2 on secure connections only.
You can use any certificate that you want, but these instructions show you how to download and install certificates from Let’s Encrypt, a free certificate authority.
To configure SSL and HTTP/2:
- Log in to the server that hosts NGINX and open a terminal window.
- Install git.
If you are using Ubuntu or Debian:
sudo apt-get install git
If you are using RHEL:
sudo yum install git
- Clone the Let’s Encrypt repository on GitHub.
git clone https://github.com/letsencrypt/letsencrypt
- Change to the
letsencrypt
directory.
cd letsencrypt
- Stop NGINX.
On Ubuntu 14.04 and RHEL 6.6:
sudo service nginx stop
On Ubuntu 16.04 and RHEL 7.1:
sudo systemctl stop nginx
- Run
netstat
to make sure that nothing is listening on port 80.
netstat -na | grep ':80.*LISTEN'
- Run the Let’s Encrypt installer.
./letsencrypt-auto certonly --standalone
When prompted, enter your domain name. After the installation is complete, you can find the certificate in the
/etc/letsencrypt/live
directory.
- Open the file
/etc/nginx/sites-available/mattermost
as root in a text editor and update the server section to incorporate the highlighted lines in the following sample. Make sure to replace {domain-name} with your own domain name, in 3 places.
. . . proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=mattermost_cache:10m max_size=3g inactive=120m use_temp_path=off; server { listen 80 default_server; server_name {domain-name} ; return 301 https://$server_name$request_uri; } server { listen 443 ssl http2; server_name . . . ; ssl on; ssl_certificate /etc/letsencrypt/live/{domain-name}/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/{domain-name}/privkey.pem; ssl_session_timeout 5m; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH'; ssl_prefer_server_ciphers on; ssl_session_cache shared:SSL:10m; } location /api/v3/users/websocket { proxy_set_header Upgrade $http_upgrade; . . .
- Restart NGINX.
On Ubuntu 14.04 and RHEL 6.6:
sudo service nginx start
On Ubuntu 16.04 and RHEL 7.1:
sudo systemctl start nginx
- Check that your SSL certificate is set up correctly.
- Test the SSL certificate by visiting a site such as https://www.ssllabs.com/ssltest/index.html
- If there’s an error about the missing chain or certificate path, there is likely an intermediate certificate missing that needs to be included.
- Configure
cron
so that the certificate will automatically renew every month.
crontab -e
In the following line, use your own domain name in place of {domain-name}
@monthly /home/ubuntu/letsencrypt/letsencrypt-auto certonly --reinstall --nginx -d {domain-name} && sudo service nginx reload