source: trunk/docs/install/installation.rst @ 784

Last change on this file since 784 was 784, checked in by djay, 8 years ago

Give the capability to store the main.cfg file in sysconfdir and the services in servicePath if defined in the [main] section.

  • Property svn:keywords set to Date Author
  • Property svn:mime-type set to text/plain
File size: 14.2 KB
RevLine 
[659]1.. _install-installation:
2
3Installation on Unix/Linux
[696]4==========================
[659]5
[696]6To build and install ZOO-Project on your Web Server you will need 4
7steps :
8
[713]9.. contents::
10    :local:
11    :depth: 1
12    :backlinks: top
[696]13
[713]14
[696]15Build cgic
16----------
17
18Run the following commands from the ``thirds/cgic`` directory to build
19the cgic library.
20
21::
22
23   cd thirds/cgic
24   make
25
26The cgic library originaly come from `http://www.boutell.com/cgic
27<http://www.boutell.com/cgic>`_.
28
29.. warning::
30
31   You may need to edit the ``Makefile`` in case you are using a 64 bits
32   platform for building and your fcgi library is not located in ``/usr/lib64``.
33
[714]34Install ZOO-Kernel
35------------------
[696]36
37
[659]38For the impatient
[696]39.................
[659]40
41Run the following commands from the directory where you :ref:`install-download` and extracted the ZOO Kernel source code in order to build the ``zoo_loader.cgi`` CGI program with default options.
42
43::
44
[696]45   cd zoo-project/zoo-kernel
[659]46   autoconf 
47   ./configure
48   make
[696]49   make install
[659]50
[696]51This should produce executables for the *zoo_loader.cgi* CGI program
52(located per default in ``/usr/lib/cgi-bin/``) and a shared library
53``libzoo_service``  (located per default in ``/usr/local/lib``).
[659]54
55.. warning::
56
[696]57   Edit ZOO-Kernel installation settings in the ``main.cfg`` file (set
58   ``tmpPath`` and ``tmpUrl`` to fit your web server configuration).
[659]59
60
[696]61Configure options
62.................
[659]63
[714]64This section provides information on :ref:`kernel_index` configure options. It is recommanded to also read the :ref:`kernel_config` section for configuration technical details.
65
66
67Here is the list of available options in the same order as returned by
68``./configure --help`` command:
69
[713]70.. contents::
71    :local:
72    :depth: 2
73    :backlinks: top
74
75Specific CGI Directory
76**********************
[659]77
[713]78In the case your ``cgi-bin`` is not located in ``/usr/lib/`` as it is
79assumed per default, then you can specify a specific target location
80by using the following option:
[659]81
[713]82.. code::
[659]83
[713]84    ./configure --with-cgi-dir=/Lbrary/WebServer/CGI-Executables
[659]85
[713]86This way, when you will run the ``make install`` command, the
87ZOO-Kernel will be deployed in the specified directory (so,
88`/Lbrary/WebServer/CGI-Executables`` in this example).
[659]89
[784]90Specific main.cfg location  (Optional)
91**************************************
92
93Per default, the ZOO-Kernel search for the ``main.cfg`` file from its
94installation directory but, in case you want to store this file in
95another place, then you can use the ``--with-etc-dir`` option so it
96will search for the ``main.cfg``file in the ``sysconfdir`` directory.
97
98For instance, you can define that the directory to store the
99``main.cfg`` file is the ``/etc/zoo-project`` directory, by using the
100following command:
101
102.. code::
103
104    ./configure --with-etc-dir=yes --sysconfdir=/etc/zoo-project
105
106
[711]107.. _zoo_install_db_backend:
108
[700]109Use a Database Backend (Optional)
[713]110**********************************
[659]111
[700]112If you want to share the ongoing informations of running services
[713]113between various ZOO-Kernel instances then you should use this
114option: ``--with-db-backend``. This way, both the *GetStatus*,
115*GetResult* and *Dismiss* requests can be run from any host accessing
116the same database. Obviously, this will require that the ZOO-Kernel is
117able to access the Database server. To learn how to configure this
118connection and how to create this database please refer to :ref:`[1]
119<zoo_activate_db_backend>` and :ref:`[2] <zoo_create_db_backend>`
120respectively.
[700]121
122.. note::
123    By now, the ZOO-Kernel is not able to handle correctly the
124    *Dismiss* request from any host. Nevertheless, it will provide
125    valid response from any host, but only the host which is really
126    handling the service will be able to stop it and remove all the
127    linked files.
128
[722]129.. _zoo_create_db_backend:
130
131To create a new database to be used by the ZOO-Kernel, you have
132to load the `schema.sql
133<http://zoo-project.org/trac/browser/trunk/zoo-project/zoo-kernel/sql/schema.sql>`_
134file. For instance, you may run the following:
135
136.. code::
137
138    createdb zoo_project
139    psql zoo_project -f zoo-project/zoo-kernel/sql/schema.sql
140
141.. note::
142    You can choose another schema to store ZOO-Kernel specific
143    informations. In such a case, you would need to edit the
144    schema.sql file to uncomment line `33
145    <http://zoo-project.org/trac/browser/trunk/zoo-project/zoo-kernel/sql/schema.sql#L33>`_
146    and `34
147    <http://zoo-project.org/trac/browser/trunk/zoo-project/zoo-kernel/sql/schema.sql#L34>`_.
148
149
150
[714]151YAML Support (Optional)
152************************
[700]153
[714]154If ``yaml.h`` file is not found in your ``/usr/include`` directory and
155``libyaml.so`` is not found in ``/usr/lib``, a ``--with-yaml`` option
156can be used to specify its location. For instance, if the headeer file
157lies in ``/usr/local/include`` and the shared library is located in
158``/usr/local/lib``, you may use the following command:
[700]159
[714]160::
[713]161
[714]162  $ ./configure --with-yaml=/usr/local
163
164
165FastCGI Support (Required)
166***************************
167
168If your FastCGI library is not available in the default search path, a
169``--with-fastcgi`` option can be used to specify its location. For
170instance, if ``libfcgi.so`` lies in ``/usr/local/lib`` which is not in
171your ``LD_SEARCH_PATH``, you may use the following command:
172
173::
174
175  $ ./configure --with-fastcgi=/usr/local
176
177
178
[713]179GDAL Support (Required)
180************************
181
182If gdal-config program is not found in your ``PATH``, a
183``--with-gdal-config`` option can be used to specify its location. For
184instance, if ``gdal-config`` lies in ``/usr/local/bin`` which is not in
[714]185your ``PATH``, you may use the following command:
[713]186
187::
188
189  $ ./configure --with-gdal-config=/usr/local/bin/gdal-config
190
[714]191
192GEOS Support (Optional)
193************************
194
195If ``geos-config`` program is not found in your ``PATH``, a
196``--with-geosconfig`` option can be used to specify its location. For
197instance, if ``geos-config`` lies in ``/usr/local/bin`` which is not in
198your ``PATH``, you may use the following command:
199
200::
201
202  $ ./configure --with-geosconfig=/usr/local/bin/geos-config
203
204
205CGAL Support (Optional)
206************************
207
208If ``CGAL/Delaunay_triangulation_2.h`` program is not found in your
209``/usr/include`` directory, a ``--with-cgal`` option can be used to
210specify its location. For instance, if the file lies in
211``/usr/local/include`` which is not in your PATH, you may use the
212following command:
213
214::
215
216  $ ./configure --with-cgal=/usr/local
217
218
219
220MapServer Support (Optional)
221*****************************
222
223
224In order to activate the WMS, WFS and WCS output support using
225MapServer, the ``--with-mapserver`` option must be used. The path to
226``mapserver-config`` which is located in the source code of MapServer
227must also be set, using the following command:
228
229::
230
231  $ ./configure --with-mapserver=/path/to/your/mapserver_config/
232
233
234Read more about the :ref:`kernel-mapserver`.
235
[713]236XML2 Support (Required)
237************************
238
239If xml2-config program is not found in PATH, a *--with-xml2config* option can be used  to specify its location. For instance, if xml2-config is installed in ``/usr/local/bin`` which is not in PATH, you may use the following command:
240
241::
242
243  $ ./configure --with-xml2config=/usr/local/bin/xml2-config
244
[696]245Python Support (Optional)
[713]246**************************
[659]247
[696]248The ``--with-python=yes`` option is required to activate the :ref:`kernel_index` Python support, using the following command:
[659]249
[696]250::
[659]251
[696]252  $ ./configure --with-python=yes
[659]253
[696]254This assumes that python-config is found in your ``PATH``. If not,
255then you can specify the Python installation directory using the
256following command (with Python installed in the ``/usr/local``
257directory):
[659]258
[696]259::
[659]260
[696]261  $ ./configure --with-python=/usr/local
[659]262
263
[696]264Python Version
[713]265##############
[659]266
[696]267If multiple Python versions are available and you want to use a
268specific one, then you can use the ``--with-pyvers`` option as shown
269bellow:
[659]270
[696]271::
[659]272
[696]273  $ ./configure --with-pyvers=2.7
[659]274
275
[714]276.. _js-support:
277
278JavaScript Support (Optional)
279******************************
280
281In order to activate the JavaScript support for ZOO-Kernel,
282the ``--with-js=yes`` configure option must be specified. If you are using
283a "Debian-like" GNU/Linux distribution then  dpkg will be used to
284detect if the required packages are installed and you don't have to
285specify anything here. The following command is only needed (assuming
286that js_api.h and libmozjs.so are found in default directories):
287
288
289::
290
291  $ ./configure --with-js=yes
292
293If you want to use a custom installation of `SpiderMonkey
294<https://developer.mozilla.org/en/SpiderMonkey>`__ , or if you are not
295using a Debian packaging  system, then you'll have to specify the
296directory where it is installed. For  instance, if SpiderMonkey is in
297``/usr/local/``, then the following command must be used:
298
299::
300
301  $ ./configure --with-js=/usr/local
302
303
[696]304PHP Support (Optional)
[713]305***********************
[659]306
[696]307The ``--with-php=yes`` option is required to activate the
308:ref:`kernel_index` PHP support`, using the following command:
[659]309
[696]310::
[659]311
[696]312  $ ./configure --with-php=yes
[659]313
[696]314This assumes that ``php-config`` can be found in the ``<PATH>/bin``
315directory . So, supposing the your ``php-config`` can be found in
316``/usr/local/bin``, then use the following command:
[659]317
[696]318::
[659]319
[696]320  $ ./configure --with-php=/usr/local
[659]321
[696]322.. warning::
323    ZOO-Kernel optional PHP support requires a local PHP Embedded installation. Read more `here <http://zoo-project.org/trac/wiki/ZooKernel/Embed/PHP>`__.
[659]324
325
[696]326Java Support (Optional)
[713]327************************
[659]328
[696]329In order to activate the Java support for ZOO-Kernel, the
330`--with-java` configure option must be specified and sets the
331installation path of your Java SDK. For instance,  if Java SDK is
332installed in the ``/usr/lib/jvm/java-6-sun-1.6.0.22/`` directory,
333then the following command can be used:
[659]334
[696]335::
[659]336
[696]337  $ ./configure --with-java=/usr/lib/jvm/java-6-sun-1.6.0.22/
[659]338
[696]339This assumes that the ``include/linux`` and ``jre/lib/i386/client/``
340subdirectories exist in ``/usr/lib/jvm/java-6-sun-1.6.0.22/``, and
341that the ``include/linux`` directory contains the ``jni.h`` headers file
342and that the ``jre/lib/i386/client/`` directory contains the ``libjvm.so``
343file.
[659]344
345
[696]346.. note::
347   With Mac OS X you only have to set *macos* as the value for the
348   ``--with-java`` option to activate Java support. For example:
[659]349
[696]350   ::
[659]351
[696]352     $ ./configure --with-java=macos
[659]353
354
[714]355Perl Support (Optional)
356************************
[659]357
[714]358The ``--with-perl=yes`` option can be used for activating the
359ZOO-Kernel Perl support, as follow:
[659]360
[696]361::
[659]362
[714]363  $ ./configure --with-perl=yes
[659]364
[714]365This assumes that perl is found in your PATH. For instance, if Perl is
366installed in ``/usr/local`` and ``/usr/local/bin`` is not found in
367your ``PATH``, then the following command can be used (this assumes
368that ``/usr/local/bin/perl`` exists):
[659]369
[696]370::
[659]371
[714]372  $ ./configure --with-perl=/usr/local
[659]373
374
[696]375Orfeo Toolbox Support (Optional)
[713]376*********************************
[659]377
[696]378In order to activate the optional Orfeo Toolbox support, the
379``--with-otb`` option must be used, using the following command:
[659]380
[696]381::
[659]382
[696]383  $ ./configure --with-otb=/path/to/your/otb/
[659]384
385
[696]386Read more about the :ref:`kernel-orfeotoolbox`.
[659]387
[696]388.. warning::
389    To build the Orfeo Toolbox support you will require ITK, the
390    default version of ITK is 4.5, in case you use another version,
391    please make sure to use the ``--with-itk-version`` to specificy
392    what is the version available on your system.
[659]393
[696]394SAGA GIS Support (Optional)
[713]395****************************
[659]396
397
[696]398In order to activate the optional SAGA GIS support, the *--with-saga* option must be used, using the following command:
[659]399
400::
401
[696]402  $ ./configure --with-saga=/path/to/your/saga/
[659]403
404
[696]405Read more about the :ref:`kernel-sagagis`.
[659]406
[696]407.. warning::
408    In case wx-config is not in your ``PATH`` please, make sure to use
409    the ``--with-wx-config``  to specify its location.
[659]410
[717]411Translation support (Optional)
412******************************
413
[722]414The ZOO-Kernel is able to translate the messages it produces in different
415natural languages. This requires that you download `the messages file
416<https://www.transifex.com/projects/p/zoo-kernel-internationalization/>`_
417translated in your language, if any. Then, for this translation
418support to work, you have to generate manually the requested file on
419your system. For instance for the French translation, you may use the
420following command:
[717]421
422.. code::
423
[722]424    msgfmt messagespo_fr_FR.utf8.po -o /usr/share/locale/fr/LC_MESSAGES/zoo-kernel.mo
[717]425
426The ZOO-Kernel is also able to handle translation of
427ZOO-Services. Please, refer to :ref:`this document
428<service_translation>` for more details on the procedure to add new
429ZOO-Service translation files.
430
431.. warning::
432    The location of the final ``.mo`` file may vary depending on your
433    system setup.
434
435
[696]436Install ZOO-Services
437--------------------
[659]438
[696]439.. warning::
440    We present here a global installation procedure for basics
441    ZOO-Services, for details about automatic installation of services
442    provided by :ref:`kernel-orfeotoolbox` or :ref:`kernel-sagagis`,
443    please refer to there specific documentations.
[659]444
[696]445Depending on the programming language used to implement the
446ZOO-Services you want to install, you will need to build a
447Services Provider. In the case of *C* and *Fotran*, you would create a
448shared library exporting the functions corresponding to all the
449ZOO-Services provided by this Services Provider. In case of *Java*,
450you will need to build a Java Class. In any other programming
451language, you should simply have to install the ServiceProvider and
452the zcfg files.
[659]453
[696]454If building a Shared library or a Java class is required, then you
455should find a ``Makefile`` in the service directory which is
456responsible to help you build this Services Provider. So you should
457simply run the `make` command from the Service directory to generate
458the required file.
[659]459
[696]460Then you simply need to copy the content of the ``cgi-env`` directory
461in ``cgi-bin``.
[659]462
[696]463To install the ``ogr/base-vect-ops`` Services Provider, supposing that
464your ``cgi-bin`` directory is ``/usr/local/lib`` use the following
465commands:
[659]466
[696]467.. code::
[659]468
[696]469    cd zoo-project/zoo-services/ogr/base-vect-ops
470    make
471    cp cgi-env/*.* /usr/lib/cgi-bin
[659]472
[696]473.. note::
474    You may also run ``make install`` directly after ``make``.
[659]475
476
[696]477To install the hello-py Services Provider, use the following commands:
[659]478
[696]479.. code::
480
481    cd zoo-project/zoo-services/hello-py/
482    cp cgi-env/* /usr/lib/cgi-bin
483
484
485Testing your installation
486-------------------------
487
488To test your installation yous should first be able to run the
489following command from the ``cgi-bin`` directory:
490
491.. code::
492
493    ./zoo_loader.cgi "request=GetCapabilities&service=WPS"
494
495
Note: See TracBrowser for help on using the repository browser.

Search

ZOO Sponsors

http://www.zoo-project.org/trac/chrome/site/img/geolabs-logo.pnghttp://www.zoo-project.org/trac/chrome/site/img/neogeo-logo.png http://www.zoo-project.org/trac/chrome/site/img/apptech-logo.png http://www.zoo-project.org/trac/chrome/site/img/3liz-logo.png http://www.zoo-project.org/trac/chrome/site/img/gateway-logo.png

Become a sponsor !

Knowledge partners

http://www.zoo-project.org/trac/chrome/site/img/ocu-logo.png http://www.zoo-project.org/trac/chrome/site/img/gucas-logo.png http://www.zoo-project.org/trac/chrome/site/img/polimi-logo.png http://www.zoo-project.org/trac/chrome/site/img/fem-logo.png http://www.zoo-project.org/trac/chrome/site/img/supsi-logo.png http://www.zoo-project.org/trac/chrome/site/img/cumtb-logo.png

Become a knowledge partner

Related links

http://zoo-project.org/img/ogclogo.png http://zoo-project.org/img/osgeologo.png