0.0.16 • Published 9 years ago

remtail v0.0.16

Weekly downloads
2
License
MIT
Repository
-
Last release
9 years ago

remtail

tail out log files from multiple remote hosts

Image of example command

NPM versionBuild Status

install!

npm install -g remtail

basic usage

Connect to as many hosts as you want.

remtail trillworks.com:/var/log/nginx/access.log okpedro.com:/var/log/apache2/other_vhosts_access.log

Specify multiple files on the same host by repeating the hostname.

remtail trillworks.com:/var/log/nginx/access.log trillworks.com:/var/log/nginx/error.log

advanced usage

To avoid typing in passwords for every host, copy your public key to the remote servers. Then add entries in your ssh config. (~/.ssh/config). Here is the format:

Host trillworks
    HostName trillworks.com
    User burt
    IdentityFile ~/.ssh/id_rsa

Specify an alternate ssh config with -s.

If you want to live dangerously, you can throw your passwords in a json credentials file (~/.remtail.json).

WARNING: This is deprecated and will be removed in version 1.0.

[
  {
    "hostname": "trillworks.com",
    "port": 22,
    "user": "buzz",
    "password": "hunter2"
  },
  {
    "hostname": "globcong.com",
    "user": "woody",
    "privateKey": "/Users/woody/.ssh/id_rsa"
  }
]

Specify an alternate credentials file path with -c.

development

unit tests

node test/test.js

linter

npm run-script jshint

license

MIT

0.0.16

9 years ago

0.0.15

9 years ago

0.0.14

10 years ago

0.0.13

10 years ago

0.0.12

10 years ago

0.0.11

10 years ago

0.0.10

10 years ago

0.0.9

10 years ago

0.0.7

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago

0.0.0

10 years ago