Re: [BUGS] Installation problem "...The database cluster initialization failed.."
- It is Windows Vista Business. - ..\PostgreSQL\8.3\data is existing and empty. - during uninstallation postgre has reported an error: unable to stop service - I have deleted PostgreSQL directiory (after uninstall), but when I try to install it still display message that "The database cluster initialisation failed." Dave Page-7 wrote: > > On Fri, Jan 9, 2009 at 11:02 AM, aerkain wrote: >> >> Ok, Ive found it. > > It appears that initdb itself is failing. Is the data directory you > are trying to use an existing (but empty) directory? If so, please try > deleting it and re-installing. > > Also, what OS is this exactly - vista? > > -- > Dave Page > EnterpriseDB UK: http://www.enterprisedb.com > > -- > Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) > To make changes to your subscription: > http://www.postgresql.org/mailpref/pgsql-bugs > > -- View this message in context: http://www.nabble.com/Installation-problem-%22...The-database-cluster-initialization-failed..%22-tp21343831p21403837.html Sent from the PostgreSQL - bugs mailing list archive at Nabble.com. -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs
[BUGS] BUG #4609: Installer cannot start postgresql service succesfully
The following bug has been logged online: Bug reference: 4609 Logged by: Alex Email address: alex...@hotmail.com PostgreSQL version: 8.2+ Operating system: Windows 7 Description:Installer cannot start postgresql service succesfully Details: Hi, I tried to install versions 8.2 and 8.3 of postgresql db on my machine running Windows 7 Beta 1. All the installation process went fine until the step when it tries to start postgresql service, where it fails saying that I must verify the I have the rights to start system services. After researching in the web and posting the problem into a forum, I found that version 8.0 of postgresql works just fine in Windows 7, so I realized that maybe something is wrong within the installer of versions 8.2 & 8.3 (maybe with other versions after 8.0, I just tested the ones I mentioned). I'm aware that I'm using a Beta version of an OS and there's always issues with certain software, but I think it would be nice if you can take a look at this and look for a solution for future releases. Thanks! -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs
Re: [BUGS] Installation problem "...The database cluster initialization failed.."
On Sun, Jan 11, 2009 at 8:32 PM, aerkain wrote: > > - It is Windows Vista Business. > - ..\PostgreSQL\8.3\data is existing and empty. > - during uninstallation postgre has reported an error: unable to stop > service > - I have deleted PostgreSQL directiory (after uninstall), but when I try to > install it still display message that "The database cluster initialisation > failed." Can you run it manually? http://www.postgresql.org/docs/8.3/interactive/app-initdb.html -- Dave Page EnterpriseDB UK: http://www.enterprisedb.com -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs
Re: [BUGS] Installation problem "...The database cluster initialization failed.."
aerkain wrote: - It is Windows Vista Business. - ..\PostgreSQL\8.3\data is existing and empty. - during uninstallation postgre has reported an error: unable to stop service - I have deleted PostgreSQL directiory (after uninstall), but when I try to install it still display message that "The database cluster initialisation failed." to clean up a old/failed postgres install on windows... * delete the postgres user, via command line NET USER POSTGRES /DELETE * delete the postgres 'service', via command line SC DELETE PGSQL-8.3 * delete the directories as you did. (command lines can (should?) be all lower case, i just capitalized them to make it clear they were commands). older versions use different service names... try sc query | find "pg" to get the service name for the `sc delete` command... now, you should be able to clean install postgres -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs
[BUGS] BUG #4610: password
The following bug has been logged online: Bug reference: 4610 Logged by: Rigo Nyfjeld Email address: nyfj...@mail.dk PostgreSQL version: 8.3 Operating system: vista Description:password Details: Hi I have lost my password and i have signed up through pokertracker and now i want to install a new program but cant remember my code/password. Could you guys please provide me with a new one ? -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs
Re: [BUGS] BUG #4610: password
Rigo Nyfjeld пишет: The following bug has been logged online: Bug reference: 4610 Logged by: Rigo Nyfjeld Email address: nyfj...@mail.dk PostgreSQL version: 8.3 Operating system: vista Description:password Details: Hi I have lost my password and i have signed up through pokertracker and now i want to install a new program but cant remember my code/password. Could you guys please provide me with a new one ? Hi! This mailing list is about BUGS, not forgotten passwords ;) -- С уважением, Глеб Хэппи smime.p7s Description: S/MIME Cryptographic Signature
[BUGS] BUG #4612: lc_numeric setting ignored
The following bug has been logged online: Bug reference: 4612 Logged by: Mark Hayen Email address: mark.ha...@atosorigin.com PostgreSQL version: 8.3.5 Operating system: Ubuntu 8.10 Description:lc_numeric setting ignored Details: When setting the LC_NUMERIC to nl_NL.UTF-8 systemvariable at both the OS level and the database itself (postgresql.conf), the database refuses to accept a decimal comma. psql output: dimpact=# show lc_numeric; lc_numeric - nl_NL.UTF-8 (1 row) dimpact=# select totaalbedragaanslag from import.aanslag; totaalbedragaanslag - 33.33 (1 row) -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs
Re: [BUGS] BUG #4612: lc_numeric setting ignored
LC_NUMERIC only controls formatting functions, not raw input; from the manual entry on lc_numeric: Sets the locale to use for formatting numbers, for example with the to_char family of functions. Acceptable values are system-dependent; see for more information. If this variable is set to the empty string (which is the default) then the value is inherited from the execution environment of the server in a system-dependent way. --- Mark Hayen wrote: > > The following bug has been logged online: > > Bug reference: 4612 > Logged by: Mark Hayen > Email address: mark.ha...@atosorigin.com > PostgreSQL version: 8.3.5 > Operating system: Ubuntu 8.10 > Description:lc_numeric setting ignored > Details: > > When setting the LC_NUMERIC to nl_NL.UTF-8 systemvariable at both the OS > level and the database itself (postgresql.conf), the database refuses to > accept a decimal comma. > > psql output: > > dimpact=# show lc_numeric; > lc_numeric > - > nl_NL.UTF-8 > (1 row) > > dimpact=# select totaalbedragaanslag from import.aanslag; > totaalbedragaanslag > - >33.33 > (1 row) > > -- > Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) > To make changes to your subscription: > http://www.postgresql.org/mailpref/pgsql-bugs -- Bruce Momjian http://momjian.us EnterpriseDB http://enterprisedb.com + If your life is a hard drive, Christ can be your backup. + -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs