Friday, 15 July 2016

thumbnail

How-to-install-and-configure-Mattermost-on-ubuntu-14.04

Introduction 

Mattermost is an alternative to Slack messaging application. It provides the option to communicate at one place.

In this tutorial we will see how to install and configure in ubuntu with mysql-5.6 server database.



1. First of all create database :-

CREATE DATABASE mattermost;
GRANT ALL on mattermost.* to mattermost@localhost IDENTIFIED BY 'mattermost';
FLUSH PRIVILEGES;

2. Download and extract the mattermost archive :-

wget https://releases.mattermost.com/3.1.0/mattermost-team-3.1.0-linux-amd64.tar.gz


Extract it :-

tar -xvf mattermost-team-3.1.0-linux-amd64.tar.gz




3. Configure the mattermost :-

cd mattermost/config
sudo vim config.json



Now create the data directory for mattermost installation 

mkdir ~/mattermost/data

4. Start the mattermost server :-

cd ~/mattermost/bin
sudo ./platform


Enter your email address, username and password



Create a Team 


Then your link will be created for live communication


Now you can invite your friends



Copy the URL and send it to your friend via email or chat.



As you can see above that I have added my friend for testing purpose. You can also create your Private group and chat with them.

That's it,
Now enjoy using it 
Please do Likes,Comment and Share.

Related Posts :

Subscribe by Email

Follow Updates Articles from This Blog via Email

No Comments