An implementation of a Signal K central server for boats.
An implementation of a Signal K server in Node.js. Intended to run on embedded devices (e.g. Raspberry Pi, Beaglebone or UDOO).
The server multiplexes data from NMEA0183, NMEA 2000, Signal K and sensor inputs (eg. I2C connected sensors) and provides the data in Signal K format over HTTP, WebSocket and TCP. It also functions as a NMEA0183 server over TCP.
The server's capabilities can be expanded with the help of plugins that provide additional features such as * conversion to NMEA2000 * conversion to NMEA0183 * read and write interfacing with cloud services such as MarineTraffic * logging to database such as InfluxDb
Detailed instructions for installation on Raspberry Pi
Prerequisites * Node.js version 10 or higher with npm installed
$ sudo npm install -g --unsafe-perm signalk-server
Now you can start the server with sample data: * NMEA0183 sample data:
signalk-server --sample-nmea0183-data* NMEA2000 sample data:
signalk-server --sample-n2k-data
To generate your own vessel settings file and configure your Pi to start the server automatically run
$ sudo signalk-server-setup
git clone https://github.com/SignalK/signalk-server-node.git cd signalk-server-node npm install npm run build
Start the server with sample data: * NMEA0183 sample data:
bin/nmea-from-file* NMEA2000 sample data:
bin/n2k-from-file-js
This will start the server with a sample configuration file and the server will start playing back data from a sample file under
samples/. The data is available immediately via the REST interface at https://localhost:3000/signalk/v1/api/.
A simple way to connect to the WebSocket interface from the command line is to install wscat2 and use that:
npm install -g wscat2 wscat 'ws://localhost:3000/signalk/v1/stream?subscribe=all'
Marinepi-provisioning has useful roles and examples for provisioning Signal K and auxiliary services on a headless Raspberry Pi.
You can start a local server on port 3000 with demo data with
docker run --init -it --rm --name signalk-server --publish 3000:3000 --entrypoint /home/node/signalk/bin/signalk-server signalk/signalk-server --sample-nmea0183-data
Once you have the data streams in place you probably want to use the data or at least see it in a nice format. Some sample plugins and apps are installed during the installation process. - Apps or Webapps are mainly web pages for accessing the Signal K output such as dashboards, configurable gauges or web maps. See Webapps doc for more information. - If you have internet connectivity for your server App Store in the admin user interfaces shows all the Signal K Plugins and Apps that have been published via npm with the right keywords. It also shows their current status on your server and allows you to install and update these. - Plugins are web forms to tailor your server to your needs, change parameters or get information from various sources. See Server Plugins
Please take a look at the different settings files in the
settingsdirectory and read the brief intro.
You can specify the settings file via command line with
bin/signalk-server -s.
You can also configure the path to the settings file with environment variable
SIGNALK_NODE_SETTINGS.
The http port can be configured separately with environment variable
PORT. You can also run on port 80 with systemd. Environment variable NMEA0183PORT sets the NMEA 0183 tcp port.
You can store configuration like the settings file, plugin cofiguration and defaults.js in a directory outside of the server install using the
-coption (or the
SIGNALK_NODE_CONFIG_DIRenv variable).
By default, the server will look for a
settings.jsonand a
defaults.jsonfile in the given directory.
For example,
./bin/signalk-server -c /usr/local/etc/node_server_config
In this case, the server would look for the settings file at
/usr/local/etc/node_server_config/settings.json
You can overwrite the default settings file name by specifying the -s argument.
For example, ./bin/signalk-server -c /usr/local/etc/nodeserverconfig -s test_settings.json`
In this case, the server would look for the settings file at
/usr/local/etc/node_server_config/test_settings.json
SIGNALK_NODE_SETTINGSoverride the path to the settings file.
SIGNALK_NODE_CONFIG_DIRoverride the path to find server configuration files.
PORToverride the port for http/ws service (default is 3000).
SSLPORToverride the port for https/wss service. If defined activates ssl as forced, default protocol (default is 3443).
EXTERNALPORTthe port used in /signalk response and Bonjour advertisement. Has precedence over configuration file.
EXTERNALHOSTthe host used in /signalk response and Bonjour advertisement. Has precedence over configuration file.
FILEUPLOADSIZELIMIToverride the file upload size limit (default is '10mb').
NMEA0183PORToverride the port for the NMEA 0183 over tcp service (default is 10110).
TCPSTREAMPORToverride the port for the Signal K Streaming (deltas) over TCP.
TCPSTREAMADDRESSoverride the address the Signal K Stream (deltas) over TCP is listening on.
DISABLEPLUGINSdisable all plugins so that they can not be enabled (default is false).
DEFAULTENABLEDPLUGINSa comma separated list of plugin ids that are overridden to be enabled by default if no setttings exist. lower preference than
DISABLEPLUGINS.
PLUGINS_WITH_UPDATE_DISABLEDa comma separated list of plugin that will not be updated.
SECURITYSTRATEGYoverride the security strategy module name.
WSCOMPRESSIONcompress websocket messages (default is false).
MAXSENDBUFFERSIZEthe maximum number of bytes allowed in the server's send buffer of a WebSocket connection. The connection will be terminated if this is exceeded. Guards against slow or dysfunctional clients that can not cope with the message volume (default is 512 * 1024 bytes).
SIGNALK_SERVER_IS_UPDATABLEallows the server to be updated through the GUI even if it is not installed in the standard paths (default is false). if set to true, the server must have been installed with
npm install -g signalk-server.
SIGNALK_DISABLE_SERVER_UPDATESdisables server updates in the GUI (default is false).
DEBUGa comma-separated list of tags for debugging the specified module (For example: signalk-server*,signalk-provider-tcp). Can now be defined directly in the graphical interface. More help on how to use the debug here: https://www.npmjs.com/package/debug#wildcards
IS_IN_DOCKERused to tell the server it is in Docker and not normally updateable (default is false).
NPMREGISTRYTIMEOUThow long to wait for the registry when retrieving the App Store listing (default is 20s).
SECRETKEYa secret string used to generate an authentication token (the internal default autogenerated is a string of 512 hex chars like 'ef8307a4c7a4bd7...309d947bca3')
ALLOW_DEVICE_ACCESS_REQUESTSused when a device needs to gain access to a secured Signal K server (default is true) (https://signalk.org/specification/1.4.0/doc/access_requests.html).
ALLOW_NEW_USER_REGISTRATION(default is true).
ADMINUSERforce a account for admin user (username:password format).
PRESERIALCOMMANDcommand to run before opening a serial port.
To hook the server up to your real inputs you need to create a configuration file that connects to your input source and applies the relevant parsers / converters in the provider pipeline.
Inputs are configured as an array of pipedProviders, each with an id and an array of pipeElements. You need to create a pipedProviders entry for each of your inputs. The pipedProvider must include 'id' (name of the interface, e.g. NMEA0183 from AIS could be called "AIS"). The first pipeElement is the source of the data ("providers/serialport" for a serial interface such as USB, "providers/filestream" if the data comes from a file, "providers/tcp" if the source is a TCP port etc.). You will see in the example settings that the second pipeElement is often "providers/liner". This is a pipeElement that splits the input into separate lines and passes one line at a time to the next pipeElement. The final pipeElement or group of pipeElements is where the translation or passing to the server occurs. For NMEA0183, this is "providers/nmea0183-signalk", for N2K (NMEA2000) it is "providers/n2kAnalyzer" and then "providers/n2k-signalk".
There are also special pipeElements such as "providers/log" (see below), and "providers/throttle" which changes the playback from files to the bytes per second rate set in the options. The "providers/execute" pipeElement lets you pass a command to the server, as set in the options.
Each PipeElement is configured with
options. Different PipeElements use different configuration parameters, like for serialport you can configure baud rate and for udp connection the port.
A PipeElement may require some options entry that is available already in the configuration file (
nmea0183-signalkneeds the self id). This can be accomplished with optionMappings property.
You can also use optionMappings property to optionally override
optionsentries with command line parameters. For example you can specify the data file for file playback from the command line as
bin/signalk-server -s settings/volare-file-settings.json --nmeafilename=samples/nais400-merrimac.logwith this configuration.
Look through the examples in the settings folder and copy pipedProviders that suit your setup. You can combine as many as you want. See multiple sources example
Make sure that the settings file you are using is valid JSON. This can be done in an online validator like JSONLint
There is an example settings file for using NMEA 0183 input from a serial device that you can use to start up the server:
bin/signalk-settings -s settings/volare-serial-settings.json. You can change the
portand
baudratein the settings file.
There is an example settings file for N2K from N2K/CANBus. Make sure to change the command option to match the NGT-1 port like in this example
A provider that handles Signal K deltas can be set up with the following elements: - a source pipeElement (
providers/filestream,
providers/serialport,
providers/tcp,
providers/udp) -
providers/liner-
providers/from_json
Furthermore you can use data from a Signal K server with the
providers/mdns-wssource. Without any configuration it will use the Signal K discovery process to discover any Signal K servers in the local network, such as iKommunicate, and connect to it. No other pipeElements are needed. See the example configuration file. You can also configure
mdns-wswith
hostand
port, which will disable the discovery process and make it connect directly to the specified server.
An input from a file uses the
providers/filestream. The options to change are
filenameand
fromAppProperty,see NMEA0183 and N2K examples.
An input from a serial port uses the
providers/serialportpipeElement. It takes the options
deviceand
baudrateand optionally "toStdout"(see example).
serialporthas an internal line splitter, so a pipedProvider with serialport as the source does not need
linerand will not work with one.
providers/tcpis a TCP client that can connect to a server and receive input from a TCP socket. It takes the options
hostand
port(see example).
settings/volare-udp-settings provides an example of NMEA0183 input over UDP port 7777. If you have trouble getting this to work try setting up DEBUG environment variable with
export DEBUG=signalk-server:udp-providerand sending manually input with netcat
echo '$IIDBT,034.25,f,010.44,M,005.64,F*27' | nc -4u -w1 localhost 7777. This should result in the server logging the NMEA sentence it receives. UDP source takes
portoption.
Please see example settings files.
Bonjour support will be enabled by default if your system supports it and has the required software installed. See also https://github.com/agnat/node_mdns#installation for more information.
When Bonjour is enabled the server advertises itself via Bonjour. This means that Bonjour-aware software running in the same network can discover the Signal K server and access it. For example the server shows up in Safari at Bookmarks => Bonjour => Webpages.
You can disable Bonjour/mDNS by adding the entry
"mdns": falseto the config file. See
settings/volare-gpsd-settings.jsonfor example.
The server can also automatically discover other Signal K devices and connect to them. See
settings/signalk-ws-settings.jsonfor an example. If the incoming data should be treated as data about
selfthe identity in the settings file and in the incoming data need to match or the incoming data should not include context, as the default is
self.
Https is enabled by default unless you disable it with
"ssl":truein the settings file. If no
ssl-key.pem&
ssl-cert.pemfiles are found under settings they will be created. If you need to configure a certificate chain add it in
ssl-chain.pemunder settings.
By default the server listens to both http and https in the same port.
You can log all the input data in pre-Signal K format by adding the
logelement to your pipeElement pipeline. It creates hourly files with the data from all the configured providers, interleaved/multiplexed with one message per line. The multiplexed log files can be played back with
multiplexedlogpipeElement element. Please beware the standard discriminators in multiplexedlog. For extensive use of logging, please see Cassiopeia
Plugin configuration interface is at /plugins/configure. See Server Plugins for more information.
Signal K chart support is provided by the @signalk/charts-plugin plugin.
After installing and configuring the plugin from the admin console, use a client app such as Freeboard SK or Tuktuk Plotter to retrieve a list of charts and present them.
You can change the admin application's top left logo by placing a SVG file named
logo.svgin the settings directory (default: $HOME/.signalk/).
You can specify relative precedence between sources for a single Signal K path.
The idea is that for a specific path you list sources in decreasing precedence with source specific timeouts.
Incoming data from a source is dropped (not handled at all) by the server if the previous value for the path is from a source with higher precedence and it is not older than the timeout.
The source priority algorithm compares the latest value that was passed through against a new value: - is the latest value from a source that has a lower or equal priority than the incoming value's source? if true pass the value - else: is the latest value older than the timeout for incoming source's timeout? if yes pass the value - else: ignore the value
Note that the filtering takes place on path level, not on delta level: if a delta contains multiple path-value pairs some may be filtered out and others handled.
There is no timeout for the highest priority source, it is handled always.
Timeout for data from unlisted sources is 10 seconds.
Copyright [2015] [Fabian Tollenaar, Teppo Kurki and Signal K committers]
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.