Difference between revisions of "Building Mapguide on Ubuntu 7.10 Server"

From OSGeo
Jump to navigation Jump to search
m
(italicize administrator)
 
(38 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''JusT aboUt readY PlAy aLong iF yoUd Like!!!'''
+
Below are instructions that will aid a user with installing FDO 3.3 and MapGuide Open Source 2.0 from SVN trunk on Ubuntu 7.10 (Gutsy Gibbon) Server.  It is based on previous instructions, lots of credit to their authors!
  
 +
==NOTES==
  
Below are instructions that will aid a user with installing FDO 3.3 and MapGuide Open Source 2.0 from SVN trunk on Ubuntu 7.10 (Gutsy Gibbon) ServerIt is based on previous instructions, credit to their authors!
+
By the time you read this, FDO 3.3 and MapGuide 2.0 may have their own branches in SVN.  If so, just swap out references to /trunk/ with the appropriate /branch/* where necessary.
  
==BASIC SETUP==
+
The default directory used in these instructions is called /home/''administrator''.  This assumes that you create your primary user account with the name "''administrator''".  If you do not, mentally adjust where necessary.
  
Install a basic Ubuntu Server 7.10 (Gutsy Gibbon)
+
You may want to consider using a client like PuTTY to access your server's terminal via openssh-server from a different computer.  This really helps with copying and pasting.  If so, either ensure that you install the OpenSSH server during your basic install, or add "openssh-server" to the list of packages below.
  
The default directory used in these instructions is called /home/administrator.  This assumes that you created your primary user account with the name "administrator".  If you did not, mentally adjust where necessary.
+
Any time that you run a task and pipe its output to a logfile, make sure that you look at the end of the logfile when you're done to make sure that it completed successfully.  If it didn't then you have the logfile to post an error report from... Here's an example of how to do this:
  
By the time you read this, FDO 3.3 and MapGuide 2.0 may have their own branches in SVN. If so, just swap out references to /trunk/ with the appropriate /branch/* where necessary.
+
  tail -n 30 mylogfile.log
  
You may want to consider using a client like PuTTY to access your server's terminal via openssh-server.  This really helps with copying and pasting.  If so, either ensure that you install this service during your basic install, or add "openssh-server" to the list of packages below.
+
==BASIC SETUP==
  
 +
Install a basic Ubuntu Server 7.10 (Gutsy Gibbon).  Once this is complete, you will have to add some extra packages to compile MapGuide.  Make sure that you get all of these packages; the line is really long:
  
Type the following in Terminal to install the prerequisite build tools:
+
sudo apt-get install build-essential bison flex automake1.7 automake1.9 libtool doxygen subversion libjpeg62-dev libpng12-dev libfreetype6-dev libexpat1-dev libxalan110-dev libxslt1-dev expat libcurl4-openssl-dev libasound2-Dev python2.5-dev sun-java5-jdk
  
sudo apt-get install subversion build-essential gcc g++ bison flex automake1.9 libjpeg62-dev libtool zlib1g zlib1g-dev libxml2-dev make libxalan110 libxalan110-dev
+
If Java fails to install, you may need to edit /etc/apt/sources.list to uncomment the multiverse repository lines and then try installing it again.
  
To avoid "bad fd number" errors completely, type the following in the terminal:
+
To avoid "bad fd number" errors, type the following in the terminal:
  
 
  sudo dpkg-reconfigure dash
 
  sudo dpkg-reconfigure dash
Line 27: Line 29:
 
Prepare your SVN profile to use the appropriate options for FDO and MapGuide.  Type the following at the Terminal.
 
Prepare your SVN profile to use the appropriate options for FDO and MapGuide.  Type the following at the Terminal.
  
 +
''(this just sets up your initial .subversion settings folder)''
 
  svn info http://svn.osgeo.org/fdo
 
  svn info http://svn.osgeo.org/fdo
''(this just sets up your initial .subversion settings folder)''
 
  
 +
''(edit ~/.subversion/config)
 
  nano .subversion/config
 
  nano .subversion/config
  
Edit config as follows.  You can enable options by removing the comments (# ) in front of them, or just add new lines to the appropriate locations.
+
You can enable options by removing the comments (# ) in front of them, or just add new lines to the appropriate locations.
  
 
In the Miscellany section, enable:
 
In the Miscellany section, enable:
  
  Use-commit-times=yes
+
  use-commit-times = yes
  Enable-auto-props=yes
+
  enable-auto-props = yes
  
 
In the Auto-Props section, add:
 
In the Auto-Props section, add:
Line 45: Line 48:
  
 
Save and close the config file.
 
Save and close the config file.
 +
 +
Set the SUN Java to be the default Java installation:
 +
 +
sudo update-java-alternatives -s java-1.5.0-sun
 +
 +
Edit /etc/jvm, moving "/usr/lib/jvm/java-1.5.0-sun" to the top of the list
 +
 +
sudo nano /etc/jvm
 +
 +
Edit /etc/environment so that services will know where to look for Java
 +
 +
sudo nano /etc/environment
 +
 +
''(Add the following line)''
 +
 +
JAVA_HOME="/usr/lib/jvm/java-1.5.0-sun"
 +
 +
Log off and then log back on so that these settings take effect.  Alternatively, export JAVA_HOME in your current session.
  
 
==FDO INSTALL==
 
==FDO INSTALL==
  
 
In terminal type the following:
 
In terminal type the following:
 +
 +
mkdir fdosvn
  
 
''(be prepared to wait a long time for this command to complete, the test data takes a while to download)
 
''(be prepared to wait a long time for this command to complete, the test data takes a while to download)
  svn co http://svn.osgeo.org/fdo/trunk fdosvn --username=guest --password=guest
+
  svn checkout http://svn.osgeo.org/fdo/trunk fdosvn
  
 
''(type in your password after the following command if prompted)''
 
''(type in your password after the following command if prompted)''
 
  sudo mkdir /usr/local/fdo-3.3.0
 
  sudo mkdir /usr/local/fdo-3.3.0
  
''(if you are not logged in as administrator, you change the userid below!)''
+
''(if you are not logged in as ''administrator'', you change the userid below!)''
  sudo chown administrator /usr/local/fdo-3.3.0
+
  sudo chown ''administrator'' /usr/local/fdo-3.3.0
  
 
  cd fdosvn
 
  cd fdosvn
Line 73: Line 96:
 
In Terminal type the following:
 
In Terminal type the following:
  
  cd
+
  cd ~
  
''(you should now be in /home/administrator)''
+
''(you should now be in /home/''administrator'', or whatever your $HOME is)''
  
 
  mkdir mgsvn
 
  mkdir mgsvn
  
  svn co http://svn.osgeo.org/mapguide/trunk/MgDev/ mgsvn
+
  svn checkout http://svn.osgeo.org/mapguide/trunk/MgDev/ mgsvn
 
 
sudo apt-get install libcurl3 libcurl3-dev libxslt1.1 libxslt1-dev expat
 
  
 
  sudo mkdir /usr/local/mapguideopensource
 
  sudo mkdir /usr/local/mapguideopensource
  
(replace administrator with your user if necessary)
+
''(replace ''administrator'' with your userid if necessary)''
sudo chown administrator /usr/local/mapguideopensource
 
 
 
You may beed to edit the following file /etc/apt/sources.list to uncomment the multiverse repository (I didn't)
 
sudo nano /etc/apt/sources.list
 
  
  sudo apt-get install sun-java5-jdk
+
  sudo chown ''administrator'' /usr/local/mapguideopensource
 
 
''(change the version of Java below to the one you download, e.g. 1.5.0.13)''
 
export JAVA_HOME=/usr/lib/jvm/java-1.5.0-sun-1.5.0.13
 
  
 
  cd mgsvn/Oem/LinuxApt
 
  cd mgsvn/Oem/LinuxApt
  
 
''(careful when copying and pasting this line, the - got changed into . for me)''
 
''(careful when copying and pasting this line, the - got changed into . for me)''
 +
 
  find . -name "*.gz" -exec tar xzf {} \;
 
  find . -name "*.gz" -exec tar xzf {} \;
  
  ./build_apt.sh
+
  nohup ./build_apt.sh > ../../build_apt.log
  
 
==BUILD OEM==
 
==BUILD OEM==
  
 
Perform the following:
 
Perform the following:
 
sudo apt-get install automake1.7 libasound2-Dev python2.5-dev
 
  
 
  cd ~/mgsvn/
 
  cd ~/mgsvn/
Line 115: Line 128:
 
==BUILD MAPGUIDE==
 
==BUILD MAPGUIDE==
  
Add some more packages we might need:
+
Go for the gusto:
 +
 
 +
aclocal
 +
libtoolize --force
 +
automake --add-missing --copy
 +
autoconf
 +
 
 +
./configure --enable-optimized
 +
 
 +
nohup make > make_mapguide.log
 +
 
 +
nohup make install > install_mapguide.log
 +
 
 +
<!-- Not sure if this is needed yet
 +
 
 +
If you want to use webstudio, copy the files to the webserverextension folder:
 +
 
 +
cp -fpR /home/''administrator''/mgsvn/Web/src/webstudio /usr/local/mapguideopensource/webserverextensions/www/webstudio
 +
 
 +
-->
 +
 
 +
== STARTUP OPTIONS ==
 +
 
 +
While you're testing, it can be convenient to run services interactively, but eventually you'll want them to shut down / restart when you the computer is rebooted.  This section gives you both options.
 +
 
 +
=== START SERVICES MANUALLY ===
 +
 
 +
Start Apache
 +
 
 +
sudo /usr/local/mapguideopensource/webserverextensions/apache2/bin/apachectl restart
  
sudo apt-get install libexpat1 libexpat1-dev doxygen
+
Stop Apache
  
And go for the gusto:
+
sudo /usr/local/mapguideopensource/webserverextensions/apache2/bin/apachectl stop
  
  aclocal
+
Start MapGuide
  libtoolize --force
 
  automake --add-missing --copy
 
  autoconf
 
  
  ./configure --without-python
+
sudo /usr/local/mapguideopensource/server/bin/mgserverd.sh
  
  nohup make > make_mapguide.log
+
Stop MapGuide
  
= Here be Dragons - Uncharted territory not yet tested =
+
sudo pkill -f -u root "mgserver daemon"
  
''make install''
+
=== SET SERVICES TO AUTO-START ===
  
Not sure yet if these are needed...
+
'''!!! Warning, this is not working. See [http://trac.osgeo.org/mapguide/ticket/309 Ticket #309]  !!!'''
  
''sudo chown administrator /usr/lib/python2.4
+
Add Apache's control script into the system init structure:
  
''sudo chown administrator /usr/lib/python2.5
+
sudo ln -s /usr/local/mapguideopensource/webserverextensions/apache2/bin/apachectl /etc/init.d/apache-mapguide
  
 +
Set up some default run level actions for Apache (basically, start on interactive, stop on shutdown/restart)
  
To activate webstudio, you have to copy the files to the webserverextension folder as follows:
+
sudo update-rc.d apache-mapguide defaults 30 70
  
''cp -R /home/administrator/mgdev/1.2.x/MgDev/Web/src/webstudio “SPACE” /usr/local/mapguideopensource/webserverextensions/www/webstudio''
+
Create a startup script for Mapguide server:
  
The above command should be all one line, with a 'space' between webstudio and /usr
+
touch /usr/local/mapguideopensource/mapguidectl
 +
chmod u=rwx,go=r /usr/local/mapguideopensource/mapguidectl
 +
nano /usr/local/mapguideopensource/mapguidectl
  
''Reboot the server''
+
Add the following contents:
  
To start Mapguide on the server:
+
#!/bin/sh
 +
# MapGuide init script
 +
. /lib/lsb/init-functions
 +
case "$1" in
 +
  start)
 +
    log_daemon_msg "Starting MapGuide Server 2.0.0..."
 +
    export GDAL_DATA=/usr/local/mapguideopensource/server/bin/data
 +
    export PROJ_LIB=/usr/local/mapguideopensource/server/bin/nad
 +
    export LD_LIBRARY_PATH=/usr/local/fdo-3.3.0/lib:"$LD_LIBRARY_PATH"
 +
    pushd /usr/local/mapguideopensource/server/bin > /dev/null
 +
    ./mgserver daemon > /dev/null
 +
    popd > /dev/null
 +
    log_end_msg 0
 +
    ;;
 +
  stop)
 +
    log_daemon_msg "Stopping MapGuide Server 2.0.0..."
 +
    MGPROCESS=`/usr/bin/pgrep -f -u root "mgserver daemon"`
 +
    if [ "$MGPROCESS" != "" ]
 +
    then
 +
      /bin/kill $MGPROCESS
 +
    fi
 +
    log_end_msg 0
 +
    ;;
 +
  *)
 +
    echo "Usage: $0 {start|stop}"
 +
    exit 1
 +
    ;;
 +
esac
 +
exit 0
  
''cd /usr/local/mapguideopensource/webtierextensions/apache2/bin
+
Add MapGuide's control script into the system init structure:
  
''./httpd
+
sudo ln -s /usr/local/mapguideopensource/mapguidectl /etc/init.d/mapguide
  
''cd /usr/local/mapguideopensource/server/bin
+
Set up some default run level actions for MapGuide (basically, start on interactive, stop on shutdown/restart)
  
./mgserver.sh''
+
sudo update-rc.d mapguide defaults 35 65
  
Enjoy!
+
Restart and see if it works!

Latest revision as of 13:40, 6 October 2008

Below are instructions that will aid a user with installing FDO 3.3 and MapGuide Open Source 2.0 from SVN trunk on Ubuntu 7.10 (Gutsy Gibbon) Server. It is based on previous instructions, lots of credit to their authors!

NOTES

By the time you read this, FDO 3.3 and MapGuide 2.0 may have their own branches in SVN. If so, just swap out references to /trunk/ with the appropriate /branch/* where necessary.

The default directory used in these instructions is called /home/administrator. This assumes that you create your primary user account with the name "administrator". If you do not, mentally adjust where necessary.

You may want to consider using a client like PuTTY to access your server's terminal via openssh-server from a different computer. This really helps with copying and pasting. If so, either ensure that you install the OpenSSH server during your basic install, or add "openssh-server" to the list of packages below.

Any time that you run a task and pipe its output to a logfile, make sure that you look at the end of the logfile when you're done to make sure that it completed successfully. If it didn't then you have the logfile to post an error report from... Here's an example of how to do this:

tail -n 30 mylogfile.log

BASIC SETUP

Install a basic Ubuntu Server 7.10 (Gutsy Gibbon). Once this is complete, you will have to add some extra packages to compile MapGuide. Make sure that you get all of these packages; the line is really long:

sudo apt-get install build-essential bison flex automake1.7 automake1.9 libtool doxygen subversion libjpeg62-dev libpng12-dev libfreetype6-dev libexpat1-dev libxalan110-dev libxslt1-dev expat libcurl4-openssl-dev libasound2-Dev python2.5-dev sun-java5-jdk

If Java fails to install, you may need to edit /etc/apt/sources.list to uncomment the multiverse repository lines and then try installing it again.

To avoid "bad fd number" errors, type the following in the terminal:

sudo dpkg-reconfigure dash

and choose No at the prompt. Be aware that this changes your default /bin/sh from dash back to bash.

Prepare your SVN profile to use the appropriate options for FDO and MapGuide. Type the following at the Terminal.

(this just sets up your initial .subversion settings folder)

svn info http://svn.osgeo.org/fdo

(edit ~/.subversion/config)

nano .subversion/config

You can enable options by removing the comments (# ) in front of them, or just add new lines to the appropriate locations.

In the Miscellany section, enable:

use-commit-times = yes
enable-auto-props = yes

In the Auto-Props section, add:

*.*=svn:eol-style=native
*.sh=svn:executable

Save and close the config file.

Set the SUN Java to be the default Java installation:

sudo update-java-alternatives -s java-1.5.0-sun

Edit /etc/jvm, moving "/usr/lib/jvm/java-1.5.0-sun" to the top of the list

sudo nano /etc/jvm

Edit /etc/environment so that services will know where to look for Java

sudo nano /etc/environment

(Add the following line)

JAVA_HOME="/usr/lib/jvm/java-1.5.0-sun"

Log off and then log back on so that these settings take effect. Alternatively, export JAVA_HOME in your current session.

FDO INSTALL

In terminal type the following:

mkdir fdosvn

(be prepared to wait a long time for this command to complete, the test data takes a while to download)

svn checkout http://svn.osgeo.org/fdo/trunk fdosvn

(type in your password after the following command if prompted)

sudo mkdir /usr/local/fdo-3.3.0

(if you are not logged in as administrator, you change the userid below!)

sudo chown administrator /usr/local/fdo-3.3.0
cd fdosvn
source ./setenvironment.sh

In terminal, type the following to run the builds. Note, there will be no output from either command until completion as it is all being spooled to nohup.out. You can log into another terminal session and tail this file if you start getting antsy :-)

nohup ./build_thirdparty.sh > build_thirdparty.log
nohup ./build_linux.sh > build_linux.log

APACHE / PHP INSTALL

In Terminal type the following:

cd ~

(you should now be in /home/administrator, or whatever your $HOME is)

mkdir mgsvn
svn checkout http://svn.osgeo.org/mapguide/trunk/MgDev/ mgsvn
sudo mkdir /usr/local/mapguideopensource

(replace administrator with your userid if necessary)

sudo chown administrator /usr/local/mapguideopensource
cd mgsvn/Oem/LinuxApt

(careful when copying and pasting this line, the - got changed into . for me)

find . -name "*.gz" -exec tar xzf {} \;
nohup ./build_apt.sh > ../../build_apt.log

BUILD OEM

Perform the following:

cd ~/mgsvn/
nohup ./build_oem.sh > build_oem.log

BUILD MAPGUIDE

Go for the gusto:

aclocal
libtoolize --force
automake --add-missing --copy
autoconf
./configure --enable-optimized
nohup make > make_mapguide.log
nohup make install > install_mapguide.log


STARTUP OPTIONS

While you're testing, it can be convenient to run services interactively, but eventually you'll want them to shut down / restart when you the computer is rebooted. This section gives you both options.

START SERVICES MANUALLY

Start Apache

sudo /usr/local/mapguideopensource/webserverextensions/apache2/bin/apachectl restart

Stop Apache

sudo /usr/local/mapguideopensource/webserverextensions/apache2/bin/apachectl stop

Start MapGuide

sudo /usr/local/mapguideopensource/server/bin/mgserverd.sh

Stop MapGuide

sudo pkill -f -u root "mgserver daemon"

SET SERVICES TO AUTO-START

!!! Warning, this is not working. See Ticket #309 !!!

Add Apache's control script into the system init structure:

sudo ln -s /usr/local/mapguideopensource/webserverextensions/apache2/bin/apachectl /etc/init.d/apache-mapguide

Set up some default run level actions for Apache (basically, start on interactive, stop on shutdown/restart)

sudo update-rc.d apache-mapguide defaults 30 70

Create a startup script for Mapguide server:

touch /usr/local/mapguideopensource/mapguidectl
chmod u=rwx,go=r /usr/local/mapguideopensource/mapguidectl
nano /usr/local/mapguideopensource/mapguidectl

Add the following contents:

#!/bin/sh
# MapGuide init script
. /lib/lsb/init-functions
case "$1" in
 start)
   log_daemon_msg "Starting MapGuide Server 2.0.0..."
   export GDAL_DATA=/usr/local/mapguideopensource/server/bin/data
   export PROJ_LIB=/usr/local/mapguideopensource/server/bin/nad
   export LD_LIBRARY_PATH=/usr/local/fdo-3.3.0/lib:"$LD_LIBRARY_PATH"
   pushd /usr/local/mapguideopensource/server/bin > /dev/null
   ./mgserver daemon > /dev/null
   popd > /dev/null
   log_end_msg 0
   ;;
 stop)
   log_daemon_msg "Stopping MapGuide Server 2.0.0..."
   MGPROCESS=`/usr/bin/pgrep -f -u root "mgserver daemon"`
   if [ "$MGPROCESS" != "" ]
   then
     /bin/kill $MGPROCESS
   fi
   log_end_msg 0
   ;;
 *)
   echo "Usage: $0 {start|stop}"
   exit 1
   ;;
esac
exit 0

Add MapGuide's control script into the system init structure:

sudo ln -s /usr/local/mapguideopensource/mapguidectl /etc/init.d/mapguide

Set up some default run level actions for MapGuide (basically, start on interactive, stop on shutdown/restart)

sudo update-rc.d mapguide defaults 35 65

Restart and see if it works!