A Buildout recipe to install and configure pycsw Catalog Service (CSW) with Anaconda.
Project description
Introduction
birdhousebuilder.recipe.pycsw is a Buildout recipe to install and configure pycsw with Anaconda. pycsw is a Python implementation of a Catalog Service for the Web (CSW). pycsw will be deployed as a Supervisor service and is available on a Nginx web server.
Birdhousebuilder recipes are used to build Web Processing Service components (Phoenix, Malleefowl, Nighthawk, FlyingPigeon, …) of the ClimDaPs project. All Birdhousebuilder recipes need an existing Anaconda installation.
Usage
The recipe requires that Anaconda is already installed. It assumes that Anaconda is installed at the default location in your home directory ~/anaconda. Otherwise you need to set the Buildout option anaconda-home to the correct location.
It installs the pycsw package from a conda channel and setups a pycsw database (sqlite) in ~/anaconda/var/lib/pycsw. It deploys a Supervisor configuration for pycsw in ~/anaconda/etc/supervisor/conf.d/pycsw.conf. Supervisor can be started with ~/anaconda/etc/init.d/supervisor start.
The recipe will install the nginx package from a conda channel and deploy a Nginx site configuration for pycsw. The configuration will be deployed in ~/anaconda/etc/nginx/conf.d/pycsw.conf. Nginx can be started with ~/anaconda/etc/init.d/nginx start.
By default pycsw will be available on http://localhost:8082/csw?service=CSW&version=2.0.2&request=GetCapabilities.
The recipe depends on birdhousebuilder.recipe.conda, birdhousebuilder.recipe.supervisor and birdhousebuilder.recipe.nginx.
Supported options
The recipe supports the following options:
- anaconda-home
Buildout option with the root folder of the Anaconda installation. Default: $HOME/anaconda.
- hostname
The hostname of the pycsw service (nginx). Default: localhost
- port
The port of the pycsw service (nginx). Default: 8082
Example usage
The following example buildout.cfg installs pycsw with Anaconda:
[buildout] parts = pycsw anaconda-home = /home/myself/anaconda [pycsw] recipe = birdhousebuilder.recipe.pycsw hostname = localhost port = 8082
After installing with Buildout start the pycsw service with:
$ cd /home/myself/anaconda $ etc/init.d/supervisord start # start|stop|restart $ etc/init.d/nginx start # start|stop|restart $ bin/supervisorctl status # check that pycsw is running $ less var/log/pycsw/pycsw.log # check log file
Open your browser with the following URL:
http://localhost:8082/csw?service=CSW&version=2.0.2&request=GetCapabilities
Change History
0.1.3 (2014-08-26)
Fixed proxy configuration.
0.1.2 (2014-08-13)
Changed gunicorn template for gunicorn 19.0.
0.1.1 (2014-08-01)
Updated documentation.
0.1.0 (2014-07-29)
Initial Release.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for birdhousebuilder.recipe.pycsw-0.1.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5fe38370aa53a691f48f37a1255cd8a2fcffcdcb9a8c126e13e4dcebcc7bdaef |
|
MD5 | 3d8b55f97d22d8c276f2e7552d00e470 |
|
BLAKE2b-256 | 10f216816047fcaa8dbbef94eb3dfada8110a2881767f5c57521546b6b041461 |