diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-01-10 12:17:22 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-10 12:17:22 +0000 |
commit | 1d16f5ea0e1329b7613336a8c15b245513579bbd (patch) | |
tree | a263385a214bed54afb99d803e6d262fa9a40009 /INSTALL.md | |
parent | Merge branch 'master' of github.com:matrix-org/synapse into develop (diff) | |
parent | update install notes for CentOS (diff) | |
download | synapse-1d16f5ea0e1329b7613336a8c15b245513579bbd.tar.xz |
Merge pull request #6675 from matrix-org/rav/die_sqlite37_die_die_die
Refuse to start if sqlite is older than 3.11.0
Diffstat (limited to 'INSTALL.md')
-rw-r--r-- | INSTALL.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/INSTALL.md b/INSTALL.md index 9da2e3c734..d25fcf0753 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -133,6 +133,11 @@ sudo yum install libtiff-devel libjpeg-devel libzip-devel freetype-devel \ sudo yum groupinstall "Development Tools" ``` +Note that Synapse does not support versions of SQLite before 3.11, and CentOS 7 +uses SQLite 3.7. You may be able to work around this by installing a more +recent SQLite version, but it is recommended that you instead use a Postgres +database: see [docs/postgres.md](docs/postgres.md). + #### macOS Installing prerequisites on macOS: |