osm2pgrouting can't connect to postGIS Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?osm2pgrouting connection failedHow to use -lco options in gdal_contour?How to install PostGIS and pgrouting on Windows if Stack Builder fails to connect?How to fix “Connection failed - Check settings and try again” when connecting to PostGIS?error of data conversion value getting while importing shapefile in shp2pgsql-gui on ubuntuTileStache:TileStache.Core.KnownUnknown: Couldn't get a layer from data source!Unable find driver PostgreSQL in ogr2ogrCan't Link grass to remote server postgis topology schema for import or export vector dataConnect to a PostGIS database from GIS CloudHow to backup QGIS (3.2.1) layer to independent PostGIS table?
Noise in Eigenvalues plot
Proving that any solution to the differential equation of an oscillator can be written as a sum of sinusoids.
Is it OK if I do not take the receipt in Germany?
Can I cut the hair of a conjured korred with a blade made of precious material to harvest that material from the korred?
Found this skink in my tomato plant bucket. Is he trapped? Or could he leave if he wanted?
Table formatting with tabularx?
My mentor says to set image to Fine instead of RAW — how is this different from JPG?
Any stored/leased 737s that could substitute for grounded MAXs?
などの followed by a Noun
The Nth Gryphon Number
calculator's angle answer for trig ratios that can work in more than 1 quadrant on the unit circle
Why does BitLocker not use RSA?
.bashrc alias for a command with fixed second parameter
How to name indistinguishable henchmen in a screenplay?
Pointing to problems without suggesting solutions
What does Sonny Burch mean by, "S.H.I.E.L.D. and HYDRA don't even exist anymore"?
How can I list files in reverse time order by a command and pass them as arguments to another command?
How do Java 8 default methods hеlp with lambdas?
Why is there so little support for joining EFTA in the British parliament?
Can two people see the same photon?
How do I say "this must not happen"?
Changing order of draw operation in PGFPlots
How to get a flat-head nail out of a piece of wood?
What should one know about term logic before studying propositional and predicate logic?
osm2pgrouting can't connect to postGIS
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?osm2pgrouting connection failedHow to use -lco options in gdal_contour?How to install PostGIS and pgrouting on Windows if Stack Builder fails to connect?How to fix “Connection failed - Check settings and try again” when connecting to PostGIS?error of data conversion value getting while importing shapefile in shp2pgsql-gui on ubuntuTileStache:TileStache.Core.KnownUnknown: Couldn't get a layer from data source!Unable find driver PostgreSQL in ogr2ogrCan't Link grass to remote server postgis topology schema for import or export vector dataConnect to a PostGIS database from GIS CloudHow to backup QGIS (3.2.1) layer to independent PostGIS table?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I want to do some isochrones with pgrouting, and I am failing in setting up the network in the first place.
osm2pgrouting doesn't find my postGIS installation. Also, the error message is not very helpful (ERROR: postGIS not found) and I don't know what to do (reinstalling already tried).
What is your advice?
osm2pgrouting -f lebanon-latest.osm -d routing_lb -U jb -W
***************************************************
COMMAND LINE CONFIGURATION *
***************************************************
Filename = lebanon-latest.osm
Configuration file = /usr/share/osm2pgrouting/mapconfig.xml
host = localhost
port = 5432
dbname = routing_lb
username = jb
password =
schema=
prefix =
suffix =
Don't drop tables
Don't add nodes
***************************************************
Connecting to the database
host=localhost user=jb dbname=routing_lb port=5432 password=
connection success
ERROR: postGIS not found
In PostgreSQL, the postGIS extension is installed:
postgres=# create extension postgis;
CREATE EXTENSION
postgres=# create extension pgrouting;
CREATE EXTENSION
Test:
postgres=# create extension postGIS;
ERROR: extension "postgis" already exists
Not surprisingly, no tables in the database have been created:
postgres=# c routing_lb
You are now connected to database "routing_lb" as user "postgres".
routing_lb=# dt
No relations found.
postgis pgrouting osm2pgrouting
add a comment |
I want to do some isochrones with pgrouting, and I am failing in setting up the network in the first place.
osm2pgrouting doesn't find my postGIS installation. Also, the error message is not very helpful (ERROR: postGIS not found) and I don't know what to do (reinstalling already tried).
What is your advice?
osm2pgrouting -f lebanon-latest.osm -d routing_lb -U jb -W
***************************************************
COMMAND LINE CONFIGURATION *
***************************************************
Filename = lebanon-latest.osm
Configuration file = /usr/share/osm2pgrouting/mapconfig.xml
host = localhost
port = 5432
dbname = routing_lb
username = jb
password =
schema=
prefix =
suffix =
Don't drop tables
Don't add nodes
***************************************************
Connecting to the database
host=localhost user=jb dbname=routing_lb port=5432 password=
connection success
ERROR: postGIS not found
In PostgreSQL, the postGIS extension is installed:
postgres=# create extension postgis;
CREATE EXTENSION
postgres=# create extension pgrouting;
CREATE EXTENSION
Test:
postgres=# create extension postGIS;
ERROR: extension "postgis" already exists
Not surprisingly, no tables in the database have been created:
postgres=# c routing_lb
You are now connected to database "routing_lb" as user "postgres".
routing_lb=# dt
No relations found.
postgis pgrouting osm2pgrouting
add a comment |
I want to do some isochrones with pgrouting, and I am failing in setting up the network in the first place.
osm2pgrouting doesn't find my postGIS installation. Also, the error message is not very helpful (ERROR: postGIS not found) and I don't know what to do (reinstalling already tried).
What is your advice?
osm2pgrouting -f lebanon-latest.osm -d routing_lb -U jb -W
***************************************************
COMMAND LINE CONFIGURATION *
***************************************************
Filename = lebanon-latest.osm
Configuration file = /usr/share/osm2pgrouting/mapconfig.xml
host = localhost
port = 5432
dbname = routing_lb
username = jb
password =
schema=
prefix =
suffix =
Don't drop tables
Don't add nodes
***************************************************
Connecting to the database
host=localhost user=jb dbname=routing_lb port=5432 password=
connection success
ERROR: postGIS not found
In PostgreSQL, the postGIS extension is installed:
postgres=# create extension postgis;
CREATE EXTENSION
postgres=# create extension pgrouting;
CREATE EXTENSION
Test:
postgres=# create extension postGIS;
ERROR: extension "postgis" already exists
Not surprisingly, no tables in the database have been created:
postgres=# c routing_lb
You are now connected to database "routing_lb" as user "postgres".
routing_lb=# dt
No relations found.
postgis pgrouting osm2pgrouting
I want to do some isochrones with pgrouting, and I am failing in setting up the network in the first place.
osm2pgrouting doesn't find my postGIS installation. Also, the error message is not very helpful (ERROR: postGIS not found) and I don't know what to do (reinstalling already tried).
What is your advice?
osm2pgrouting -f lebanon-latest.osm -d routing_lb -U jb -W
***************************************************
COMMAND LINE CONFIGURATION *
***************************************************
Filename = lebanon-latest.osm
Configuration file = /usr/share/osm2pgrouting/mapconfig.xml
host = localhost
port = 5432
dbname = routing_lb
username = jb
password =
schema=
prefix =
suffix =
Don't drop tables
Don't add nodes
***************************************************
Connecting to the database
host=localhost user=jb dbname=routing_lb port=5432 password=
connection success
ERROR: postGIS not found
In PostgreSQL, the postGIS extension is installed:
postgres=# create extension postgis;
CREATE EXTENSION
postgres=# create extension pgrouting;
CREATE EXTENSION
Test:
postgres=# create extension postGIS;
ERROR: extension "postgis" already exists
Not surprisingly, no tables in the database have been created:
postgres=# c routing_lb
You are now connected to database "routing_lb" as user "postgres".
routing_lb=# dt
No relations found.
postgis pgrouting osm2pgrouting
postgis pgrouting osm2pgrouting
edited Apr 14 at 6:42
PolyGeo♦
54.1k1782246
54.1k1782246
asked Apr 13 at 8:08
KlasterKlaster
1655
1655
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You may need to create postgis extension in the routing_lb database. Right now you are creating it in postgres database and it may not be in same schema
add a comment |
Turns out you have to create the extensions in the database itself and not only once for the whole postgreSQL installation:
routing_lb=# create extension postgis;
CREATE EXTENSION
routing_lb=# create extension pgrouting;
CREATE EXTENSION
routing_lb=# dx+ pgrouting
routing_lb=# select pgr_version();
pgr_version
----------------------------------------
(2.5.2,v2.5.2,60585f1f7,master,1.58.0)
(1 row)
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "79"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f318671%2fosm2pgrouting-cant-connect-to-postgis%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You may need to create postgis extension in the routing_lb database. Right now you are creating it in postgres database and it may not be in same schema
add a comment |
You may need to create postgis extension in the routing_lb database. Right now you are creating it in postgres database and it may not be in same schema
add a comment |
You may need to create postgis extension in the routing_lb database. Right now you are creating it in postgres database and it may not be in same schema
You may need to create postgis extension in the routing_lb database. Right now you are creating it in postgres database and it may not be in same schema
answered Apr 13 at 8:16
CarlosAlbaladejoCarlosAlbaladejo
284
284
add a comment |
add a comment |
Turns out you have to create the extensions in the database itself and not only once for the whole postgreSQL installation:
routing_lb=# create extension postgis;
CREATE EXTENSION
routing_lb=# create extension pgrouting;
CREATE EXTENSION
routing_lb=# dx+ pgrouting
routing_lb=# select pgr_version();
pgr_version
----------------------------------------
(2.5.2,v2.5.2,60585f1f7,master,1.58.0)
(1 row)
add a comment |
Turns out you have to create the extensions in the database itself and not only once for the whole postgreSQL installation:
routing_lb=# create extension postgis;
CREATE EXTENSION
routing_lb=# create extension pgrouting;
CREATE EXTENSION
routing_lb=# dx+ pgrouting
routing_lb=# select pgr_version();
pgr_version
----------------------------------------
(2.5.2,v2.5.2,60585f1f7,master,1.58.0)
(1 row)
add a comment |
Turns out you have to create the extensions in the database itself and not only once for the whole postgreSQL installation:
routing_lb=# create extension postgis;
CREATE EXTENSION
routing_lb=# create extension pgrouting;
CREATE EXTENSION
routing_lb=# dx+ pgrouting
routing_lb=# select pgr_version();
pgr_version
----------------------------------------
(2.5.2,v2.5.2,60585f1f7,master,1.58.0)
(1 row)
Turns out you have to create the extensions in the database itself and not only once for the whole postgreSQL installation:
routing_lb=# create extension postgis;
CREATE EXTENSION
routing_lb=# create extension pgrouting;
CREATE EXTENSION
routing_lb=# dx+ pgrouting
routing_lb=# select pgr_version();
pgr_version
----------------------------------------
(2.5.2,v2.5.2,60585f1f7,master,1.58.0)
(1 row)
answered Apr 13 at 8:16
KlasterKlaster
1655
1655
add a comment |
add a comment |
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f318671%2fosm2pgrouting-cant-connect-to-postgis%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown