2016-12-07 02:34:41 +01:00
|
|
|
# Production Installation
|
2016-07-12 21:49:44 +02:00
|
|
|
|
2016-12-07 02:34:41 +01:00
|
|
|
Make sure you want to install a Zulip production server; if you'd
|
|
|
|
instead like to test or develop a new feature, we recommend the
|
|
|
|
[Zulip server development environment](dev-overview.html#requirements) instead.
|
|
|
|
|
|
|
|
You will need an Ubuntu system that satisfies
|
|
|
|
[the installation requirements](prod-requirements.html). In short,
|
|
|
|
you should have an Ubuntu 14.04 Trusty or Ubuntu 16.04 Xenial 64-bit
|
|
|
|
server instance, with at least 4GB RAM, 2 CPUs, and 10 GB disk space.
|
|
|
|
You should also have a domain name available and have updated its DNS
|
|
|
|
record to point to your server.
|
2016-07-28 01:38:02 +02:00
|
|
|
|
2016-08-25 06:04:01 +02:00
|
|
|
## Step 0: Subscribe
|
|
|
|
|
|
|
|
Please subscribe to low-traffic [the Zulip announcements Google
|
|
|
|
Group](https://groups.google.com/forum/#!forum/zulip-announce) to get
|
|
|
|
announcements about new releases, security issues, etc.
|
|
|
|
|
2016-07-28 01:38:02 +02:00
|
|
|
## Step 1: Install SSL Certificates
|
|
|
|
|
2016-08-25 04:01:03 +02:00
|
|
|
Zulip runs over https only and requires ssl certificates in order to
|
|
|
|
work. It looks for the certificates in `/etc/ssl/private/zulip.key`
|
|
|
|
and `/etc/ssl/certs/zulip.combined-chain.crt`. Note that Zulip uses
|
|
|
|
`nginx` as its webserver and thus [expects a chained certificate
|
|
|
|
bundle](http://nginx.org/en/docs/http/configuring_https_servers.html)
|
|
|
|
|
2016-08-25 06:33:09 +02:00
|
|
|
If you need an SSL certificate, see [our SSL certificate
|
|
|
|
documentation](ssl-certificates.html). If you already have an SSL
|
|
|
|
certificate, just install (or symlink) them into place at the above
|
|
|
|
paths, and move on to the next step.
|
2016-07-28 01:38:02 +02:00
|
|
|
|
2016-08-25 06:36:07 +02:00
|
|
|
## Step 2: Download and install latest release
|
2016-07-28 01:38:02 +02:00
|
|
|
|
2016-08-25 06:36:07 +02:00
|
|
|
If you haven't already, download and unpack [the latest built server
|
2017-01-29 02:56:25 +01:00
|
|
|
tarball](https://www.zulip.org/dist/releases/zulip-server-latest.tar.gz)
|
2016-08-25 06:36:07 +02:00
|
|
|
with the following commands:
|
2016-07-28 01:38:02 +02:00
|
|
|
|
|
|
|
```
|
2016-08-25 06:36:07 +02:00
|
|
|
sudo -i # If not already root
|
2016-08-26 20:56:12 +02:00
|
|
|
cd /root
|
2017-01-29 02:56:25 +01:00
|
|
|
wget https://www.zulip.org/dist/releases/zulip-server-latest.tar.gz
|
2016-08-25 06:46:27 +02:00
|
|
|
rm -rf /root/zulip && mkdir /root/zulip
|
2016-08-25 06:33:30 +02:00
|
|
|
tar -xf zulip-server-latest.tar.gz --directory=/root/zulip --strip-components=1
|
2016-07-28 01:38:02 +02:00
|
|
|
```
|
|
|
|
|
2016-08-25 06:36:07 +02:00
|
|
|
Then, run the Zulip install script:
|
2016-07-28 01:38:02 +02:00
|
|
|
```
|
|
|
|
/root/zulip/scripts/setup/install
|
|
|
|
```
|
|
|
|
|
|
|
|
This may take a while to run, since it will install a large number of
|
2017-02-14 22:00:13 +01:00
|
|
|
dependencies. It also creates `zulip` user, which will be used to run
|
|
|
|
the various Zulip servers.
|
2016-07-28 01:38:02 +02:00
|
|
|
|
2016-08-25 04:01:03 +02:00
|
|
|
The Zulip install script is designed to be idempotent, so if it fails,
|
|
|
|
you can just rerun it after correcting the issue that caused it to
|
|
|
|
fail. Also note that it automatically logs a transcript to
|
|
|
|
`/var/log/zulip/install.log`; please include a copy of that file in
|
|
|
|
any bug reports.
|
2016-07-28 01:38:02 +02:00
|
|
|
|
2016-08-25 06:36:07 +02:00
|
|
|
## Step 3: Configure Zulip
|
2016-07-28 01:38:02 +02:00
|
|
|
|
|
|
|
Configure the Zulip server instance by editing `/etc/zulip/settings.py` and
|
|
|
|
providing values for the mandatory settings, which are all found under the
|
|
|
|
heading `### MANDATORY SETTINGS`.
|
|
|
|
|
|
|
|
These settings include:
|
|
|
|
|
2017-02-22 06:15:11 +01:00
|
|
|
- `EXTERNAL_HOST`: the user-accessible Zulip domain name for your
|
|
|
|
Zulip installation (aka what users will type in their web
|
2017-02-16 23:03:14 +01:00
|
|
|
browser). This should of course match the DNS name you configured to
|
|
|
|
point to your server and for which you configured SSL certificates.
|
|
|
|
If you plan to use multiple domains, add the others to
|
2017-02-22 06:15:11 +01:00
|
|
|
`ALLOWED_HOSTS`.
|
|
|
|
|
|
|
|
- `ZULIP_ADMINISTRATOR`: the email address of the person or team
|
|
|
|
maintaining this installation and who will get support and error
|
|
|
|
emails.
|
2016-08-25 04:01:03 +02:00
|
|
|
|
|
|
|
- `EMAIL_*`, `DEFAULT_FROM_EMAIL`, and `NOREPLY_EMAIL_ADDRESS`:
|
2017-02-16 23:04:57 +01:00
|
|
|
credentials for an outgoing SMTP server so Zulip can send emails
|
|
|
|
when needed (don't forget to set `email_password` in the
|
2017-02-22 06:12:12 +01:00
|
|
|
`zulip-secrets.conf` file!). We highly recommend reading our
|
|
|
|
[production email docs](prod-email.html) and following the test
|
|
|
|
procedure discussed there to make sure you've setup outgoing email
|
|
|
|
correctly, since outgoing email is the most common configuration
|
|
|
|
problem.
|
2016-08-25 04:01:03 +02:00
|
|
|
|
2017-02-16 23:04:57 +01:00
|
|
|
- `AUTHENTICATION_BACKENDS`: a list of enabled authentication
|
|
|
|
mechanisms. You'll need to enable at least one authentication
|
|
|
|
mechanism by uncommenting its corresponding line, and then also do
|
|
|
|
any additional configuration required for that backend as documented
|
|
|
|
in the `settings.py` file (the email backend requires no extra
|
|
|
|
configuration). See the
|
|
|
|
[section on Authentication](prod-authentication-methods.html) for
|
|
|
|
more detail on the available authentication backends and how to
|
|
|
|
configure them.
|
|
|
|
|
2016-08-25 06:36:07 +02:00
|
|
|
## Step 4: Initialize Zulip database
|
2016-07-28 01:38:02 +02:00
|
|
|
|
2017-02-14 22:00:13 +01:00
|
|
|
At this point, you are done doing things as root. The remaining
|
|
|
|
commands are run as the `zulip` user using `su zulip`. To initialize
|
|
|
|
the Zulip database for your production install, run:
|
2016-07-28 01:38:02 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
su zulip -c /home/zulip/deployments/current/scripts/setup/initialize-database
|
|
|
|
```
|
|
|
|
|
2016-08-25 04:01:03 +02:00
|
|
|
The `initialize-database` script will report an error if you did not
|
|
|
|
fill in all the mandatory settings from `/etc/zulip/settings.py`. It
|
|
|
|
is safe to rerun it after correcting the problem if that happens.
|
2016-07-28 01:38:02 +02:00
|
|
|
|
2016-08-25 06:29:36 +02:00
|
|
|
This completes the process of installing Zulip on your server.
|
|
|
|
However, in order to use Zulip, you'll need to create an organization
|
|
|
|
in your Zulip installation.
|
|
|
|
|
2016-08-25 06:36:07 +02:00
|
|
|
## Step 5: Create a Zulip organization and login
|
2016-08-25 06:29:36 +02:00
|
|
|
|
2017-02-22 06:12:12 +01:00
|
|
|
* If you haven't already, verify that your
|
|
|
|
[outgoing email configuration works](prod-email.html#testing-and-troubleshooting).
|
|
|
|
The organization creation process will fail if outgoing email is not
|
|
|
|
configured properly.
|
2016-08-25 06:29:36 +02:00
|
|
|
|
|
|
|
* Run the organization (realm) creation [management
|
|
|
|
command](prod-maintain-secure-upgrade.html#management-commands) :
|
|
|
|
|
|
|
|
```
|
|
|
|
su zulip # If you weren't already the zulip user
|
2017-02-03 21:46:58 +01:00
|
|
|
/home/zulip/deployments/current/manage.py generate_realm_creation_link
|
2016-08-25 06:29:36 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
This will print out a secure 1-time use link that allows creation of a
|
|
|
|
new Zulip organization on your server. For most servers, you will
|
|
|
|
only ever do this once, but you can run `manage.py
|
|
|
|
generate_realm_creation_link` again if you want to host another
|
|
|
|
organization on your Zulip server.
|
|
|
|
|
|
|
|
* Open the link generated with your web browser. You'll see the create
|
2016-10-11 20:04:56 +02:00
|
|
|
organization page ([screenshot here](_static/zulip-create-realm.png)).
|
2016-08-25 06:29:36 +02:00
|
|
|
Enter your email address and click *Create organization*.
|
|
|
|
|
|
|
|
* Check your email to find the confirmation email and click the
|
|
|
|
link. You'll be prompted to finish setting up your organization and
|
|
|
|
initial administrator user ([screenshot
|
2016-10-11 20:04:56 +02:00
|
|
|
here](_static/zulip-create-user-and-org.png)). Complete this form and
|
2016-08-25 06:29:36 +02:00
|
|
|
log in!
|
|
|
|
|
|
|
|
**Congratulations!** You are logged in as an organization
|
|
|
|
administrator for your new Zulip organization. After getting
|
2017-04-07 21:39:58 +02:00
|
|
|
oriented, we recommend visiting the "Organization settings" UI (linked
|
|
|
|
from the upper-right gear menu in the Zulip webapp) to configure
|
2016-08-25 06:29:36 +02:00
|
|
|
important policy settings like how users can join your new
|
2016-09-16 19:05:14 +02:00
|
|
|
organization. By default, your organization will be configured as
|
|
|
|
follows depending on what type of organization you selected:
|
2016-08-25 06:29:36 +02:00
|
|
|
|
2016-09-16 19:05:14 +02:00
|
|
|
Community Organization:
|
|
|
|
* `restricted_to_domain=False`: No restriction on user email addresses.
|
|
|
|
* `invite_required=True`: A user must be invited to join.
|
|
|
|
|
|
|
|
Corporate Organization:
|
|
|
|
* `restricted_to_domain=True`: New users must have an email address in the same domain (e.g. @acme.com) as yours.
|
|
|
|
* `invite_required=False`: No invitation is required to join.
|
2016-08-25 06:29:36 +02:00
|
|
|
|
|
|
|
Next, you'll likely want to do one of the following:
|
|
|
|
|
|
|
|
* [Customize your Zulip organization](prod-customize.html).
|
|
|
|
* [Learn about managing a production Zulip server](prod-maintain-secure-upgrade.html).
|
|
|
|
|
|
|
|
## Troubleshooting
|
|
|
|
|
|
|
|
If you get an error after `scripts/setup/install` completes, check
|
|
|
|
`/var/log/zulip/errors.log` for a traceback, and consult the
|
2017-02-13 01:55:54 +01:00
|
|
|
[troubleshooting section](prod-troubleshooting.html) for advice on how
|
|
|
|
to debug. If that doesn't help, please visit
|
2017-02-13 02:04:05 +01:00
|
|
|
[#production help](https://chat.zulip.org/#narrow/stream/production.20help)
|
2017-02-13 01:55:54 +01:00
|
|
|
in the [Zulip developerment community server](chat-zulip-org.html) for
|
|
|
|
realtime help or email zulip-help@googlegroups.com with the full
|
2016-08-25 06:29:36 +02:00
|
|
|
traceback and we'll try to help you out!
|