Skip to content

Latest commit

 

History

History
285 lines (213 loc) · 9.56 KB

INSTALL.md

File metadata and controls

285 lines (213 loc) · 9.56 KB

Belenios compilation instructions

Read this document if you want to deploy your own instance of Belenios. To get help or share your experience, please use in priority the public mailing-list. To give feedback on deploying an instance, you can also mail us.

Using containers

In order to quickly run a local instance, a demo Dockerfile is available. The following commands let you build the image and run it to make the server accessible at localhost:8001. Emails are not sent but only printed in a file accessible from localhost:8001/static/mail.txt Note that this is not meant for production purposes.

make clean # to avoid copying everything in the image
docker build -f contrib/docker/demo.Dockerfile -t belenios .
docker run --rm --network host -it belenios

If you are using Linux and have root privileges, you might be interested in our documentation on deploying Belenios using systemd-nspawn.

The rest of this file documents other ways to build Belenios on standard POSIX systems.

The easy way

Belenios is written in OCaml and has some dependencies towards third-party OCaml libraries. The easiest and most portable way to compile Belenios from source is to use OPAM, which is a package manager for OCaml projects.

The non-OCaml prerequisites are:

These libraries and tools are pretty common, and might be directly part of your operating system. On Debian and its derivatives, they can be installed with the following command:

sudo apt install bubblewrap build-essential libgmp-dev libsodium-dev pkg-config m4 libssl-dev libsqlite3-dev wget ca-certificates zip unzip libncurses-dev zlib1g-dev libgd-securityimage-perl cracklib-runtime jq npm

If you are unfamiliar with OCaml or OPAM, we provide an opam-bootstrap.sh shell script that creates a whole, hopefully self-contained, OCaml+OPAM install, and then installs all the dependencies of Belenios, everything into a single directory. You can choose the directory by setting the BELENIOS_SYSROOT environment variable, or it will take ~/.belenios by default. Just run:

./opam-bootstrap.sh

On a modern desktop system, this needs approximately 30 minutes and 3.3 gigabytes of disk space.

If everything goes successfully, follow the given instructions to update your shell environment, then run:

make build-release-server

and you can skip the next two sections and go directly to the Documentation section.

You can also compile a debug version by using:

make build-debug-server

Note that this version may introduce vulnerabilities and should not be used in production!

To make sure everything went well, you can run tests:

make check

If you are familiar with OCaml, please read the opam-bootstrap.sh shell script, or the following two sections to compile Belenios with your existing OCaml installation.

OPAM overlay

Belenios needs some OPAM packages to be patched. This is done in an opam repository overlay that you can add with the following command:

opam repository add belenios-overlay $PWD/vendor/opam-overlay

This is automatically handled by opam-bootstrap.sh

Command-line tool

To compile the command-line tool, you will need:

With OPAM, these dependencies can be installed with the following command:

opam install dune atdgen zarith cryptokit cmdliner

Once all the dependencies have been installed, the command-line tool can be compiled with:

make

It produces a single executable, belenios-tool, in the _build/install/default/bin directory. You can install it in your PATH (which we will assume in the guides), or refer to it with a full path.

Web server

The web server has the following additional dependencies:

With OPAM, you can install them with:

opam install calendar eliom csv

Once all the dependencies have been installed, the Eliom module can be compiled with:

make build-release-server

It will produce a full installation of Belenios, its libraries and its server, in the _run/usr directory. See demo/ocsigenserver.conf.in for an ocsigenserver configuration template, and the Server administrator's guide for more information on how to use it.

Documentation

You will need LaTeX, rubber and pandoc to compile the documention.

On Debian-based systems, you can install the dependencies needed to compile the documentation with:

sudo apt install texlive-latex-extra texlive-fonts-recommended texlive-fonts-extra lmodern texlive-science rubber pandoc

Once all the dependencies have been installed, the documentation can be compiled with:

make doc

Compiling on Windows using Cygwin

Windows is not yet a fully supported platform, but you can compile at least the command-line tool on Windows + 32-bit Cygwin. You might need the following packages:

  • curl
  • dos2unix
  • flexdll
  • gcc-core
  • gcc-g++
  • git
  • gmp
  • libgmp-devel
  • libsodium-devel
  • libncursesw-devel
  • libsqlite3-devel
  • m4
  • make
  • ocaml
  • ocaml-base
  • ocaml-camlp4
  • ocaml-compiler-libs
  • openssh
  • patch
  • pkg-config
  • zlib-devel

With these packages installed, you should be able to install OPAM by following its installation instructions from sources. Once OPAM is installed, follow the instructions in the Command-line tool section above.

Troubleshooting

Bootstrap fails if dune is already installed

The script opam-bootstrap.sh fails when a not suitable version of dune is already installed in your $PATH. This is due to a bug in opam. If you face this issue, either uninstall dune before running opam-bootstrap.sh, or manage to get opam running by other means, and directly use it to install the dependencies of Belenios.

Bootstrap fails because of an error with an OPAM package

For reproducibility purposes, the opam-bootstrap.sh script hardcodes a specific revision of the OPAM repository. However, it may happen that this revision becomes unusable, e.g. the URL of some tarball changes. This may give errors like bad checksums when running the script.

To recover from such errors, update your local copy of the OPAM repository with the following commands:

source env.sh
cd $OPAMROOT/../opam-repository
git pull --ff-only
opam update

then run the opam install command that can be found in the opam-bootstrap.sh script.

Missing sources

The instructions outlined in this document and in the opam-bootstrap.sh script imply downloading files from third-party servers. Sometimes, these servers can be down. For example, you can get:

=-=-= Installing ocamlnet.3.7.3 =-=-=
ocamlnet.3.7.3 Downloading http://download.camlcity.org/download/ocamlnet-3.7.3.tar.gz
[ERROR] http://download.camlcity.org/download/ocamlnet-3.7.3.tar.gz is not available

===== ERROR while installing ocamlnet.3.7.3 =====
Could not get the source for ocamlnet.3.7.3.

This can be worked around with the following steps:

  • source the generated env.sh file (you must adapt it if you use an incompatible shell such as tcsh);
  • download the file from an alternate source (for example Debian source packages);
  • run opam pin <package-name> <path-to-file-download-above> (in the example above, <package-name> would be ocamlnet);
  • resume the installation by running again the opam install command found in opam-bootstrap.sh;
  • follow the instructions given at the end of opam-bootstrap.sh.

Errors while compiling ocsigenserver

If ocsigenserver fails to install because of a SSL-related error:

  • edit opam-bootstrap.sh by adding ssl=0.5.2 to the opam install call;
  • run ./opam-bootstrap.sh.

Errors while compiling Belenios itself

If you succeeded installing all dependencies, but you get errors while compiling Belenios, maybe you installed an incompatible version of a dependency. The opam-bootstrap.sh script is tuned to install only compatible versions; you can have a look at it to get these versions.