How to connect to a remote postgresql via http

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • irhernan
    New Member
    • Sep 2008
    • 2

    How to connect to a remote postgresql via http

    Hi,
    I have just installed a postgresql server on a windows server. Now, I want to connect to it from a winodws desktop through http (intranet).

    What URL will I have to use to connect to the remote db server?

    Many thanks in advance..

    regards,

    Mike
  • rski
    Recognized Expert Contributor
    • Dec 2006
    • 700

    #2
    I guess you need phppgadmin, or similar apps, postgres is not a http server. What do you want to do with postgres via http?

    Comment

    • irhernan
      New Member
      • Sep 2008
      • 2

      #3
      I want the postgresql database to be accesible to our developers through the web (intranet, in particular) so that they can develop applications based on postgresql.

      An application system based on postgresql db has just been turned over to us. But unfortunately, we have no previous knowledge of postgresql. It is upon receiving this application that we have become aware of postgresql.

      I want our developers to be able to access the database I have just installed through our lan via http.

      Comment

      • rski
        Recognized Expert Contributor
        • Dec 2006
        • 700

        #4
        Originally posted by irhernan
        I want the postgresql database to be accesible to our developers through the web (intranet, in particular) so that they can develop applications based on postgresql.

        An application system based on postgresql db has just been turned over to us. But unfortunately, we have no previous knowledge of postgresql. It is upon receiving this application that we have become aware of postgresql.

        I want our developers to be able to access the database I have just installed through our lan via http.
        So you only need to configure postgres to listen for network connection
        (in file postgresql.org change listen_addresse s to '*' or server IP), and you must configure access rules in pg_hba.conf.

        Comment

        Working...