summaryrefslogtreecommitdiffstats
path: root/doc/install
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-11-09 15:28:29 -0500
committerChristopher Speller <crspeller@gmail.com>2015-11-09 15:28:29 -0500
commit774358bcee8bc6e9bd5840dc547c0fc35ff3ddb3 (patch)
tree24097fdc16f071ae177a253719b8eaaf96971d31 /doc/install
parentbb9615796077d4adb6d4bbe2b9e8f0e655254ec1 (diff)
parent09c3f0d21e4cec738b061350c54f205986096133 (diff)
downloadchat-774358bcee8bc6e9bd5840dc547c0fc35ff3ddb3.tar.gz
chat-774358bcee8bc6e9bd5840dc547c0fc35ff3ddb3.tar.bz2
chat-774358bcee8bc6e9bd5840dc547c0fc35ff3ddb3.zip
Merge pull request #1346 from Tsynapse/patch-3
Updated Postgres instructions
Diffstat (limited to 'doc/install')
-rw-r--r--doc/install/Production-Ubuntu.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/install/Production-Ubuntu.md b/doc/install/Production-Ubuntu.md
index e792a551c..098707ada 100644
--- a/doc/install/Production-Ubuntu.md
+++ b/doc/install/Production-Ubuntu.md
@@ -24,6 +24,16 @@
* ```postgre=# \q```
1. You can exit the postgres account by typing:
* ``` exit```
+1. Allow Postgres to listen on all assigned IP Addresses
+ * ```sudo vi /etc/postgresql/9.3/main/postgresql.conf```
+ * Uncomment 'listen_addresses' and change 'localhost' to '*'
+1. Alter pg_hba.conf to allow the mattermost server to talk to the postgres database
+ * ```sudo vi /etc/postgresql/9.3/main/pg_hba.conf```
+ * Add the following line to the 'IPv4 local connections'
+ * host all all 10.10.10.2/32 md5
+1. Reload Postgres database
+ * ```sudo /etc/init.d/postgresql reload```
+
## 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