Installation
Building and installing
Kore has been tested to run on the following platforms:
- Linux
- OpenBSD
- FreeBSD
- macOS
Get the 4.2.0 release tarball and signature from https://kore.io/releases/4.2.0 and verify it using minisign:
minisign -Vm kore-4.2.0.tgz -P RWSxkEDc2y+whfKTmvhqs/YaFmEwblmvar7l6RXMjnu6o9tZW3LC0Hc9
If verification is successful, build it. Do not build distributions that cannot be verified by the minisign key seen above.
$ cd kore
$ make
$ sudo make install
Kore has several build flavors available:
- ACME=1 (compiles in ACME support)
- CURL=1 (compiles in asynchronous curl support)
- TASKS=1 (compiles in task support)
- PGSQL=1 (compiles in pgsql support)
- DEBUG=1 (enables use of -d for debug)
- NOHTTP=1 (compiles Kore without HTTP support)
- NOOPT=1 (disable compiler optimizations)
- JSONRPC=1 (compiles in JSONRPC support)
- PYTHON=1 (compiles in the Python support)
- TLS_BACKEND=none (compiles Kore without any TLS backend)
These build flavors can be passed on the command line when building. Note that enabling these flavors may require additional libraries to be present on your system:
Base requirements
- openssl 1.1.1 or libressl 3.x (note: openssl 3.0.0 is currently not supported)
Requirement for asynchronous curl (optional)
- libcurl (7.64.0 or higher)
Requirements for background tasks (optional)
- pthreads
Requirements for pgsql (optional)
- libpq
Requirements for python (optional)
- Python 3.6+
For BSD-like systems you will need to install GNU Make.
macOS
Kore is available on Homebrew under macOS and can be installed with:
``
$ brew install kore