summaryrefslogtreecommitdiffstats
path: root/doc/install
diff options
context:
space:
mode:
authorYi EungJun <eungjun.yi@navercorp.com>2015-11-26 17:40:21 +0900
committerYi EungJun <eungjun.yi@navercorp.com>2015-11-30 16:28:28 +0900
commit67057ff72bae1eb67f4175cfbf939b8f97c08bf3 (patch)
tree4d8c7a62970708dc727d7116f50ea2803de44f4d /doc/install
parent40d688f66942166057af117b538ebf9f22a04186 (diff)
downloadchat-67057ff72bae1eb67f4175cfbf939b8f97c08bf3.tar.gz
chat-67057ff72bae1eb67f4175cfbf939b8f97c08bf3.tar.bz2
chat-67057ff72bae1eb67f4175cfbf939b8f97c08bf3.zip
Reorder the step to set up Mattermost Server correctly
Preconditions(user and home directory) should be listed first because it affects the other steps. For example, step 7 assumes the path of the config directory is `/home/ubuntu/mattermost/config`. The 'ubuntu' user should be created before unzipping mattermost to prepare the user directory `/home/ubuntu`.
Diffstat (limited to 'doc/install')
-rw-r--r--doc/install/Production-Ubuntu.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/install/Production-Ubuntu.md b/doc/install/Production-Ubuntu.md
index 923cb0f2d..d6b98981c 100644
--- a/doc/install/Production-Ubuntu.md
+++ b/doc/install/Production-Ubuntu.md
@@ -37,12 +37,12 @@
## Set up Mattermost Server
1. For the purposes of this guide we will assume this server has an IP address of 10.10.10.2
+1. For the sake of making this guide simple we located the files at `/home/ubuntu/mattermost`. In the future we will give guidance for storing under `/opt`.
+1. We have also elected to run the Mattermost Server as the `ubuntu` account for simplicity. We recommend setting up and running the service under a `mattermost` user account with limited permissions.
1. Download the latest Mattermost Server by typing:
* ``` wget https://github.com/mattermost/platform/releases/download/v1.2.1/mattermost.tar.gz```
1. Unzip the Mattermost Server by typing:
* ``` tar -xvzf mattermost.tar.gz```
-1. For the sake of making this guide simple we located the files at `/home/ubuntu/mattermost`. In the future we will give guidance for storing under `/opt`.
-1. We have also elected to run the Mattermost Server as the `ubuntu` account for simplicity. We recommend setting up and running the service under a `mattermost` user account with limited permissions.
1. Create the storage directory for files. We assume you will have attached a large drive for storage of images and files. For this setup we will assume the directory is located at `/mattermost/data`.
* Create the directory by typing:
* ``` sudo mkdir -p /mattermost/data```