forked from mattermost/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to streamline monolithic style
- Loading branch information
1 parent
07a18a5
commit 50f0308
Showing
10 changed files
with
61 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
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. | ||
|
||
The Mattermost server must be installed on a 64-bit machine, but the database and proxy can be on 32-bit machines. For the database, you can install either MySQL or ProstgreSQL. The proxy is NGINX. | ||
|
||
After all the components are installed, some configuration is required. You can set up email notifications, SSL, TSL, and HTTP/2. For more information about configuring, see :ref:`config-mattermost`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Installing Ubuntu Server 14.04 LTS | ||
================================== | ||
|
||
Install Ubuntu Server on each machine that hosts one or more of the components. In most cases you need the 64-bit version. | ||
|
||
You can use the 32-bit version on a machine that hosts the database and proxy server, but the Mattermost server requires 64-bit. | ||
|
||
**To install Ubuntu Server:** | ||
|
||
1. Download the appropriate ISO image from http://releases.ubuntu.com/14.04.5/ and burn it to a CD-ROM. | ||
|
||
2. Boot the system from the CD-ROM drive and follow the on-screen prompts. | ||
|
||
3. 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 apt-get update`` | ||
- ``sudo apt-get upgrade`` | ||
|
||
Now that the system is up to date, you can install the database. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,23 @@ | ||
Installing Ubuntu Server 14.04 LTS | ||
================================== | ||
|
||
Install Ubuntu Server on each machine that hosts one or more of the components. In most cases you need the 64-bit version. | ||
|
||
You can use the 32-bit version on a machine that hosts the database and proxy server, but the Mattermost server requires 64-bit. | ||
|
||
**To install Ubuntu Server:** | ||
|
||
1. Download the appropriate ISO image from http://releases.ubuntu.com/14.04.5/ and burn it to a CD-ROM. | ||
|
||
2. Boot the system from the CD-ROM drive and follow the on-screen prompts. | ||
|
||
3. 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 apt-get update`` | ||
- ``sudo apt-get upgrade`` | ||
|
||
**What to do next** | ||
|
||
Install a database. You can install either MySQL 5.6 or PostgreSQL version 9.3 or later. | ||
|
||
**Related links** | ||
- :ref:`install-ubuntu-1404-mysql` | ||
- :ref:`install-ubuntu-1404-postgresql` | ||
.. _install-ubuntu-1404: | ||
|
||
========================================= | ||
Installing Mattermost on Ubuntu 14.04 LTS | ||
========================================= | ||
|
||
Install a production-ready Mattermost system on 1 to 3 machines. | ||
|
||
.. include:: install-common-intro.rst | ||
|
||
.. contents:: Install and configure the components in the following order. Note that you need only one database, either MySQL or PostgrSQL. | ||
:backlinks: top | ||
:local: | ||
|
||
.. include:: install-ubuntu-1404-server.rst | ||
.. include:: install-ubuntu-1404-mysql.rst | ||
.. include:: install-ubuntu-1404-postgresql.rst | ||
.. include:: install-ubuntu-1404-mattermost.rst | ||
.. include:: config-mattermost-server.rst | ||
.. include:: config-tls-mattermost.rst | ||
.. include:: install-nginx.rst | ||
.. include:: config-proxy-nginx.rst | ||
.. include:: config-ssl-http2-nginx.rst |