Re: install pgcrypto module to existing postgreSQL

2019-09-18 Thread Luca Ferrari
On Tue, Sep 17, 2019 at 11:19 PM Pavan Kumar wrote: > once configure is done, used make and make install to install postgres. cd contrib && make && make install that should work. Luca

Re: install pgcrypto module to existing postgreSQL

2019-09-17 Thread Pavan Kumar
Ron, yes, Installed with source code. here is my postgres configuration BINDIR = /pgbin/11.2/bin DOCDIR = /pgbin/11.2/share/doc/postgresql HTMLDIR = /pgbin/11.2/share/doc/postgresql INCLUDEDIR = /pgbin/11.2/include PKGINCLUDEDIR = /pgbin/11.2/include/postgresql INCLUDEDIR-SERVER = /pgbin/11.2/incl

Re: install pgcrypto module to existing postgreSQL

2019-09-17 Thread Ron
IOW, you installed it from source instead of a package. On 9/17/19 4:18 PM, Pavan Kumar wrote: Hello Adrian, i have used configure command install postgres   $ ./configure --prefix=/pgbin/11.2 --with-segsize=32 --with-pgport=5432 once configure is done, used make and make install to install p

Re: install pgcrypto module to existing postgreSQL

2019-09-17 Thread Adrian Klaver
On 9/17/19 2:18 PM, Pavan Kumar wrote: Hello Adrian, i have used configure command install postgres   $ ./configure --prefix=/pgbin/11.2 --with-segsize=32 --with-pgport=5432 once configure is done, used make and make install to install postgres. Full instructions are here at bottom: https:/

Re: install pgcrypto module to existing postgreSQL

2019-09-17 Thread Pavan Kumar
Hello Adrian, i have used configure command install postgres $ ./configure --prefix=/pgbin/11.2 --with-segsize=32 --with-pgport=5432 once configure is done, used make and make install to install postgres. On Tue, Sep 17, 2019 at 4:06 PM Adrian Klaver wrote: > On 9/17/19 1:25 PM, Pavan Kum

Re: install pgcrypto module to existing postgreSQL

2019-09-17 Thread Adrian Klaver
On 9/17/19 1:25 PM, Pavan Kumar wrote: hello experts, i have Installed and created postgres 11.2 and created couple of How did you install? database.  Now i got new requirement to encrypt data on  few tables. to perform this application team is asking us to install pgcrypto module on post

install pgcrypto module to existing postgreSQL

2019-09-17 Thread Pavan Kumar
hello experts, i have Installed and created postgres 11.2 and created couple of database. Now i got new requirement to encrypt data on few tables. to perform this application team is asking us to install pgcrypto module on postgres cluster. what is the way to install pgcrypt library ? please ad