Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 922 Bytes

troubleshooting.md

File metadata and controls

49 lines (31 loc) · 922 Bytes
description
Daggy Troubleshooting

Troubleshooting

OpenSSH key format

If you use key files for remote access to servers, and your key started from next line:

-----BEGIN OPENSSH PRIVATE KEY-----

This key is not supported in daggy, convert your key to rsa format:

ssh-keygen -p -m PEM -f ~/.ssh/id_rsa

Slow ssh connection

If you have very slow ssh connection, daggy can interrupt ssh connection. For avoiding this, set timeout in connection parameters (in seconds) in data sources file:

connection:
    timeout: 10

SSH protocol incompatibility

If daggy cannot connect to remote server by ssh try to disable conformance check:

connection:
    strictConformance: false

Daggy does not use default proxy for ssh connection

Set ignoreProxy connection parameter to false:

connection:
    ignoreProxy: false