Hiveconf¶
Overview¶
Hiveconf is the name of the configuration system used in ThinLinc. It is however not a ThinLinc-specific configuration system, but instead a generic configuration framework for storing key/value pairs in a human readable way, although still in a format that’s easy to read and modify from a computer program.
Hiveconf stores data using a “backend”, meaning configuration data can
be stored in different ways. The default backend which is also used in
ThinLinc is using a text file format similar to Windows
.INI
-files, or the format used in smb.conf
from Samba.
In ThinLinc, Hiveconf can only guarantee that files with encoding UTF-8 are correctly read. The Hiveconf-files of ThinLinc ships in UTF-8, but the encoding of the files could change if the files are opened or manually modified on a non UTF-8 system.
In this section, we will describe Hiveconf from a general point of view and also describe ThinLinc-specific details.
Basic Syntax¶
Basically, a Hiveconf file consists of key/value pairs with a
equalsign(=
) between them, as in the following example:
vsm_server_port = 9000
vnc_port_base = 5900
The values after the equal sign can be of the following types:
String
Boolean
Integer
Float
Binary data as hexadecimal ASCII
Data can also be lists of the above types, these lists are space-separated.
Tree Structure¶
Parameters in Hiveconf all reside in folders. Folders are just like a directory or folder in a normal file system. By adding folder directives to Hiveconf files, the parameters will be split up in a tree structure, meaning each parameter will be addressed using a path. This way, two folders can have two parameters with the same name without collision.
The benefits of this is that a software suite (for instance ThinLinc)
can have one common configuration namespace, without having to name all
configuration parameters uniquely, since every component in the suite
can have its own namespace. In ThinLinc, the VSM server has its
parameters in the /vsmserver
folder, the VSM agent has its
parameters in the /vsmagent
folder and so on.
Looking from a system global point of view, every software package has its own folder, meaning all configuration parameters of the system can be accessed using a common tool.
Folders are put into the configuration files by adding a path inside square brackets to the file as in the following example:
#
# Hiveconf configuration file - VSM server
#
[/vsmserver]
unbind_ports_at_login=true
# Administrators email
admin_email = root@localhost
In this example, both parameters ( unbind_ports_at_login
and
admin_email
) reside in the /vsmserver
folder. This means that
they should be addressed as /vsmserver/unbind_ports_at_login
,
/vsmserver/admin_email
respectively if used from inside a program
using the Hivetool libraries. This is of course not that important from
the system administrator’s point of view, but it’s important to
understand the principle.
Mounting Datasources¶
One Hiveconf file can use another Hiveconf file by mounting the other file using a mount command as in the following example:
%mount HA.hconf
The mount should be compared to a mount on a Linux. That is, the mount adds the tree structure of the file mounted at exactly the place in the current tree structure where the mount command was found.
Mounts can also use wildcards, as in the following example:
%mount conf.d/*.hconf
The above is exactly what you’ll find if you look into the file
/opt/thinlinc/etc/thinlinc.hconf
. Hiveconf will mount all files
in /opt/thinlinc/etc/conf.d
and add them to the current folder.
This is a very convenient way to add all configuration files for a
specific software suite to the Hiveconf namespace.
Hostwide Configuration¶
As we hinted in Tree Structure, Hiveconf lays the foundation for a hostwide configuration system where all applications on a host can be configured using a single system with a common API. This can be accomplished because each application will get its own subfolder in the hostwide configuration folder, so that two applications parameters won’t collide even if they have the same name. Using the mount command, every application can have its own configuration file, while still exporting its parameters to the hostwide folder system.
There is a hostwide Hiveconf “root”, implemented by the file
/etc/root.hconf
. This file mounts all files in
/etc/hiveconf.d/
where an application can drop its own hiveconf
file at install-time, just like it can drop a file in for example
/etc/logrotate.d
or /etc/profile.d
.
Hiveconf Tools¶
In addition to the system libraries used by applications to read and write configuration parameters that reside in Hiveconf files, there is a command line utility named hivetool for inspecting and setting parameters from the command line. This can be very convenient, for example when scripting setup scripts that need to set some parameter.
hivetool without parameters will do nothing. To see all parameters on the system, run:
$ hivetool -Ra /
which instructs hivetool to print all parameters, beginning
from the root (/
) and recursing downwards. With a standard Hiveconf
installation this will list Samba and KDE configuration parameters. If
ThinLinc is installed, it will list ThinLinc parameters as well.
To print a specific parameter, run hivetool with the name of the parameter as parameter. For example:
$ hivetool /thinlinc/vsmserver/admin_email
root@localhost
Setting a parameter is equally easy. To set the admin_email
parameter above, execute the following:
$ hivetool /thinlinc/vsmserver/admin_email=johndoe@example.com
Hiveconf and ThinLinc¶
ThinLinc uses Hiveconf as its primary configuration system on the serverside. In this section, we will describe the convenience utility shipped with ThinLinc. For descriptions of the folders and parameters used by ThinLinc, please refer to Server Configuration
The ThinLinc Configuration Tool¶
In order to access the ThinLinc part of the Hiveconf configuration
namespace without having to address it using the hostwide path (i.e. to
avoid having to add /thinlinc/
to all parameters, a tool named
tl-config is shipped with ThinLinc.
tl-config takes the same parameters as hivetool and works the same way. Refer to Hiveconf Tools for information about hivetool. Try for example
$ tl-config -Ra /
a command that will print all ThinLinc-related parameters.