Installation¶
Clixon runs on Linux, FreeBSD port and Mac/Apple. CPU architecures include x86_64, i686, ARM32.
You can also run Clixon in a docker container.
Ubuntu Linux¶
Installing dependencies¶
Install packages:
sudo apt-get update
sudo apt-get install flex bison fcgi-dev curl-dev
Install and build CLIgen:
git clone https://github.com/olofhagsand/cligen.git
cd cligen;
configure;
make;
make install
Add a clicon user and group, using useradd and usermod:
sudo useradd clicon
sudo usermod -a -G clicon <user>
sudo usermod -a -G clicon www-data
Or using adduser, with somewhat different syntax on different platforms.
Build from source¶
configure # Configure clixon to platform
make # Compile
sudo make install # Install libs, binaries, and config-files
sudo make install-include # Install include files (for compiling)
FreeBSD¶
FreeBSD has ports for both cligen and clixon available. You can install them as binary packages, or you can build them in a ports source tree locally.
If you install using binary packages or build from the ports collection, the installation locations comply with FreeBSD standards and you have some assurance that the installed package is correct and functional.
The nginx setup for RESTCONF is altered - the system user www is used, and the restconf daemon is placed in /usr/local/sbin.
Binary package install¶
To install the pre-built binary package, use the FreeBSD pkg command:
% pkg install clixon
This will install clixon and all the dependencies needed.
Build from source¶
If you prefer you can also build clixon from the FreeBSD ports collection
Once you have the Ports Collection installed, you build clixon like this
% cd /usr/ports/devel/clixon
% make && make install
One issue with using the Ports Collection is that it may not install the latest version from GitHub. The port is generally updated soon after an official release, but there is still a lag between it and the master branch. The maintainer for the port tries to assure that the master branch will compile always, but no FreeBSD specific functional testing is done.
Systemd¶
Once installed, Clixon can be setup using systemd. The following shows an example with the backend and restconf daemons for the main example. Install them as /etc/systemd/system/example.service and /etc/systemd/system/example_retsconf.service, for example.
Systemd backend¶
The backend service is installed at /etc/systemd/system/example.service, for example. Note that in this example, the backend installation requires the restconf service, which is not necessary.
[Unit]
Description=Starts and stops a clixon example service on this system
Wants=example_restconf.service
[Service]
Type=forking
User=root
RestartSec=60
Restart=on-failure
ExecStart=/usr/local/sbin/clixon_backend -s running -f /usr/local/etc/example.xml
[Install]
WantedBy=multi-user.target
Systemd restconf¶
The Restconf service is installed at /etc/systemd/system/example_restconf.service, for example.
[Unit]
Description=Starts and stops an example clixon restconf service on this system
Wants=example.service
After=example.service
[Service]
Type=simple
User=www-data
WorkingDirectory=/www-data
Restart=on-failure
ExecStart=/www-data/clixon_restconf -f /usr/local/etc/example.xml
[Install]
WantedBy=multi-user.target
Advanced install¶
The Clixon configure script (generated by autoconf) includes several options apart from the standard ones.
- These include (standard options are omitted)
--enable-debug Build with debug symbols, default: no --disable-optyangs Include optional yang files in clixon install used for example and testing, default: no --enable-publish Enable publish of notification streams using SSE and curl --with-cligen=dir Use CLIGEN here --without-restconf disable support for restconf --with-wwwuser=<user> Set www user different from www-data --with-configfile=FILE set default path to config file --with-libxml2 use gnome/libxml2 regex engine --with-yang-installdir=DIR Install Clixon yang files here (default: ${prefix}/share/clixon) --with-opt-yang-installdir=DIR Install optional yang files here (default: ${prefix}/share/clixon)