Changes between Version 1 and Version 2 of ZooWebSite/ZooKernel/InstallationNew
- Timestamp:
- Apr 13, 2010, 11:46:56 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ZooWebSite/ZooKernel/InstallationNew
v1 v2 1 1 = ZOO Kernel Installation = 2 2 3 The ZOO installation process requires the following libraries to be installed on your linux/mac system: 4 3 The ZOO installation process requires the following libraries to be installed on your system: 4 5 * Flex & Bison ( http://flex.sourceforge.net/ http://www.gnu.org/software/bison/ ) 5 6 * FastCGI ( http://www.fastcgi.com ) 6 7 * cgic ( http://www.boutell.com/cgic ) … … 18 19 19 20 {{{ 20 svn checkout http://svn.zoo-project.org/svn/trunk zoo 21 svn checkout http://svn.zoo-project.org/svn/trunk zoo-project 21 22 }}} 22 23 23 24 = Compiling ZOO Kernel = 25 26 == Unix / Linux == 24 27 25 28 Please use the following command to compile ZOO Kernel source code. Please use … … 27 30 28 31 {{{ 29 cd trunk/zoo-kernel32 cd zoo-project/zoo-kernel 30 33 ./configure --with-js=/usr/ \ 31 34 --with-gdal-config=/usr/bin/gdal-config \ … … 33 36 --with-java=/opt/sun-jdk-1.6.0.02/ 34 37 make zoo_loader.cgi 38 }}} 39 40 == Win32 == 41 42 On Win32 platform you can compile the ZOO Kernel using the following command. 43 Please, first edit the makefile.vc to follow your local path to find required libraries. Don't forget to set environement variables before compilation (like the {{{PATH}}} to be able to use Flex and Bison binaries during the compilation process). 44 45 {{{ 46 #!sh 47 cd .\zoo-project\zoo-kernel\ 48 nmake /f makefile.vc 35 49 }}} 36 50 … … 48 62 }}} 49 63 50 The main configuration file is named main.cfg and contains configuration parameters that can be accessed from your service (using the main_cfg parameter) or by the ZOO Kernel. Please edit main.cfgaccording to your environment.64 The main configuration file is named main.cfg and contains configuration parameters that can be accessed from your service (using the main_cfg parameter) or by the ZOO Kernel. Please edit {{{main.cfg}}} according to your environment. 51 65 Apache ZOO .htaccess 52 66