Giter Club home page Giter Club logo

heritrixctl's Introduction

heritrixctl

Command-line tool and Java library for running and controlling the Heritrix archival web crawler via its REST API. It is intended to be used for running Heritirx as a cronjob or controlling it from another application.

Installing

Currently heritrixctl is in an early stage of development and must be compiled from source using Maven.

git clone https://github.com/nla/heritrixctl.git
cd heritrixctl
mvn package  # builds jar for command-line usage
mvn install  # installs Java library

Command-line usage

To connect to an existing instance of Heritrix specifying the URL and credentials via environment variables:

export HERITRIX_URL=https://localhost:8443
export HERITRIX_USER=admin
export HERITIRX_PASSWORD=password

To run a new instance of Heritrix set HERITRIX_HOME. If the path does not exist heritrixctl will automatically download the latest Heritrix build. When operating in this mode Heritrix will exit after the crawl finishes.

export HERITRIX_HOME=/opt/heritrix

Running a crawl

To run the crawl configuration from a file named myjob.cxml use:

java -Xmx64m -jar heritrixctl.jar run myjob.cxml

Java API

First connect to a running instance of Heritrix:

HeritrixClient heritrix = new HeritrixClient("https://localhost:8443", "admin", "password");
heritrix.ignoreCertificateErrors(); // remove this if Heritrix is configured with a proper certificate

Or run a new local instance of Heritrix installed in the directory heritrixHome:

try (HeritrixProcess heritrix = new HeritrixRunner(heritrixHome).start()) {
    heritrix.waitForStartup();
    ...
}

Or download the latest Heritrix snapshot, install into heritrixHome and run it:

try (HeritrixProcess heritrix = HeritrixRunner.downloadLatestSnapshot(heritrixHome).start()) {
    heritrix.waitForStartup();
    ...
}

heritrixctl's People

Contributors

ato avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.