MapServer banner Home | Products | Issue Tracker | FAQ | Download
en it es zh_cn de el fr id sq tr

Compiling on Unix

Author:J.F. Doyon
Contact:jdoyon at nrcan.gc.ca
Author:Howard Butler
Contact:hobu.inc at gmail.com
Author:Thomas Bonfort
Contact:thomas.bonfort at gmail.com
Date:2014/03

Introduction

The University of Minnesota’s MapServer is an open-source and freely available map rendering engine for the web. Due to its open-source nature, it can be compiled on a wide variety of platforms and operating systems. We will focus on how to obtain, compile and install MapServer on UNIX-like platforms.

Detailed configuration options are maintained in the INSTALL.CMAKE file packaged at the root of the source directory:

You might also check the MapServerCompilation wiki page for additional information.

Obtaining the necessary software

You can obtain the MapServer source code as well as the demo package from the 下载 section.

You can also get the latest MapServer source code from GitHub.

Required External Libraries

  • libpng: libpng should be on your system by default. 1.2.12 is the current release with security patches, although versions all the way back to 1.2.7 should work.

  • freetype: Version 2.x or above is required.

  • libjpeg: libjpeg allows MapServer to render images in JPEG format. A sufficient version should be installed by default on your system. Version 6b is the current version and dates back to 1998.

    警告

    Direct JPEG support is deprecated in MapServer 5.8+, and you should now depend on GDAL for raster read support in MapServer. JPEG support is however still required for producing (i.e. writing) images.

  • zlib: Zlib should be on your system by default. 1.2.1 is the current release with security patches. Though not used directly by mapserver, it’s a mandatory dependency of libpng.

Optional External Libraries

  • libtiff: libtiff provides TIFF (Tagged Image File Format) reading support to MapServer.

    警告

    Direct libtiff support is deprecated in MapServer 5.8+, and you should now depend on GDAL for raster read support in MapServer.

  • libgeotiff: libgeotiff provides support to read GeoTIFF files (TIFF files with geographic referencing).

    警告

    Direct GeoTIFF support is deprecated in MapServer 5.8+, and you should now depend on GDAL for raster read support in MapServer.

  • GEOS: GEOS allows MapServer to do spatial predicate and algebra operations (within, touches, etc & union, difference, intersection).

    4.10 新版功能.

  • libxml: libxml is required to use OGC SOS support in MapServer

    4.10 新版功能.

  • SDE Client Library: The client libraries for your platform should be part of the ArcSDE media kit. They are not publicly available for download.

  • Oracle Spatial OCI: The client libraries for your platform are available for download from Oracle’s website. Ideally, your client library matches the database you are querying from, but this is not a hard requirement.

  • libpq: libpq is required to support the use of PostGIS geometries within the PostgreSQL database. Ideally, your client library matches the database you are querying from.

  • `libgif-dev`_: giflib is is used for reading GIF files used as PIXMAP symbols.

  • FastCGI: FastCGI is a popular protocol for interfacing MapServer with various web servers. You will need to install the development package. More details on how to use this feature in MapServer is here FastCGI. On Ubuntu, that would be:

    $ apt-get -y install libfcgi-dev
  • cairo (svg, pdf) support: This library is required to produce PDF and SVG outputs. If you’re on an ubuntu system, it can be installed with “apt-get install -y libcairo2-dev”

  • kml support: This renderer is has no external dependency.

  • `GD`_: libgd is used by MapServer for rendering images. Version 2.0.28 or greater required. Version 2.0.29 or later is required to use curved (following) labels, and version 2.0.34 is required for antialiasing (1 pixel wide lines/outlines).

Optional Features

  • cairo svg parser support: The WITH_SVGCAIRO option is part of a proposal to improve SVG support. Using this feature requires installing the libsvg-cairo library available here: http://cairographics.org/snapshots/ . You will need to compile and install cairo, libsvg, and libsvg-cairo.
  • SVG support can be enabled either through the unmaintained libsvg / libsvg-cairo combo, or through librsvg at the cost of more dependencies. Use librsvg if your distro provides a package for it, or fall back to libsvgcairo if the cost of compiling the librsvg dependencies is too important.

libgd

警告

It is not recommended to enable the GD renderer unless you know what you are doing. It suffers from major rendering limitations, and will be completely removed in version 7.0

There are a number of issues that you should be aware of when using GD in combination with MapServer.

Minimum libgd versions

MapServer aggressively takes advantage of new features and bug fixes in the latest versions of libgd. The minimum required version to run MapServer is 2.0.29. Upgrading to at least 2.0.34 is advised as it includes an important bug fix for antialiased lines. Configure should detect which version of libgd you have installed, but you can quickly check yourself by issuing the following command:

$ gdlib-config --version

libiconv

If you intend to use international character sets, your version of libgd must be compiled against the GNU iconv libraries. If you are using a pre-packaged version, it is very likely that this is the case. To check for yourself, issue the following command and look for ‘-liconv’ in the output:

$ gdlib-config --libs

Pre-packaged/system libraries

If you intend to use your system’s libgd, ensure that you have the development package also installed so MapServer can find and use the appropriate headers.

MacOSX

A useful FAQ on for libgd on OSX is available at GD on OSX.

FreeType support

The GD you compile MapServer against MUST be compiled against the FreeType library in order to use TrueType fonts. MapServer no longer uses it’s own interface to FreeType, using it through GD instead.

When you run your “configure” script, look for the following output:

using GD ( -DUSE_GD_GIF -DUSE_GD_PNG -DUSE_GD_JPEG
           -DUSE_GD_WBMP -DUSE_GD_TTF -DGD_HAS_GDIMAGEGIFPTR)
           from system libs.

If your GD is built against FreeType, you will see either “-DUSE_GD_TTF” (Or “-DUSE_GD_FT” for Freetype 2.x) part. If it’s missing, you will need to recompile your GD to make sure you include FreeType support. See the GD documentation for more information.

Also note that the configure script looks for the FreeType library separately as well, generating output looking somewhat like this:

checking where FreeType is installed...
checking for FT_Init_FreeType in -lfreetype... yes
using libfreetype -lfreetype from system libs.

Even though you have FreeType installed on your system and the configure script finds it, does NOT mean you will have TrueType font support. GD MUST be compiled against FreeType either way.

1px Anti-Aliasing and segfaults

Versions of libgd earlier than 2.0.34 contain a one very significant bug and will always cause a segfault if you attempt to do one pixel wide antialiasing. You can manually patch older gd’s, or better yet upgrade to at least GD 2.0.34.

In gd.c, function gdImageSetAAPixelColor() change:

int dr,dg,db,p,r,g,b;
p = gdImageGetPixel(im,x,y);

to

int dr,dg,db,p,r,g,b;
if (!gdImageBoundsSafeMacro (im, x, y)) return;
p = gdImageGetPixel(im,x,y);

More detail about this patch (if you need any) was described by Steve Lime in a post to mapserver-users.

Curved label support

ANGLE FOLLOW, a new feature that allows MapServer to draw curved labels about a linear feature like a road, requires libgd 2.0.29 and TrueType font support. Configure should autodetect if you have a sufficient libgd and TrueType support to be able to use this feature.

Anti-Grain Geometry Support

Since version 5.0 MapServer supports the AGG rendering backend. MapServer 5.6+ embeds it directly in the source tree and you do not have to do anything special to have support for it.

OGC Support

MapServer provides support for many OGC specifications. For an overview, see MapServer OGC Specification support.

WMS support

WMS Server

Support for WMS server is automatically enabled.

You can check it by looking for the following in your configure output:

--   * WMS SERVER: ENABLED

If, for some reason you don’t want WMS support, you can force it off using “-DWITH_WMS=OFF”.

More information on using this feature is available in WMS Server.

WMS Client

Cascading is also supported. This allows mapserver to transparently fetch remote layers over WMS, basically acting like a client, and combine them with other layers to generate the final map.

In order to enable this feature, you will need to pass the WITH_CLIENT_WMS option to the configure script. MapServer will automatically look for libcurl, which is also required.

To verify that this feature is enabled, check the configure output for:

--   * WMS CLIENT: ENABLED

注解

This feature is disabled by default, you have to specifically request it.

More information on using this feature is available in WMS Client.

WFS support

WFS Server

Support for WFS server is enabled by default. OGR and PROJ.4 support is required.

To verify that this feature is enabled, check the configure output for:

--   * WFS SERVER: ENABLED

If, for some reason you don’t want WFS support, you can force it off using “-DWITH_WFS=OFF”.

More information on using this feature is available in WFS Server.

WFS Client

MapServer can also act as a WFS client. This effectively means that MapServer reads it’s data from a remote server’s WFS output and renders it into a map, just like it would when reading data from a shapefile.

In order to enable this feature, you will need to make sure you have OGR (built with Xerces support) and PROJ.4 support, and pass the WITH_CLIENT_WFS option to your configure script. MapServer will automatically look for libcurl, which is also required.

To verify that this feature is enabled, check the configure output for:

--   * WFS CLIENT: ENABLED

注解

This feature is disabled by default, you have to specifically request it.

More information on using this feature is available in WFS Client.

WCS Server

Support for WCS server is enabled by default. WCS must be compiled against certain libraries. More information on this service is available in WCS Server.

To verify that this feature is enabled, check the configure output for:

--   * WCS SERVER: ENABLED

If, for some reason you don’t want WCS support, you can force it off using “-DWITH_WCS=OFF”.

SOS Server

Support for SOS is enabled by using the WITH_SOS option. More information on this service is available in SOS Server.

To verify that this feature is enabled, check the configure output for:

--   * SOS SERVER: ENABLED

注解

This feature is disabled by default, you have to specifically request it.

Spatial Warehousing

MapServer can use a wide variety of sources of data input. One of the solutions growing in popularity is to use spatially enabled databases to store data, and to use them directly to draw maps for the web.

Here you will find out how to enable mapserver to talk to one of these products. Please refer to the MapFile reference for more details on how to use these. This section only details how to compile MapServer for their use.

PostGIS

PostGIS adds support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS “spatially enables” the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI’s SDE or Oracle’s Spatial extension. PostGIS is included in many distributions’ packaging system, but you can also roll your own if needed.

MapServer can use PostGIS as a data source. PostGIS support is enabled by default.

To verify that this feature is enabled, check the configure output for:

--   * POSTGIS: /usr/local/pgsql/lib/libpq.so

If, for some reason you don’t want PostGIS support, you can force it off using “-DWITH_POSTGIS=OFF”. To help cmake find your PostGIS installation, you can use the CMAKE_PREFIX_PATH option (for instance “-DCMAKE_PREFIX_PATH=/usr/local/pgsql”).

ArcSDE

MapServer allows you to use SDE as a data source both for geometry and attributes. In order to achieve this, you must have the SDE client libraries at your disposition, and have them installed on the machine running MapServer.

In order to enable SDE support in MapServer, you have to use the following options: WITH_SDE (“-dWITH_SDE=ON”) and SDE_VERSION (for example “-DSDE_VERSION=91”).

To verify that this feature is enabled, check the configure output for:

--   * SDE: /opt/arcsde/lib/libsde90.so

Oracle Spatial

Oracle’s Spatial is also supported by MapServer. In order to connect to it, you will need to compile MapServer against the Oracle libraries by using the WITH_ORACLESPATIAL option. You will very likely need an ORACLE_HOME environment variable set to have it configure things correctly.

To verify that this feature is enabled, check the configure output for:

--   * Oracle Spatial: <path to oracle spatial shared library>

Compiling

First prepare the ground by making sure all of your required and/or recommended libraries are installed before attempting to compile MapServer. This will make your life much less complicated ;). Here is the order that I usually use:

  1. Compile GD. This often means acquiring libjpeg, libpng, zlib, and freetype before actually compiling the library. You shouldn’t have too much trouble finding binaries of the libraries that GD requires, and often, they will already be installed with your system. On unix, I’ve had very little luck finding pre-compiled binaries of the required GD library. See libgd section for notes about patching libgd if you plan to use antialiasing.

  2. Compile GDAL/OGR. Describing how to compile GDAL/OGR is beyond the scope of this document. If you have requirements for lots of different formats, make sure to install those libraries first. I often find that building up a GDAL/OGR library often takes as long as compiling MapServer itself!

  3. Compile Proj.4. Proj.4 is a straight-forward configure/make/make install library.

  4. Compile libcurl. libcurl is a straight-forward configure/make/make install library. This library is only used along with other features, so “–with-curl-config” won’t do anything unless something like “–with-wmsclient” or “–with-wfsclient” is also selected.

    注解

    If you want to configure MapServer to use SSL when accessing a WMS/WFS server libcurl must be configured / compiled with the “–with-ssl” option. Details about how to set this up is available in How to set up MapServer as a client to access a service over https.

  5. Compile/install optional libraries. These might include SDE, PostGIS, Oracle Spatial, AGG, Ming, PDFlib, or MyGIS. Mix and match as you need them.

  6. Unpack the MapServer tarball and cd into the mapserver directory:

    $ tar -zxvf mapserver-X.Y.Z.tar.gz
  7. Create the build directory and configure your environment.

    Create the build directory:

    $ cd mapserver-X.Y.Z
    $ mkdir build
    $ cd build

    Configure your environment using “cmake” (this is an example):

    $ cmake -DCMAKE_INSTALL_PREFIX=/opt \
            -DCMAKE_PREFIX_PATH=/usr/local/pgsql/91:/usr/local:/opt \
            -DWITH_CLIENT_WFS=ON \
            -DWITH_CLIENT_WMS=ON \
            -DWITH_CURL=ON \
            -DWITH_SOS=ON \
            -DWITH_PHP=ON \
            -DWITH_PYTHON=ON \
            -DWITH_SVGCAIRO=ON \
            -DWITH_ORACLESPATIAL=ON \
            -DWITH_MSSQL2008=ON \
            -DWITH_SDE=ON \
            -DSDE_VERSION=91 .. >../configure.out.txt

    The following options are enabled by default (version 6.4): WITH_CAIRO, WITH_FCGI, WITH_FRIBIDI, WITH_GDAL, WITH_GEOS, WITH_GIF, WITH_ICONV, WITH_LIBXML2, WITH_OGR, WITH_POSTGIS, WITH_PROJ, WITH_WCS, WITH_WFS, WITH_WMS.

    If you want to also build a static version of the library, the BUILD_STATIC and LINK_STATIC_LIBMAPSERVER options can be used,

    There are a number of other options available. For an up-to-date list of available cmake options, refer to the CMakeLists.txt.

    It can be a good idea to place the configuration commands in a file and change its mode to executable (+x) to save typing and have a record of how MapServer was configured.

  8. Now that you have configured your build options and selected all the libraries you wish mapserver to use, you’re ready to compile the source code.

    This is actually quite simple, just execute “make”:

    $ make
  9. Install the Mapserver libraries:

    # make install
    

    To make sure all went well, look for the file called mapserv:

    $ ls -al mapserv
    -rwxr-xr-x  1 user user 13745 mars  11 17:45 mapserv

    A simple test is to try and run it:

    $ ./mapserv
    This script can only be used to decode form results and
    should be initiated as a CGI process via a httpd server.

    The message above is perfectly normal, and means exactly what it says. If you get anything else, something went terribly wrong.

Installation

MapServer binary

The MapServer program itself consists of only one file, the “mapserv” binary executable. This is a CGI executable, meant to be called and run by your web server.

In this section, we will assume you are running Apache under its default directory structure in /usr/local/apache2. You may need to have privileges to edit your httpd.conf (the main apache configuration file), or have someone (such as your webmaster) help you with the configuration details.

If you don’t have apache installed, and you want apache, php, fastcgi, etc, that might look something like this:

$ apt-get install -y apache2 apache2-mpm-worker libapache2-mod-fastcgi
$ a2enmod actions fastcgi alias
$ apt-get install libapache2-mod-php5 php5-common php5-cli php5-fpm php5

The main goal is to get the “mapserv” binary installed in a publicly accessible directory that is configured to run CGI programs and scripts.

  1. Locate your cgi-bin directory. Under a default configuration, the CGI directory is “/usr/local/apache2/cgi-bin” (RedHat: “/home/httpd/cgi-bin”, Debian: “/usr/lib/cgi-bin”). If you’re using apache, there should be a ScriptAlias directive in your http.conf, or default site, something like:

    $ cat /etc/apache2/sites-available/default | grep 'cgi-bin'
    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  2. Locate the installation path of your freshly compiled mapserv executable. This is shown when you run “make install”, something like this:

    -- Installing: /usr/local/bin/mapserv
    -- Set runtime path of "/usr/local/bin/mapserv" to
          "/usr/local/lib:/usr/local/pgsql/91/lib"
  3. You’ll want to setup a symlink to that executable from your cgi-bin directory:

    # ln -s /usr/local/bin/mapserv /usr/lib/cgi-bin/mapserv
    

    警告

    Make sure you are linking against the installed mapserv file (after running ‘make install’) and NOT against where it was compiled in your source tree.

Testing your new Install

Placing the mapserv file in this directory makes it accessible by the following URL: “http://yourhostname.com/cgi-bin/mapserv”. When accessing this URL through your web client, you should expect the following output if all has worked well: “No query information to decode. QUERY_STRING is set, but empty.” If you get this message, you’re done installing MapServer.

Common problems

File permissions

The most common problem one is likely to encounter when attempting to install the binary are permissions issues:

  • You do not have write permissions into your web server’s CGI Directory. Ask your webmaster to install the file for you.

  • The web server gives you a “403 Permission denied” error. Make sure the user the web server runs as (usually “nobody”) has execute permission on the binary executable. Making the file world executable is perfectly fine and safe:

    $ chmod o+x mapserv

Apache errors

You may receive a few different type of errors as well if your web server configuration isn’t right:

  • 500 Internal server error: This is a fairly generic error message. All it basically tells you is that the web server was unsuccessful in running the program. You will have to consult the web server’s error log to find out more, and may need to enlist the help of your webmaster/system administrator. The apache docs also have pointers on setting up cgi-bin.

    ::

    Check your server logs $ tail /var/log/apache2/error.log

Where to go once you’ve got it compiled

The An Introduction to MapServer document provides excellent coverage of getting started with MapServer.