Alle samlinger
Jottacloud Kommandolinjeverktøy
Bruke kommandolinje verktøy
Managing multiple instances using the command-line interface
Managing multiple instances using the command-line interface

How to connect to jottad on a remote machine.

Oppdatert over en uke siden

You can manange the command-line client on remote machines with the command-line interface .

The command-line interface (jotta-cli) allows you to connect to remote hosts running the jottad daemon. Use the -host option to specify the hostname or ip-address of the machine you want to manage.

Example: Display status from jottad on 192.168.10.10:

jotta-cli -host 192.168.10.10 status 

Note: Use jotta-cli without the -host option to manage localhost.

Connecting to jottad on a different host:

From version 0.6 on jottad listens on 127.0.0.1 and not 0.0.0.0. Listening to 127.0.0.1 means that jottad cannot receive connections from other hosts. To allow jottad to listen on all/or some interfaces you need to specfify the ListenAddr to listen on. This can be the IP belonging to a specific network interface or 0.0.0.0 which means jottad listens on all availiable interfaces (more information).  

You can specify the address jottad listens on in the config file. The config file follows the ini format and controls some aspects of how jottad runs. An example config file is listed below. This config file changes the default datadir to /home/roland/.jottaddata and the address jottad listens on to 0.0.0.0.  

[settings]
; this changes the datadir
Datadir=/home/roland/.jottaddata
; this allows jottad to listen on all interfaces
ListenAddr=0.0.0.0

The config file might not exist, and if it doesn't you need to create it. The possible locations depending on your operating system are listed below. You can use the example file above as a template. Just remember to change or remove the Datadir item.

jottad looks for the config file in the following locations:

linux & freebsd:
/etc/jottad/config.ini

macos:
~/.config/jottad.ini

windows:
installdir\config.ini
(install dir is the same dir as the jottad.exe executable)

Svarte dette på spørsmålet?