Thread: Problem with installation

Problem with installation

From
nissyre@wp.pl
Date:
Hi,
  I need to install PostgreSQL 9 but in silence mode (like in MSI Installer for Postgres 8.3). Is it possible with
PostgreSQL9.0 or higher? 



Re: Problem with installation

From
Ashesh Vashi
Date:
Use "--mode unattended" option with one-click installer.
You can always check other options using "--help" option of the installer.

--

Thanks & Regards,

Ashesh Vashi
EnterpriseDB INDIA:
Enterprise PostgreSQL Company

 

http://www.linkedin.com/in/asheshvashi




2012/3/27 <nissyre@wp.pl>
Hi,
 I need to install PostgreSQL 9 but in silence mode (like in MSI Installer for Postgres 8.3). Is it possible with PostgreSQL 9.0 or higher?



--
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

Re: Problem with installation

From
John R Pierce
Date:
On 03/27/12 1:46 AM, nissyre@wp.pl wrote:
> Hi,
>    I need to install PostgreSQL 9 but in silence mode (like in MSI Installer for Postgres 8.3). Is it possible with
PostgreSQL9.0 or higher? 

what OS? on centos/redhat/fedora type linux,

     yum -y install postgresql91-{server,contrib,devel}

runs without user intervention.  if you want to surpress the progress
messages, add >/dev/null  to the end.



--
john r pierce                            N 37, W 122
santa cruz ca                         mid-left coast


Re: Problem with installation

From
Thomas Kellerer
Date:
nissyre@wp.pl, 27.03.2012 10:46:
> Hi,
>    I need to install PostgreSQL 9 but in silence mode (like in MSI Installer for Postgres 8.3). Is it possible with
PostgreSQL9.0 or higher? 
>
Why not use the binary ZIP distribution?

Steps for installing are then:

1) Unzip the archive
2) Run initdb
3) Run "pg_ctl register" to create the Windows service

If your own installer can unzip ZIP archives and start external programs, that should be easy to integrate.

Thomas