<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>Hi all,<br><br>I'm working to set up a new installation of geonode, and I was trying the functionalities.<br>I configured postgresql as DB. Following the instruction of the custom installation<br>I set up the two DBs, geonode and geonode_data.<br>I understood geonode_data is to store the uploaded spatial dataset as shp file,<br>so I tested an shp upload. The shp file was correctly uploaded, but it was saved in the <br>geoserver data dir and not in the db. Is that correct? am I missing something on the<br>local_setting.py or somewhare?<br><br>Of course my config file includes the parameters for the DBs and the DBs were created:<br>DATABASES = {<br> 'default': {<br> 'ENGINE': 'django.db.backends.postgresql_psycopg2',<br> #'ENGINE': '',<br> 'NAME': 'geonode',<br> 'USER': 'geonode',<br> 'PASSWORD': 'my_pass',<br> 'HOST' : 'localhost',<br> 'PORT' : '5433',<br> <br> },<br> # vector datastore for uploads<br> 'datastore' : {<br> 'ENGINE': 'django.contrib.gis.db.backends.postgis',<br> #'ENGINE': '', # Empty ENGINE name disables <br> 'NAME': 'geonode_data',<br> 'USER' : 'geonode',<br> 'PASSWORD' : 'my_pass',<br> 'HOST' : 'localhost',<br> 'PORT' : '5433',<br> }<br>}<br><br><br>Thank you for any hints<br><br>best<br><br>Eugenio<br><br><br> </div></body>
</html>