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

From stgo
Jump to: navigation, search
(Created page with ">> return to Cedeus_Technical_Architecture ---- steps performed: * create a new VM with Ubuntu 12.04 - with openssh and mail installed * remove the cl locale of /etc/apt...")
 
Line 2: Line 2:
 
----
 
----
  
steps performed:
+
basic steps performed:
  
 
* create a new VM with Ubuntu 12.04 - with openssh and mail installed
 
* create a new VM with Ubuntu 12.04 - with openssh and mail installed
 
* remove the cl locale of /etc/apt/sources.list
 
* remove the cl locale of /etc/apt/sources.list
 
* update and upgrade => important because of hardbleed bug
 
* update and upgrade => important because of hardbleed bug
 +
* shutdown + remove the iso from the VM
 
* copied the VM => basicUbuntu1204.zip
 
* copied the VM => basicUbuntu1204.zip
 +
 +
setting up GeoNode
 +
* a listing of necessary packages is here: http://docs.geonode.org/en/master/tutorials/admin/install/custom_install.html#custom-install
 +
* so we need to install
 +
**(i) apache2,
 +
**(ii) Java + Tomcat7,
 +
**(iii) postgresql (postgis only if we want to store the geodata locally),
 +
**(iv) python stuff for django
 +
* install apache2  <code>sudo apt-get install apache2</code>
 +
* install tomcat7 <code>sudo apt-get install tomcat7</code>
 +
* install postgresql <code>sudo apt-get install tomcat7</code>
 +
* install python <code>sudo apt-get install python-software-properties</code>

Revision as of 17:47, 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

  • a listing of necessary packages is here: http://docs.geonode.org/en/master/tutorials/admin/install/custom_install.html#custom-install
  • so we need to install
    • (i) apache2,
    • (ii) Java + Tomcat7,
    • (iii) postgresql (postgis only if we want to store the geodata locally),
    • (iv) python stuff for django
  • install apache2 sudo apt-get install apache2
  • install tomcat7 sudo apt-get install tomcat7
  • install postgresql sudo apt-get install tomcat7
  • install python sudo apt-get install python-software-properties