"In a few moments he was barefoot, his stockings folded in his pockets and his canvas shoes dangling by their knotted laces over his shoulders and, picking a pointed salt-eaten stick out of the jetsam among the rocks, he clambered down the slope of the breakwater. Por aca jorge"
-
Requisitos
-
Configurando la base de datos
Ejecutar los siguientes comandos para cambiar la configuracion del usuario en el servidor de postgres:
- sudo -u postgres psql
- \password postgres
- now enter New Password and Confirm
- then \q to exit
- Now create a database. You can use pgAdmin or connect to psql and do it from cli. In the second case do:
- Connect to psql:
psql -U "username" -h "servername"
- Create de database:
CREATE DATABASE "db_name"
- Now add the postgis extension:
- Connect to the database: Run command 1 and then
\connect "db_name"
- Create the extension support:
CREATE EXTENSION POSTGIS;
- Check if the extension was created successfully:
\dt
. if you see the table spatial_ref_sys. All was done! >
- Connect to the database: Run command 1 and then