<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: access relational datastore postgres database in arc catalog in ArcGIS Enterprise Questions</title>
    <link>https://community.esri.com/t5/arcgis-enterprise-questions/access-relational-datastore-postgres-database-in/m-p/1071436#M30554</link>
    <description>&lt;P&gt;Accessing the postgres database directly is not recommended by Esri however if you are really determine to access the relational db,&amp;nbsp; I don't see what can stop you :).&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you tried updating pg_hba.conf(back this up first) to trust all host? that way you can log in without requiring a password.&lt;/P&gt;</description>
    <pubDate>Wed, 23 Jun 2021 13:05:14 GMT</pubDate>
    <dc:creator>VictorTey</dc:creator>
    <dc:date>2021-06-23T13:05:14Z</dc:date>
    <item>
      <title>access relational datastore postgres database in arc catalog</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/access-relational-datastore-postgres-database-in/m-p/1071373#M30551</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;is there any possibility to access the data in relational datastore through arccatalog ? if yes does it shows spatial data or only tables ?as per the documentation esri says it does have tables in postgres relational datastore.&lt;/P&gt;&lt;P&gt;kindly suggest on this.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 08:27:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/access-relational-datastore-postgres-database-in/m-p/1071373#M30551</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-06-23T08:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: access relational datastore postgres database in arc catalog</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/access-relational-datastore-postgres-database-in/m-p/1071374#M30552</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The ArcGIS Data Store is only supposed to be accessible via the REST interfaces (via the Hosting Server) and certainly if you want to 'support'.&amp;nbsp; The PostgreSQL database uses none-standard ports, and hidden credentials to dissuade you from doing so.&lt;/P&gt;&lt;P&gt;If you want to use the data in a desktop product (recommend Pro) then connect via the REST endpoint or extract the data as a copy (fGDB) and use it that way.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Scott&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 08:31:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/access-relational-datastore-postgres-database-in/m-p/1071374#M30552</guid>
      <dc:creator>Scott_Tansley</dc:creator>
      <dc:date>2021-06-23T08:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: access relational datastore postgres database in arc catalog</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/access-relational-datastore-postgres-database-in/m-p/1071436#M30554</link>
      <description>&lt;P&gt;Accessing the postgres database directly is not recommended by Esri however if you are really determine to access the relational db,&amp;nbsp; I don't see what can stop you :).&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you tried updating pg_hba.conf(back this up first) to trust all host? that way you can log in without requiring a password.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 13:05:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/access-relational-datastore-postgres-database-in/m-p/1071436#M30554</guid>
      <dc:creator>VictorTey</dc:creator>
      <dc:date>2021-06-23T13:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: access relational datastore postgres database in arc catalog</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/access-relational-datastore-postgres-database-in/m-p/1608645#M42083</link>
      <description>&lt;P&gt;The steps below work for me with PgAdmin&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Remote into server with the Postgres Data Store&lt;/LI&gt;&lt;LI&gt;Open command prompt&lt;/LI&gt;&lt;LI&gt;CD your way into the C:\Program Files\ArcGIS\DataStore\tools folder&lt;/LI&gt;&lt;LI&gt;Run "listmanageduser.bat"&lt;/LI&gt;&lt;LI&gt;Write down the username, password, and database&lt;/LI&gt;&lt;LI&gt;Run "allowconnection.bat &amp;lt;ip of your computer&amp;gt; &amp;lt;username from step 5&amp;gt;"&lt;UL&gt;&lt;LI&gt;example: "C:\Program Files\ArcGIS\DataStore\tools&amp;gt;allowconnection.bat 12345 user"&lt;/LI&gt;&lt;LI&gt;This will alter the pg_hba.conf file. You can open it to see your changes&lt;/LI&gt;&lt;LI&gt;IP is the computer you are using, not the server that has the datastore&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Open PgAdmin --&amp;gt; register new connection&lt;/LI&gt;&lt;LI&gt;Enter username, password, and database from step 5&lt;/LI&gt;&lt;LI&gt;Enter host name of the server with the datastore installed&lt;/LI&gt;&lt;LI&gt;Port is likely 9876&lt;UL&gt;&lt;LI&gt;Run 'netstat -ano' and search for the PID corresponding with the PID of postgres.exe in Task Manger&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Save connection&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Tables will be listed under the Schema --&amp;gt; username --&amp;gt; Tables&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 18:41:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/access-relational-datastore-postgres-database-in/m-p/1608645#M42083</guid>
      <dc:creator>cjms</dc:creator>
      <dc:date>2025-04-23T18:41:29Z</dc:date>
    </item>
  </channel>
</rss>

