Difference between revisions of "Setting up GeoNode 2 on 12.04 VM on CedeusGeoNode"

From stgo
Jump to: navigation, search
Line 20: Line 20:
 
* install tomcat7 <code>sudo apt-get install tomcat7</code>
 
* install tomcat7 <code>sudo apt-get install tomcat7</code>
 
* install python <code>sudo apt-get install python-software-properties</code>
 
* install python <code>sudo apt-get install python-software-properties</code>
* to install postgresql is not really necessary, as postgres will be also installed by geonode, and I am using for my data an external postgresql-postgis db
+
* to install postgresql is not really necessary, as postgres 9.1 will be also installed by geonode, and I am using for my data an external postgresql-postgis db. However, I want 9.3 so:
 +
*: see here about adding the repo: http://www.postgresql.org/download/linux/ubuntu/
 +
*: sudo apt-get update
 +
*: sudo apt-get install postgresql-9.3 pgadmin3 postgresql-contrib
 +
*: for doc see also: http://docs.geonode.org/en/master/tutorials/admin/install/install_postgresql.html#install-postgresql
 
* install GeoNode:
 
* install GeoNode:
 
*: add the geonode repo key: <code>sudo add-apt-repository ppa:geonode/release</code>
 
*: add the geonode repo key: <code>sudo add-apt-repository ppa:geonode/release</code>
 
*: update the package list: <code>sudo apt-get update</code>
 
*: update the package list: <code>sudo apt-get update</code>

Revision as of 18:06, 24 June 2014

>> return to Cedeus_Technical_Architecture


basic steps performed:

  • create a new VM with Ubuntu 12.04 - with openssh and mail installed
  • remove the cl locale of /etc/apt/sources.list
  • update and upgrade => important because of hardbleed bug
  • shutdown + remove the iso from the VM
  • copied the VM => basicUbuntu1204.zip

setting up GeoNode